diff --git a/containers/server-bundle/prepare.sh b/containers/server-bundle/prepare.sh deleted file mode 100755 index 69da111301..0000000000 --- a/containers/server-bundle/prepare.sh +++ /dev/null @@ -1,42 +0,0 @@ -#!/bin/bash - -################################################################################ -# This program and the accompanying materials are made available under the terms of the -# Eclipse Public License v2.0 which accompanies this distribution, and is available at -# https://www.eclipse.org/legal/epl-v20.html -# -# SPDX-License-Identifier: EPL-2.0 -# -# Copyright Contributors to the Zowe Project. -################################################################################ - -################################################################################ -# prepare docker build context -# -# This script will be executed with 2 parameters: -# - linux-distro -# - cpu-arch - -############################### -# check parameters -linux_distro=$1 -cpu_arch=$2 -if [ -z "${linux_distro}" ]; then - echo "Error: linux-distro parameter is missing." - exit 1 -fi -if [ -z "${cpu_arch}" ]; then - echo "Error: cpu-arch parameter is missing." - exit 1 -fi - -############################### -# copy Dockerfile -mkdir -p "${linux_distro}/amd64" -mkdir -p "${linux_distro}/s390x" -cp "${linux_distro}/Dockerfile.nodejava.amd64" "${linux_distro}/amd64/Dockerfile" -cp "${linux_distro}/Dockerfile.nodejava.s390x" "${linux_distro}/s390x/Dockerfile" - -############################### -# done -echo ">>>>> all done" diff --git a/containers/server-bundle/ubuntu/.gitignore b/containers/server-bundle/ubuntu/.gitignore deleted file mode 100644 index 32778db4d5..0000000000 --- a/containers/server-bundle/ubuntu/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -utils -*.pax \ No newline at end of file diff --git a/containers/server-bundle/ubuntu/Dockerfile b/containers/server-bundle/ubuntu/Dockerfile deleted file mode 100644 index 656e346199..0000000000 --- a/containers/server-bundle/ubuntu/Dockerfile +++ /dev/null @@ -1,138 +0,0 @@ -FROM zowe-docker-release.jfrog.io/ompzowe/zowecicd-node-java:2.0.0 as builder - -# allow to customize which Zowe build to build from -# There are 3 possible values: -# 1. ZOWE_BUILD=: empty, which will try to find the local zowe.pax in same directory. The build has to be named as zowe.pax. -# 2. ZOWE_BUILD=latest: will download the most recent official release and use it as base build -# 3. ZOWE_BUILD=: will download Zowe build from this url and use it as base build -ARG ZOWE_BUILD= - -RUN apt-get update && apt-get install -y --no-install-recommends \ - ca-certificates curl wget \ - groff iproute2 moreutils pax && \ - rm -rf /var/lib/apt/lists/* - -EXPOSE 7553/tcp -EXPOSE 7554/tcp -EXPOSE 7556/tcp - -#ENV ZOWE_ZOSMF_HOST='zosmf.host.com' -#ENV ZOWE_ZSS_HOST='zss.host.com' -#ENV ZWED_agent_host='zwed.host.com' -ENV ZOWE_EXPLORER_HOST='localhost' -ENV ZOWE_IP_ADDRESS=0.0.0.0 - -ENV ZOWE_ZOSMF_PORT='443' -#ENV ZWES_SERVER_PORT='00000' - - -ENV LAUNCH_COMPONENT_GROUPS=DESKTOP,GATEWAY - -RUN mkdir /home/zowe/utils && \ - mkdir /home/zowe/samples -COPY utils/ /home/zowe/utils/ -COPY start.sh /home/zowe/samples/ -COPY NOTICE.txt LICENSE.txt /home/zowe/ - -RUN cd /home/zowe/utils/autoconv && \ - npm install && \ - npm run build && \ - rm -rf node_modules src samples *.js *.json .editorconfig *ignore *.md && \ - ln -s ./autoconv/bin/autoconv ../autoconv.sh - -# copy run.sh and optional zowe.pax -COPY run.sh run_inner.sh /home/zowe/ -COPY zowe.pax* /tmp - -# download zowe build if specified -RUN /home/zowe/utils/download-zowe-build.sh "${ZOWE_BUILD}" - -# 1. Convert content of pax files from ebcdic to ASCII -# 2. replace or remove some zos specific parameters -# 3. Install zowe, then remove installer files -RUN mv /home/zowe/run_inner.sh /home/zowe/.run_inner.sh && \ - mkdir -p /tmp/zowe-install && cd /tmp/zowe-install && \ - tar -xvf ../zowe.pax --strip 1 && \ - find . -type f -iregex '.*\.\(rexx\|js\|sh\|json\|jcl\|yaml\|clist\|env\)$' -exec sh -c "conv '{}' | sponge '{}'" \; && \ - find . -type f -name '*.sh' -exec sh -c "sed -i 's/-Xquickstart//' {}" \; && \ - find . -type f -name '*.sh' -exec sh -c "sed -i 's/-ppx/-pp/' {}" \; && \ - find . -type f -name '*.sh' -exec sh -c "sed -i 's/iconv -f IBM-1047 -t IBM-850/cat/' {}" \; && \ - find . -type f -name '*.sh' -exec sh -c "chmod +x {}" \; && \ - echo "exit 0" > scripts/opercmd && \ - sed -i 's/java version/openjdk version/' scripts/utils/validate-java.sh && \ - \ - \ - cd /tmp/zowe-install/files && \ - mv app-server-*.pax zlux && \ - for f in *.pax; do \ - echo "Processing ebcdic pax $f" && \ - cd /tmp/zowe-install/files &&\ - rm -rf tmp && \ - mkdir tmp && \ - cd tmp && \ - pax -rf ../$f && \ - rm ../$f && \ - find . -type f -iregex '.*\.\(rexx\|js\|sh\|json\|jcl\|yaml\|clist\|html\|template\|css\|svg\|map\|gz\|env\)$' -exec sh -c "conv '{}' | sponge '{}'" \; && \ - find . -type f -name '*.sh' -exec sh -c "sed -i 's/-Xquickstart//' {}" \; && \ - pax -wf ../$f . && \ - cd .. ; \ - done && \ - rm -f zss*.pax && \ - cd zlux && \ - for f in *.pax; do \ - echo "Processing tagged pax $f" &&\ - cd /tmp/zowe-install/files/zlux &&\ - rm -rf tmp &&\ - mkdir tmp &&\ - cd tmp &&\ - pax -rf ../$f &&\ - rm ../$f &&\ - find . -type f -iregex '.*\.\(sh\)$' -exec sh -c "conv '{}' | sponge '{}'" \; && \ - find . -type f -name '*.sh' -exec sh -c "sed -i 's/-Xquickstart//' {}" \; &&\ - find . -type f -name '*.sh' -exec sh -c "sed -i 's/-px //' {}" \; && \ - pax -wf ../$f . &&\ - cd .. ; \ - done && \ - mv app-server-*.pax .. && \ - \ - \ - /tmp/zowe-install/install/zowe-install.sh -i /home/zowe/install -l /home/zowe/logs && \ - bash -c "/home/zowe/install/bin/zowe-configure-instance.sh -c /home/zowe/instance" && \ - \ - \ - cd /home/zowe/install/components/explorer-ui-server && \ - rm -rf node_modules && \ - npm install --only=prod --ignore-scripts && \ - cd /home/zowe/install/components && \ - find */bin -type f -name '*.sh' -exec sh -c "sed -i 's/-Xquickstart//' {}" \; - -# Could be modified during runtime, back it up. -RUN cp /home/zowe/instance/instance.env /home/zowe/instance/instance.env.bkp \ - && cp /home/zowe/install/bin/zowe-setup-certificates.env /home/zowe/install/bin/zowe-setup-certificates.env.bkp - -FROM zowe-docker-release.jfrog.io/ompzowe/zowecicd-node-java:2.0.0 - -EXPOSE 7553/tcp -EXPOSE 7554/tcp -EXPOSE 7556/tcp - -#ENV ZOWE_ZOSMF_HOST='zosmf.host.com' -#ENV ZOWE_ZSS_HOST='zss.host.com' -#ENV ZWED_agent_host='zwed.host.com' -ENV ZOWE_EXPLORER_HOST='localhost' -ENV ZOWE_IP_ADDRESS=0.0.0.0 - -ENV ZOWE_ZOSMF_PORT='443' -#ENV ZWES_SERVER_PORT='00000' -ENV ZWED_agent_https_port='7557' - -# authorization needs to point to zss endpoint -ENV APIML_SECURITY_AUTHORIZATION_PROVIDER=endpoint -ENV APIML_SECURITY_AUTHORIZATION_ENDPOINT_ENABLED=true - -ENV LAUNCH_COMPONENT_GROUPS=DESKTOP,GATEWAY - -COPY --chown=zowe:zowe --from=builder /home/zowe /home/zowe -RUN chmod a+x /home/zowe/*.sh /home/zowe/.run_inner.sh - -ENTRYPOINT ["/home/zowe/run.sh"] diff --git a/containers/server-bundle/ubuntu/Dockerfile.nodejava.amd64 b/containers/server-bundle/ubuntu/Dockerfile.nodejava.amd64 deleted file mode 100644 index ac7ff0d4ab..0000000000 --- a/containers/server-bundle/ubuntu/Dockerfile.nodejava.amd64 +++ /dev/null @@ -1,104 +0,0 @@ -FROM openjdk:8-jdk-slim as builder - -################################## -# labels -LABEL name="Zowe Docker Distribution Base Image" \ - vendor="Zowe" \ - version="2.0.0" \ - release="0" \ - summary="Base image for Zowe docker distribution" \ - description="Base image for Zowe docker distribution" - -RUN apt-get update && apt-get install -y --no-install-recommends \ - ca-certificates curl wget \ - groff iproute2 moreutils pax && \ - apt-get dist-upgrade -y - -### -# node install code from loyaltyone/docker-slim-java-node -### - -RUN set -ex; \ - if ! command -v gpg > /dev/null; then \ - apt-get install -y --no-install-recommends gnupg dirmngr; \ - fi - -# gpg keys listed at https://github.com/nodejs/node#release-team -RUN set -ex \ - && \ - gpg --keyserver hkps://keys.openpgp.org --recv-keys 4ED778F539E3634C779C87C6D7062848A1AB005C && \ - gpg --keyserver hkps://keys.openpgp.org --recv-keys 141F07595B7B3FFE74309A937405533BE57C7D57 && \ - gpg --keyserver hkps://keys.openpgp.org --recv-keys 74F12602B6F1C4E913FAA37AD3A89613643B6201 && \ - gpg --keyserver hkps://keys.openpgp.org --recv-keys DD792F5973C6DE52C432CBDAC77ABFA00DDBF2B7 && \ - gpg --keyserver hkps://keys.openpgp.org --recv-keys 8FCCA13FEF1D0C2E91008E09770F7A9A5AE15600 && \ - gpg --keyserver hkps://keys.openpgp.org --recv-keys C4F0DFFF4E8C1A8236409D08E73BC641CC11F4C8 && \ - gpg --keyserver hkps://keys.openpgp.org --recv-keys 890C08DB8579162FEE0DF9DB8BEAB4DFCF555EF4 && \ - gpg --keyserver hkps://keys.openpgp.org --recv-keys C82FA3AE1CBEDC6BE46B9360C43CEC45C17AB93C && \ - gpg --keyserver hkps://keys.openpgp.org --recv-keys 108F52B48DB57BB0CC439B2997B01419BD92F80A - -ENV NODE_VERSION 16.18.1 - -RUN buildDeps='xz-utils' \ - && ARCH= && dpkgArch="$(dpkg --print-architecture)" \ - && case "${dpkgArch##*-}" in \ - amd64) ARCH='x64';; \ - ppc64el) ARCH='ppc64le';; \ - s390x) ARCH='s390x';; \ - arm64) ARCH='arm64';; \ - armhf) ARCH='armv7l';; \ - i386) ARCH='x86';; \ - *) echo "unsupported architecture"; exit 1 ;; \ - esac \ - && set -x \ - && apt-get install -y $buildDeps --no-install-recommends \ - && curl -SLO "https://nodejs.org/dist/v$NODE_VERSION/node-v$NODE_VERSION-linux-$ARCH.tar.xz" \ - && curl -SLO --compressed "https://nodejs.org/dist/v$NODE_VERSION/SHASUMS256.txt.asc" \ - && gpg --batch --decrypt --output SHASUMS256.txt SHASUMS256.txt.asc \ - && grep " node-v$NODE_VERSION-linux-$ARCH.tar.xz\$" SHASUMS256.txt | sha256sum -c - \ - && mkdir -p /usr/local/node \ - && tar -xJf "node-v$NODE_VERSION-linux-$ARCH.tar.xz" -C /usr/local/node --strip-components=1 --no-same-owner \ - && rm "node-v$NODE_VERSION-linux-$ARCH.tar.xz" SHASUMS256.txt.asc SHASUMS256.txt \ - && apt-get purge -y $buildDeps - -### -# End of NodeJS Setup -### - -FROM openjdk:8-jdk-slim - -# Updates and Cleanup - -RUN apt-get update && apt-get dist-upgrade -y - -COPY --from=builder /usr/local/node /usr/local/node - -RUN ln -s /usr/local/node/bin/node /usr/local/bin/node \ - && ln -s /usr/local/node/bin/node /usr/local/bin/nodejs \ - && ln -s /usr/local/node/lib/node_modules/npm/bin/npm-cli.js /usr/local/bin/npm \ - && ln -s /usr/local/node/lib/node_modules/npm/bin/npx-cli.js /usr/local/bin/npx - -RUN apt-get purge -y --auto-remove gnupg dirmngr wget && \ - rm -rf /var/lib/apt/lists/* && \ - apt-get clean - -# set bash as default shell -RUN mkdir -p /usr/share/man/man1/ && touch /usr/share/man/man1/sh.distrib.1.gz && \ - echo "dash dash/sh boolean false" | debconf-set-selections && \ - DEBIAN_FRONTEND=noninteractive dpkg-reconfigure dash - -RUN groupadd --gid 7556 zowe \ - && useradd --uid 7556 --gid zowe --shell /bin/bash --create-home zowe \ - && mkdir /root/zowe && chown zowe:zowe /root/zowe \ - && mkdir /global && chown zowe:zowe /global \ - && cd /home/zowe && \ - ( echo '#!/bin/sh'; echo 'tr '"'"'\000\001\002\003\004\005\006\007\010\011\012\013\014\015\016\017\020\021\022\023\024\025\026\027\030\031\032\033\034\035\036\037\040\041\042\043\044\045\046\047\050\051\052\053\054\055\056\057\060\061\062\063\064\065\066\067\070\071\072\073\074\075\076\077\100\101\102\103\104\105\106\107\110\111\112\113\114\115\116\117\120\121\122\123\124\125\126\127\130\131\132\133\134\135\136\137\140\141\142\143\144\145\146\147\150\151\152\153\154\155\156\157\160\161\162\163\164\165\166\167\170\171\172\173\174\175\176\177\200\201\202\203\204\205\206\207\210\211\212\213\214\215\216\217\220\221\222\223\224\225\226\227\230\231\232\233\234\235\236\237\240\241\242\243\244\245\246\247\250\251\252\253\254\255\256\257\260\261\262\263\264\265\266\267\270\271\272\273\274\275\276\277\300\301\302\303\304\305\306\307\310\311\312\313\314\315\316\317\320\321\322\323\324\325\326\327\330\331\332\333\334\335\336\337\340\341\342\343\344\345\346\347\350\351\352\353\354\355\356\357\360\361\362\363\364\365\366\367\370\371\372\373\374\375\376\377'"'"' '"'"'\000\001\002\003\234\011\206\177\227\215\216\013\014\015\016\017\020\021\022\023\235\012\010\207\030\031\222\217\034\035\036\037\200\201\202\203\204\205\027\033\210\211\212\213\214\005\006\007\220\221\026\223\224\225\226\004\230\231\232\233\024\025\236\032\040\240\342\344\340\341\343\345\347\361\242\056\074\050\053\174\046\351\352\353\350\355\356\357\354\337\041\044\052\051\073\136\055\057\302\304\300\301\303\305\307\321\246\054\045\137\076\077\370\311\312\313\310\315\316\317\314\140\072\043\100\047\075\042\330\141\142\143\144\145\146\147\150\151\253\273\360\375\376\261\260\152\153\154\155\156\157\160\161\162\252\272\346\270\306\244\265\176\163\164\165\166\167\170\171\172\241\277\320\133\336\256\254\243\245\267\251\247\266\274\275\276\335\250\257\135\264\327\173\101\102\103\104\105\106\107\110\111\255\364\366\362\363\365\175\112\113\114\115\116\117\120\121\122\271\373\374\371\372\377\134\367\123\124\125\126\127\130\131\132\262\324\326\322\323\325\060\061\062\063\064\065\066\067\070\071\263\333\334\331\332\237'"'"' <$1' ) >conv && chmod +x conv && ln -s $(pwd)/conv /bin/conv && \ - rm -rf zowe && \ - echo "exit 0" > /bin/extattr && chmod +x /bin/extattr && \ - echo "exit 0" > /bin/ping && chmod +x /bin/ping && \ - echo "exit 0" > /bin/oping && chmod +x /bin/oping && \ - echo "exit 0" > /bin/onetstat && chmod +x /bin/onetstat && \ - echo "exit 0" > /bin/chtag && chmod +x /bin/chtag && \ - echo 'cat $5' > /bin/iconv && chmod +x /bin/iconv && \ - mv /usr/bin/iconv /usr/bin/iconv_ - -ENV NODE_HOME='/usr/local/node' diff --git a/containers/server-bundle/ubuntu/Dockerfile.nodejava.s390x b/containers/server-bundle/ubuntu/Dockerfile.nodejava.s390x deleted file mode 100644 index f7c223f4ca..0000000000 --- a/containers/server-bundle/ubuntu/Dockerfile.nodejava.s390x +++ /dev/null @@ -1,120 +0,0 @@ -FROM s390x/debian:stretch as builder -#FROM s390x/ibmjava:sdk as builder - -################################## -# labels -LABEL name="Zowe Docker Distribution Base Image" \ - vendor="Zowe" \ - version="2.0.0" \ - release="0" \ - summary="Base image for Zowe docker distribution" \ - description="Base image for Zowe docker distribution" - - -### -# node install code from loyaltyone/docker-slim-java-node -### - -# Update stretch repositories -RUN sed -i -e 's/deb.debian.org/archive.debian.org/g' \ - -e 's|security.debian.org|archive.debian.org/|g' \ - -e '/stretch-updates/d' /etc/apt/sources.list - -RUN apt-get update && apt-get install -y --no-install-recommends \ - ca-certificates curl wget \ - groff iproute2 moreutils pax - - -RUN set -ex; \ - if ! command -v gpg > /dev/null; then \ - apt-get install -y --no-install-recommends gnupg dirmngr; \ - fi - -# gpg keys listed at https://github.com/nodejs/node#release-team -RUN set -ex \ - && \ - gpg --keyserver hkps://keys.openpgp.org --recv-keys 4ED778F539E3634C779C87C6D7062848A1AB005C && \ - gpg --keyserver hkps://keys.openpgp.org --recv-keys 141F07595B7B3FFE74309A937405533BE57C7D57 && \ - gpg --keyserver hkps://keys.openpgp.org --recv-keys 74F12602B6F1C4E913FAA37AD3A89613643B6201 && \ - gpg --keyserver hkps://keys.openpgp.org --recv-keys DD792F5973C6DE52C432CBDAC77ABFA00DDBF2B7 && \ - gpg --keyserver hkps://keys.openpgp.org --recv-keys 8FCCA13FEF1D0C2E91008E09770F7A9A5AE15600 && \ - gpg --keyserver hkps://keys.openpgp.org --recv-keys C4F0DFFF4E8C1A8236409D08E73BC641CC11F4C8 && \ - gpg --keyserver hkps://keys.openpgp.org --recv-keys 890C08DB8579162FEE0DF9DB8BEAB4DFCF555EF4 && \ - gpg --keyserver hkps://keys.openpgp.org --recv-keys C82FA3AE1CBEDC6BE46B9360C43CEC45C17AB93C && \ - gpg --keyserver hkps://keys.openpgp.org --recv-keys 108F52B48DB57BB0CC439B2997B01419BD92F80A - -ENV NODE_VERSION 16.18.1 - -RUN buildDeps='xz-utils' \ - && ARCH= && dpkgArch="$(dpkg --print-architecture)" \ - && case "${dpkgArch##*-}" in \ - amd64) ARCH='x64';; \ - ppc64el) ARCH='ppc64le';; \ - s390x) ARCH='s390x';; \ - arm64) ARCH='arm64';; \ - armhf) ARCH='armv7l';; \ - i386) ARCH='x86';; \ - *) echo "unsupported architecture"; exit 1 ;; \ - esac \ - && set -x \ - && apt-get install -y $buildDeps --no-install-recommends \ - && curl -SLO "https://nodejs.org/dist/v$NODE_VERSION/node-v$NODE_VERSION-linux-$ARCH.tar.xz" \ - && curl -SLO --compressed "https://nodejs.org/dist/v$NODE_VERSION/SHASUMS256.txt.asc" \ - && gpg --batch --decrypt --output SHASUMS256.txt SHASUMS256.txt.asc \ - && grep " node-v$NODE_VERSION-linux-$ARCH.tar.xz\$" SHASUMS256.txt | sha256sum -c - \ - && mkdir -p /usr/local/node \ - && tar -xJf "node-v$NODE_VERSION-linux-$ARCH.tar.xz" -C /usr/local/node --strip-components=1 --no-same-owner \ - && rm "node-v$NODE_VERSION-linux-$ARCH.tar.xz" SHASUMS256.txt.asc SHASUMS256.txt \ - && apt-get purge -y $buildDeps - -### -# End of NodeJS Setup -### - -FROM s390x/debian:stretch -#FROM s390x/ibmjava:sdk - -# Update stretch repositories -RUN sed -i -e 's/deb.debian.org/archive.debian.org/g' \ - -e 's|security.debian.org|archive.debian.org/|g' \ - -e '/stretch-updates/d' /etc/apt/sources.list - -# Updates and Cleanup - -RUN apt-get update && apt-get install -y --no-install-recommends \ - openjdk-8-jdk-headless && \ - apt-get dist-upgrade -y - -COPY --from=builder /usr/local/node /usr/local/node - -RUN ln -s /usr/local/node/bin/node /usr/local/bin/node \ - && ln -s /usr/local/node/bin/node /usr/local/bin/nodejs \ - && ln -s /usr/local/node/lib/node_modules/npm/bin/npm-cli.js /usr/local/bin/npm \ - && ln -s /usr/local/node/lib/node_modules/npm/bin/npx-cli.js /usr/local/bin/npx - -RUN apt-get purge -y --auto-remove gnupg dirmngr wget && \ - rm -rf /var/lib/apt/lists/* && \ - apt-get clean - -# set bash as default shell -RUN mkdir -p /usr/share/man/man1/ && touch /usr/share/man/man1/sh.distrib.1.gz && \ - echo "dash dash/sh boolean false" | debconf-set-selections && \ - DEBIAN_FRONTEND=noninteractive dpkg-reconfigure dash - -RUN groupadd --gid 7556 zowe \ - && useradd --uid 7556 --gid zowe --shell /bin/bash --create-home zowe \ - && mkdir /root/zowe && chown zowe:zowe /root/zowe \ - && mkdir /global && chown zowe:zowe /global \ - && cd /home/zowe && \ - ( echo '#!/bin/sh'; echo 'tr '"'"'\000\001\002\003\004\005\006\007\010\011\012\013\014\015\016\017\020\021\022\023\024\025\026\027\030\031\032\033\034\035\036\037\040\041\042\043\044\045\046\047\050\051\052\053\054\055\056\057\060\061\062\063\064\065\066\067\070\071\072\073\074\075\076\077\100\101\102\103\104\105\106\107\110\111\112\113\114\115\116\117\120\121\122\123\124\125\126\127\130\131\132\133\134\135\136\137\140\141\142\143\144\145\146\147\150\151\152\153\154\155\156\157\160\161\162\163\164\165\166\167\170\171\172\173\174\175\176\177\200\201\202\203\204\205\206\207\210\211\212\213\214\215\216\217\220\221\222\223\224\225\226\227\230\231\232\233\234\235\236\237\240\241\242\243\244\245\246\247\250\251\252\253\254\255\256\257\260\261\262\263\264\265\266\267\270\271\272\273\274\275\276\277\300\301\302\303\304\305\306\307\310\311\312\313\314\315\316\317\320\321\322\323\324\325\326\327\330\331\332\333\334\335\336\337\340\341\342\343\344\345\346\347\350\351\352\353\354\355\356\357\360\361\362\363\364\365\366\367\370\371\372\373\374\375\376\377'"'"' '"'"'\000\001\002\003\234\011\206\177\227\215\216\013\014\015\016\017\020\021\022\023\235\012\010\207\030\031\222\217\034\035\036\037\200\201\202\203\204\205\027\033\210\211\212\213\214\005\006\007\220\221\026\223\224\225\226\004\230\231\232\233\024\025\236\032\040\240\342\344\340\341\343\345\347\361\242\056\074\050\053\174\046\351\352\353\350\355\356\357\354\337\041\044\052\051\073\136\055\057\302\304\300\301\303\305\307\321\246\054\045\137\076\077\370\311\312\313\310\315\316\317\314\140\072\043\100\047\075\042\330\141\142\143\144\145\146\147\150\151\253\273\360\375\376\261\260\152\153\154\155\156\157\160\161\162\252\272\346\270\306\244\265\176\163\164\165\166\167\170\171\172\241\277\320\133\336\256\254\243\245\267\251\247\266\274\275\276\335\250\257\135\264\327\173\101\102\103\104\105\106\107\110\111\255\364\366\362\363\365\175\112\113\114\115\116\117\120\121\122\271\373\374\371\372\377\134\367\123\124\125\126\127\130\131\132\262\324\326\322\323\325\060\061\062\063\064\065\066\067\070\071\263\333\334\331\332\237'"'"' <$1' ) >conv && chmod +x conv && ln -s $(pwd)/conv /bin/conv && \ - rm -rf zowe && \ - echo "exit 0" > /bin/extattr && chmod +x /bin/extattr && \ - echo "exit 0" > /bin/ping && chmod +x /bin/ping && \ - echo "exit 0" > /bin/oping && chmod +x /bin/oping && \ - echo "exit 0" > /bin/onetstat && chmod +x /bin/onetstat && \ - echo "exit 0" > /bin/chtag && chmod +x /bin/chtag && \ - echo 'cat $5' > /bin/iconv && chmod +x /bin/iconv && \ - mv /usr/bin/iconv /usr/bin/iconv_ - -ENV NODE_HOME='/usr/local/node' -ENV JAVA_HOME='/usr/lib/jvm/java-8-openjdk-s390x' diff --git a/containers/server-bundle/ubuntu/Dockerfile.sources b/containers/server-bundle/ubuntu/Dockerfile.sources deleted file mode 100644 index 3eb9b143e8..0000000000 --- a/containers/server-bundle/ubuntu/Dockerfile.sources +++ /dev/null @@ -1,19 +0,0 @@ -ARG BUILD_PLATFORM -FROM ompzowe/server-bundle:${BUILD_PLATFORM} - -ENV NODE_VERSION 16.18.1 - -RUN mkdir -p /root/sources/utils && \ - cd /root/sources && \ - apt-get update && apt-get install -y wget --no-install-recommends && \ - wget https://nodejs.org/dist/v${NODE_VERSION}/node-v${NODE_VERSION}.tar.xz - -COPY utils/get-deb-sources.sh /root/sources/utils - -RUN cd /root/sources/utils && \ - chmod +x get-deb-sources.sh && \ - ./get-deb-sources.sh - - - - diff --git a/containers/server-bundle/ubuntu/LICENSE.txt b/containers/server-bundle/ubuntu/LICENSE.txt deleted file mode 100644 index d3087e4c54..0000000000 --- a/containers/server-bundle/ubuntu/LICENSE.txt +++ /dev/null @@ -1,277 +0,0 @@ -Eclipse Public License - v 2.0 - - THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE - PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION - OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT. - -1. DEFINITIONS - -"Contribution" means: - - a) in the case of the initial Contributor, the initial content - Distributed under this Agreement, and - - b) in the case of each subsequent Contributor: - i) changes to the Program, and - ii) additions to the Program; - where such changes and/or additions to the Program originate from - and are Distributed by that particular Contributor. A Contribution - "originates" from a Contributor if it was added to the Program by - such Contributor itself or anyone acting on such Contributor's behalf. - Contributions do not include changes or additions to the Program that - are not Modified Works. - -"Contributor" means any person or entity that Distributes the Program. - -"Licensed Patents" mean patent claims licensable by a Contributor which -are necessarily infringed by the use or sale of its Contribution alone -or when combined with the Program. - -"Program" means the Contributions Distributed in accordance with this -Agreement. - -"Recipient" means anyone who receives the Program under this Agreement -or any Secondary License (as applicable), including Contributors. - -"Derivative Works" shall mean any work, whether in Source Code or other -form, that is based on (or derived from) the Program and for which the -editorial revisions, annotations, elaborations, or other modifications -represent, as a whole, an original work of authorship. - -"Modified Works" shall mean any work in Source Code or other form that -results from an addition to, deletion from, or modification of the -contents of the Program, including, for purposes of clarity any new file -in Source Code form that contains any contents of the Program. Modified -Works shall not include works that contain only declarations, -interfaces, types, classes, structures, or files of the Program solely -in each case in order to link to, bind by name, or subclass the Program -or Modified Works thereof. - -"Distribute" means the acts of a) distributing or b) making available -in any manner that enables the transfer of a copy. - -"Source Code" means the form of a Program preferred for making -modifications, including but not limited to software source code, -documentation source, and configuration files. - -"Secondary License" means either the GNU General Public License, -Version 2.0, or any later versions of that license, including any -exceptions or additional permissions as identified by the initial -Contributor. - -2. GRANT OF RIGHTS - - a) Subject to the terms of this Agreement, each Contributor hereby - grants Recipient a non-exclusive, worldwide, royalty-free copyright - license to reproduce, prepare Derivative Works of, publicly display, - publicly perform, Distribute and sublicense the Contribution of such - Contributor, if any, and such Derivative Works. - - b) Subject to the terms of this Agreement, each Contributor hereby - grants Recipient a non-exclusive, worldwide, royalty-free patent - license under Licensed Patents to make, use, sell, offer to sell, - import and otherwise transfer the Contribution of such Contributor, - if any, in Source Code or other form. This patent license shall - apply to the combination of the Contribution and the Program if, at - the time the Contribution is added by the Contributor, such addition - of the Contribution causes such combination to be covered by the - Licensed Patents. The patent license shall not apply to any other - combinations which include the Contribution. No hardware per se is - licensed hereunder. - - c) Recipient understands that although each Contributor grants the - licenses to its Contributions set forth herein, no assurances are - provided by any Contributor that the Program does not infringe the - patent or other intellectual property rights of any other entity. - Each Contributor disclaims any liability to Recipient for claims - brought by any other entity based on infringement of intellectual - property rights or otherwise. As a condition to exercising the - rights and licenses granted hereunder, each Recipient hereby - assumes sole responsibility to secure any other intellectual - property rights needed, if any. For example, if a third party - patent license is required to allow Recipient to Distribute the - Program, it is Recipient's responsibility to acquire that license - before distributing the Program. - - d) Each Contributor represents that to its knowledge it has - sufficient copyright rights in its Contribution, if any, to grant - the copyright license set forth in this Agreement. - - e) Notwithstanding the terms of any Secondary License, no - Contributor makes additional grants to any Recipient (other than - those set forth in this Agreement) as a result of such Recipient's - receipt of the Program under the terms of a Secondary License - (if permitted under the terms of Section 3). - -3. REQUIREMENTS - -3.1 If a Contributor Distributes the Program in any form, then: - - a) the Program must also be made available as Source Code, in - accordance with section 3.2, and the Contributor must accompany - the Program with a statement that the Source Code for the Program - is available under this Agreement, and informs Recipients how to - obtain it in a reasonable manner on or through a medium customarily - used for software exchange; and - - b) the Contributor may Distribute the Program under a license - different than this Agreement, provided that such license: - i) effectively disclaims on behalf of all other Contributors all - warranties and conditions, express and implied, including - warranties or conditions of title and non-infringement, and - implied warranties or conditions of merchantability and fitness - for a particular purpose; - - ii) effectively excludes on behalf of all other Contributors all - liability for damages, including direct, indirect, special, - incidental and consequential damages, such as lost profits; - - iii) does not attempt to limit or alter the recipients' rights - in the Source Code under section 3.2; and - - iv) requires any subsequent distribution of the Program by any - party to be under a license that satisfies the requirements - of this section 3. - -3.2 When the Program is Distributed as Source Code: - - a) it must be made available under this Agreement, or if the - Program (i) is combined with other material in a separate file or - files made available under a Secondary License, and (ii) the initial - Contributor attached to the Source Code the notice described in - Exhibit A of this Agreement, then the Program may be made available - under the terms of such Secondary Licenses, and - - b) a copy of this Agreement must be included with each copy of - the Program. - -3.3 Contributors may not remove or alter any copyright, patent, -trademark, attribution notices, disclaimers of warranty, or limitations -of liability ("notices") contained within the Program from any copy of -the Program which they Distribute, provided that Contributors may add -their own appropriate notices. - -4. COMMERCIAL DISTRIBUTION - -Commercial distributors of software may accept certain responsibilities -with respect to end users, business partners and the like. While this -license is intended to facilitate the commercial use of the Program, -the Contributor who includes the Program in a commercial product -offering should do so in a manner which does not create potential -liability for other Contributors. Therefore, if a Contributor includes -the Program in a commercial product offering, such Contributor -("Commercial Contributor") hereby agrees to defend and indemnify every -other Contributor ("Indemnified Contributor") against any losses, -damages and costs (collectively "Losses") arising from claims, lawsuits -and other legal actions brought by a third party against the Indemnified -Contributor to the extent caused by the acts or omissions of such -Commercial Contributor in connection with its distribution of the Program -in a commercial product offering. The obligations in this section do not -apply to any claims or Losses relating to any actual or alleged -intellectual property infringement. In order to qualify, an Indemnified -Contributor must: a) promptly notify the Commercial Contributor in -writing of such claim, and b) allow the Commercial Contributor to control, -and cooperate with the Commercial Contributor in, the defense and any -related settlement negotiations. The Indemnified Contributor may -participate in any such claim at its own expense. - -For example, a Contributor might include the Program in a commercial -product offering, Product X. That Contributor is then a Commercial -Contributor. If that Commercial Contributor then makes performance -claims, or offers warranties related to Product X, those performance -claims and warranties are such Commercial Contributor's responsibility -alone. Under this section, the Commercial Contributor would have to -defend claims against the other Contributors related to those performance -claims and warranties, and if a court requires any other Contributor to -pay any damages as a result, the Commercial Contributor must pay -those damages. - -5. NO WARRANTY - -EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, AND TO THE EXTENT -PERMITTED BY APPLICABLE LAW, THE PROGRAM IS PROVIDED ON AN "AS IS" -BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR -IMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS OF -TITLE, NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR -PURPOSE. Each Recipient is solely responsible for determining the -appropriateness of using and distributing the Program and assumes all -risks associated with its exercise of rights under this Agreement, -including but not limited to the risks and costs of program errors, -compliance with applicable laws, damage to or loss of data, programs -or equipment, and unavailability or interruption of operations. - -6. DISCLAIMER OF LIABILITY - -EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, AND TO THE EXTENT -PERMITTED BY APPLICABLE LAW, NEITHER RECIPIENT NOR ANY CONTRIBUTORS -SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, -EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION LOST -PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OR DISTRIBUTION OF THE PROGRAM OR THE -EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGES. - -7. GENERAL - -If any provision of this Agreement is invalid or unenforceable under -applicable law, it shall not affect the validity or enforceability of -the remainder of the terms of this Agreement, and without further -action by the parties hereto, such provision shall be reformed to the -minimum extent necessary to make such provision valid and enforceable. - -If Recipient institutes patent litigation against any entity -(including a cross-claim or counterclaim in a lawsuit) alleging that the -Program itself (excluding combinations of the Program with other software -or hardware) infringes such Recipient's patent(s), then such Recipient's -rights granted under Section 2(b) shall terminate as of the date such -litigation is filed. - -All Recipient's rights under this Agreement shall terminate if it -fails to comply with any of the material terms or conditions of this -Agreement and does not cure such failure in a reasonable period of -time after becoming aware of such noncompliance. If all Recipient's -rights under this Agreement terminate, Recipient agrees to cease use -and distribution of the Program as soon as reasonably practicable. -However, Recipient's obligations under this Agreement and any licenses -granted by Recipient relating to the Program shall continue and survive. - -Everyone is permitted to copy and distribute copies of this Agreement, -but in order to avoid inconsistency the Agreement is copyrighted and -may only be modified in the following manner. The Agreement Steward -reserves the right to publish new versions (including revisions) of -this Agreement from time to time. No one other than the Agreement -Steward has the right to modify this Agreement. The Eclipse Foundation -is the initial Agreement Steward. The Eclipse Foundation may assign the -responsibility to serve as the Agreement Steward to a suitable separate -entity. Each new version of the Agreement will be given a distinguishing -version number. The Program (including Contributions) may always be -Distributed subject to the version of the Agreement under which it was -received. In addition, after a new version of the Agreement is published, -Contributor may elect to Distribute the Program (including its -Contributions) under the new version. - -Except as expressly stated in Sections 2(a) and 2(b) above, Recipient -receives no rights or licenses to the intellectual property of any -Contributor under this Agreement, whether expressly, by implication, -estoppel or otherwise. All rights in the Program not expressly granted -under this Agreement are reserved. Nothing in this Agreement is intended -to be enforceable by any entity that is not a Contributor or Recipient. -No third-party beneficiary rights are created under this Agreement. - -Exhibit A - Form of Secondary Licenses Notice - -"This Source Code may also be made available under the following -Secondary Licenses when the conditions for such availability set forth -in the Eclipse Public License, v. 2.0 are satisfied: {name license(s), -version(s), and exceptions or additional permissions here}." - - Simply including a copy of this Agreement, including this Exhibit A - is not sufficient to license the Source Code under Secondary Licenses. - - If it is not possible or desirable to put the notice in a particular - file, then You may include the notice in a location (such as a LICENSE - file in a relevant directory) where a recipient would be likely to - look for such a notice. - - You may add additional accurate notices of copyright ownership. diff --git a/containers/server-bundle/ubuntu/NOTICE.txt b/containers/server-bundle/ubuntu/NOTICE.txt deleted file mode 100644 index e01d846536..0000000000 --- a/containers/server-bundle/ubuntu/NOTICE.txt +++ /dev/null @@ -1,48406 +0,0 @@ -ATTRIBUTIONS - -The following software is either included in the docker image or was used in making the docker image. Each piece of software is listed by name, version, website if known, and associated copyright text. - - ----------------------------------------- -adduser version 3.118 - - -Copyright: -This package was first put together by Ian Murdock - and was maintained by Steve Phillips - from sources written for the Debian Project by Ian -Murdock, Ted Hajek , and Sven Rudolph -. - -Since Nov 27 1996, it was maintained by Guy Maor . He -rewrote most of it. - -Since May 20 2000, it is maintained by Roland Bauerschmidt -. - -Since March 24 2004, it is maintained by Roland Bauerschmidt -, and co-maintained by Marc Haber - - -Since 23 Oct 2005, it has been maintained by Joerg Hoh - -Since June 2006, it has been maintained by Stephen Gran - -deluser is Copyright (C) 2000 Roland Bauerschmidt -and based on the source code of adduser. - -adduser is Copyright (C) 1997, 1998, 1999 Guy Maor . -adduser is Copyright (C) 1995 Ted Hajek -with portions Copyright (C) 1994 Debian Association, Inc. - -The examples directory has been contributed by John Zaitseff, and is -GPL V2 as well. - - 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. - - 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. - - 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 St, Fifth Floor, Boston, MA 02110-1301, USA. - -On Debian GNU/Linux systems, the complete text of the GNU General -Public License can be found in `/usr/share/common-licenses/GPL-2'. - - ----------------------------------------- -apt version 1.8.2.1 - - -Copyright: - -Apt is copyright 1997, 1998, 1999 Jason Gunthorpe and others. -Apt is currently developed by APT Development Team . - -License: GPLv2+ - - 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. - - 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. - - 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 St, Fifth Floor, Boston, MA 02110-1301, USA. - -See /usr/share/common-licenses/GPL-2, or - for the terms of the latest version -of the GNU General Public License. - - ----------------------------------------- -base-files version 10.3+deb10u5 - - -Copyright: - -This is the Debian GNU/Linux prepackaged version of the Debian Base System -Miscellaneous files. These files were written by Ian Murdock - and Bruce Perens . - -This package was first put together by Bruce Perens , -from his own sources. - -The GNU Public Licenses in /usr/share/common-licenses were taken from -ftp.gnu.org and are copyrighted by the Free Software Foundation, Inc. - -The Artistic License in /usr/share/common-licenses is the one coming -from Perl and its SPDX name is "Artistic License 1.0 (Perl)". - - -Copyright (C) 1995-2011 Software in the Public Interest. - -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. - -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. - -On Debian GNU/Linux systems, the complete text of the GNU General -Public License can be found in `/usr/share/common-licenses/GPL'. - - ----------------------------------------- -base-passwd version 3.5.46 - - -Copyright: - -Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ -Name: base-passwd -Maintainer: Colin Watson - -Files: update-passwd.c, man/* -Copyright: Copyright 1999-2002 Wichert Akkerman - Copyright 2002, 2003, 2004 Colin Watson -License: GPL-2 - -Files: passwd.master, group.master -License: PD -X-Notes: Originally written by Ian Murdock and - Bruce Perens . - -Files: doc/* -Copyright: Copyright 2001, 2002 Joey Hess - Copyright 2002, 2003, 2004, 2005, 2007 Colin Watson - Copyright 2007 David Mandelberg -License: GPL-2 - -License: GPL-2 - On Debian and Debian-based systems, a copy of the GNU General Public - License version 2 is available in /usr/share/common-licenses/GPL-2. - - ----------------------------------------- -bash version 5.0-4 - - -Copyright: - -This is Debian GNU/Linux's prepackaged version of the FSF's GNU Bash, -the Bourne Again SHell. - -This package was put together by Matthias Klose , from -the following sources: - - bash: ftp.gnu.org:/pub/gnu/bash/bash-4.3.tar.gz - -Bash homepage: http://tiswww.case.edu/php/chet/bash/bashtop.html - -Copyright (C) 1987-2014 Free Software Foundation, Inc. - -Bash 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 3, or (at your option) any later -version. - -Bash 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. - -You should have received a copy of the GNU General Public License -along with Bash. If not, see . -On Debian systems, the complete text of the GNU General Public License -can be found in `/usr/share/common-licenses/GPL-3'. - -The Free Software Foundation has exempted Bash from the requirement of -Paragraph 2c of the General Public License. This is to say, there is -no requirement for Bash to print a notice when it is started -interactively in the usual way. We made this exception because users -and standards expect shells not to print such messages. This -exception applies to any program that serves as a shell and that is -based primarily on Bash as opposed to other GNU software. - - -Files with other copyright statement than: Copyright FSF, License GPL ---------------------------------------------------------------------- - -doc/FAQ ("the Bash FAQ") - - This document is Copyright 1995-2005 by Chester Ramey. - - Permission is hereby granted, without written agreement and - without license or royalty fees, to use, copy, and distribute - this document for any purpose, provided that the above copyright - notice appears in all copies of this document and that the - contents of this document remain unaltered. - - -doc/bashref.texi ("Bash Reference Manual"): - - Copyright (c) 1988-2014 Free Software Foundation, Inc. - - Permission is granted to make and distribute verbatim copies of - this manual provided the copyright notice and this permission notice - are preserved on all copies. - - Permission is granted to copy, distribute and/or modify this document - under the terms of the GNU Free Documentation License, Version 1.3 or - any later version published by the Free Software Foundation; with no - Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. - A copy of the license is included in the section entitled - ``GNU Free Documentation License''. - - -lib/readline/doc/rlman.texi (part of the GNU Readline Library manual) - - Copyright (c) 1988-2014 Free Software Foundation, Inc. - - Permission is granted to copy, distribute and/or modify this document - under the terms of the GNU Free Documentation License, Version 1.3 or - any later version published by the Free Software Foundation; with no - Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. - A copy of the license is included in the section entitled - ``GNU Free Documentation License''. - -lib/readline/doc/rltech.texi (part of the GNU Readline Library manual) - - Copyright (C) 1988-2014 Free Software Foundation, Inc. - - Permission is granted to make and distribute verbatim copies of - this manual provided the copyright notice and this permission notice - pare preserved on all copies. - - Permission is granted to process this file through TeX and print the - results, provided the printed document carries copying permission - notice identical to this one except for the removal of this paragraph - (this paragraph not being relevant to the printed manual). - - Permission is granted to copy and distribute modified versions of this - manual under the conditions for verbatim copying, provided that the entire - resulting derived work is distributed under the terms of a permission - notice identical to this one. - - Permission is granted to copy and distribute translations of this manual - into another language, under the above conditions for modified versions, - except that this permission notice may be stated in a translation approved - by the Foundation. - - -lib/readline/doc/rluser.texi (part of the GNU Readline Library manual) - - Copyright (C) 1988-2014 Free Software Foundation, Inc. - - Authored by Brian Fox and Chet Ramey. - - Permission is granted to process this file through Tex and print the - results, provided the printed document carries copying permission notice - identical to this one except for the removal of this paragraph (this - paragraph not being relevant to the printed manual). - - Permission is granted to make and distribute verbatim copies of this manual - provided the copyright notice and this permission notice are preserved on - all copies. - - Permission is granted to copy and distribute modified versions of this - manual under the conditions for verbatim copying, provided also that the - GNU Copyright statement is available to the distributee, and provided that - the entire resulting derived work is distributed under the terms of a - permission notice identical to this one. - - Permission is granted to copy and distribute translations of this manual - into another language, under the above conditions for modified versions. - - -readline/doc/history.texi (GNU History Library Manual) - - Copyright (C) 1988-2014 Free Software Foundation, Inc. - Authored by Brian Fox and Chet Ramey. - - Permission is granted to copy, distribute and/or modify this document - under the terms of the GNU Free Documentation License, Version 1.3 or - any later version published by the Free Software Foundation; with no - Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. - A copy of the license is included in the section entitled - ``GNU Free Documentation License''. - -readline/doc/{hstech,hsuser}.texi (GNU History Library Manual) - - Copyright (C) 1988-2014 Free Software Foundation, Inc. - Authored by Brian Fox and Chet Ramey. - - Permission is granted to make and distribute verbatim copies of this manual - provided the copyright notice and this permission notice are preserved on - all copies. - - Permission is granted to process this file through Tex and print the - results, provided the printed document carries copying permission notice - identical to this one except for the removal of this paragraph (this - paragraph not being relevant to the printed manual). - - Permission is granted to copy and distribute modified versions of this - manual under the conditions for verbatim copying, provided also that the - GNU Copyright statement is available to the distributee, and provided that - the entire resulting derived work is distributed under the terms of a - permission notice identical to this one. - - Permission is granted to copy and distribute translations of this manual - into another language, under the above conditions for modified versions. - - -lib/sh/inet_aton.c: - - * Copyright (c) 1983, 1990, 1993 - * The Regents of the University of California. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. All advertising materials mentioning features or use of this software - * must display the following acknowledgement: - * This product includes software developed by the University of - * California, Berkeley and its contributors. - * 4. Neither the name of the University nor the names of its contributors - * may be used to endorse or promote products derived from this software - * without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - * - - * Portions Copyright (c) 1993 by Digital Equipment Corporation. - * - * Permission to use, copy, modify, and distribute this software for any - * purpose with or without fee is hereby granted, provided that the above - * copyright notice and this permission notice appear in all copies, and that - * the name of Digital Equipment Corporation not be used in advertising or - * publicity pertaining to distribution of the document or software without - * specific, written prior permission. - * - * THE SOFTWARE IS PROVIDED "AS IS" AND DIGITAL EQUIPMENT CORP. DISCLAIMS ALL - * WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES - * OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL DIGITAL EQUIPMENT - * CORPORATION BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL - * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR - * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS - * ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS - * SOFTWARE. - - -support/man2html.c - - * This program was written by Richard Verhoeven (NL:5482ZX35) - * at the Eindhoven University of Technology. Email: rcb5@win.tue.nl - * - * Permission is granted to distribute, modify and use this program as long - * as this comment is not removed or changed. - * - * THIS IS A MODIFIED VERSION. IT WAS MODIFIED BY chet@po.cwru.edu FOR - * USE BY BASH. - - ----------------------------------------- -bsdutils version 1:2.33.1-0.1 - - -Copyright: - -Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ -Upstream-Name: util-linux -Upstream-Contact: util-linux@vger.kernel.org -Source: https://www.kernel.org/pub/linux/utils/util-linux/ - -Files: * -Copyright: Michal Luscon - 1986 Gary S. Brown - 1990 Gordon Irlam (gordoni@cs.ua.oz.au) - 1991, 1992 Linus Torvalds - 1991-2004 Miquel van Smoorenburg - 1992 A. V. Le Blanc (LeBlanc@mcc.ac.uk) - 1992-1997 Michael K. Johnson, johnsonm@redhat.com - 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, - 2003, 2004, 2005, 2008 Theodore Ts'o - 1994 Kevin E. Martin (martin@cs.unc.edu) - 1994 Salvatore Valente - 1994,1996 Alessandro Rubini (rubini@ipvvis.unipv.it) - 1994-2005 Jeff Tranter (tranter@pobox.com) - 1995, 1999, 2000 Andries E. Brouwer - 1997-2005 Frodo Looijaard - 1998 Danek Duvall - 1999 Andreas Dilger - 1999-2002 Transmeta Corporation - 1999, 2000, 2002-2009, 2010, 2011, 2012, 2014 Red Hat, Inc. - 2000 Werner Almesberger - 2004-2006 Michael Holzt, kju -at- fqdn.org - 2005 Adrian Bunk - 2007-2014 Karel Zak - 2007, 2011 SuSE LINUX Products GmbH - 2008 Cai Qian - 2008 Hayden A. James (hayden.james@gmail.com) - 2008 James Youngman - 2008 Roy Peled, the.roy.peled -at- gmail.com - 2009 Mikhail Gusarov - 2010, 2011, 2012 Davidlohr Bueso - 2010 Jason Borden A - 2010 Hajime Taira - 2010 Masatake Yamato - 2011 IBM Corp. - 2012 Andy Lutomirski - 2012 Lennart Poettering - 2012 Sami Kerola - 2012 Cody Maloney - 2012 Werner Fink - 2013,2014 Ondrej Oprala -License: GPL-2+ - -Files: schedutils/ionice.c -Copyright: 2005 Jens Axboe -License: GPL-2 - -Files: schedutils/chrt.c - schedutils/taskset.c -Copyright: 2004 Robert Love - 2010 Karel Zak -License: GPL-2 - -Files: disk-utils/raw.c -Copyright: 1999, 2000, Red Hat Software -License: GPL-2 - -Files: sys-utils/nsenter.c -Copyright: 2012-2013 Eric Biederman -License: GPL-2 - -Files: disk-utils/mkfs.minix.c - disk-utils/mkswap.c -Copyright: 1991, 1992 Linus Torvalds -License: GPL-2 - -Files: lib/at.c - lib/blkdev.c - lib/loopdev.c - lib/sysfs.c - lib/ttyutils.c - lib/xgetpass.c - misc-utils/mcookie.c - sys-utils/setsid.c - text-utils/line.c -Copyright: n/a -License: public-domain - -Files: login-utils/vipw.c - misc-utils/cal.c - misc-utils/kill.c - misc-utils/logger.c - misc-utils/look.c - misc-utils/whereis.c - sys-utils/renice.c - term-utils/mesg.c - term-utils/script.c - term-utils/ttymsg.c - term-utils/wall.c - term-utils/write.c - text-utils/col.c - text-utils/colcrt.c - text-utils/colrm.c - text-utils/column.c - text-utils/hexdump.c - text-utils/hexdump.h - text-utils/hexdump-conv.c - text-utils/hexdump-display.c - text-utils/hexdump-parse.c - text-utils/rev.c - text-utils/ul.c -Copyright: 1980, 1983, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994 - The Regents of the University of California - 2014 Sami Kerola - 2014 Karel Zak -License: BSD-4-clause - -Files: text-utils/tailf.c -Copyright: 1996, 2003 Rickard E. Faith (faith@acm.org) -License: MIT - -Files: sys-utils/flock.c -Copyright: 2003-2005 H. Peter Anvin -License: MIT - -Files: text-utils/pg.c -Copyright: 2000-2001 Gunnar Ritter -License: BSD-2-clause - -Files: login-utils/last-deprecated.c -Copyright: 1987 Regents of the University of California -License: BSD-2-clause - -Files: login-utils/login.c -Copyright: 1980, 1987, 1988 The Regents of the University of California. - 2011 Karel Zak -License: BSD-2-clause - -Files: login-utils/logindefs.c -Copyright: 2003, 2004, 2005 Thorsten Kukuk -License: BSD-3-clause - -Files: libuuid/* - libuuid/src/* - libuuid/man/* -Copyright: 1996, 1997, 1998, 1999, 2007 Theodore Ts'o. - 1999 Andreas Dilger (adilger@enel.ucalgary.ca) -License: BSD-3-clause - -Files: lib/procutils.c - include/xalloc.h -Copyright: 2010, 2011 Davidlohr Bueso -License: LGPL-2+ - -Files: */colors.* -Copyright: 2012 Ondrej Oprala - 2012-2014 Karel Zak -License: LGPL-2+ - -Files: login-utils/setpwnam.h - login-utils/setpwnam.c -Copyright: 1994 Martin Schulze - 1994 Salvatore Valente -License: LGPL-2+ - -Files: libfdisk/* - libfdisk/src/* -Copyright: 2007-2013 Karel Zak - 2012 Davidlohr Bueso -License: LGPL-2.1+ - -Files: lib/cpuset.c - */match.* - lib/canonicalize.c - include/at.h -Copyright: 2008-2009, 2010, 2011, 2012 Karel Zak -License: LGPL-2.1+ - -Files: */mbsalign.* -Copyright: 2009-2010 Free Software Foundation, Inc. - 2010-2013 Karel Zak -License: LGPL-2.1+ - -Files: */readutmp.* -Copyright: 1992-2007, 2009-2014 Free Software Foundation, Inc. -License: GPL-3+ - -Files: */timeutils.* -Copyright: 2010 Lennart Poettering -License: LGPL-2.1+ - -Files: include/list.h -Copyright: 2008 Karel Zak - 1999-2008 by Theodore Ts'o -License: LGPL - -Files: libblkid/* - libblkid/src/* - libblkid/samples/* - libblkid/src/partitions/* - libblkid/src/superblocks/* - libblkid/src/topology/* -Copyright: 1999, 2001 Andries Brouwer - 1995, 1995, 1996, 1997, 1999, 2000, 2001, 2002, 2003, 2004 - Theodore Ts'o. - 2001 Andreas Dilger (adilger@turbolinux.com) - 2004-2008 Kay Sievers - 2008-2013 Karel Zak - 2009 Bastian Friedrich - 2009 Corentin Chary - 2009 Mike Hommey - 2009 Red Hat, Inc. - 2009-2010 Andreas Dilger - 2010 Andrew Nayenko - 2010 Jeroen Oortwijn - 2010 Jiro SEKIBA - 2011 Philipp Marek - 2012 Milan Broz - 2013 Alejandro Martinez Ruiz - 2013 Eric Sandeen - 2013 Rolf Fokkens - 2013 Zeeshan Ali (Khattak) -License: LGPL-2.1+ - -Files: include/cpuset.h - lib/randutils.c -Copyright: *unknown* -License: LGPL - -Files: misc-utils/blkid.c -Copyright: 2001 Andreas Dilger -License: LGPL - -Files: libmount/* - libmount/src/* -Copyright: 2008-2012 Karel Zak -License: LGPL-2.1+ - -Files: libmount/python/* -Copyright: 2013, Red Hat, Inc. -License: LGPL-3+ - -Files: libsmartcols/* -Copyright: 2009-2014 Karel Zak - 2014 Ondrej Oprala -License: LGPL - -Files: debian/* -Copyright: Guy Maor - Sean 'Shaleh' Perry - Adrian Bunk - LaMont Jones - 2014 Andreas Henriksson -License: GPL-2+ - - -License: public-domain - The files tagged with this license contains the following paragraphs: - . - No copyright is claimed. This code is in the public domain; do with - it what you wish. - . - Written by Karel Zak - -License: GPL-2 - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License, v2, as - published by the Free Software Foundation - . - 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. - . - 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. - . - On Debian systems, the complete text of the GNU General Public - License version 2 can be found in `/usr/share/common-licenses/GPL-2'. - -License: GPL-2+ - 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. - . - 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. - . - 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. - . - On Debian systems, the complete text of the GNU General Public - License version 2 can be found in `/usr/share/common-licenses/GPL-2'. - -License: GPL-3+ - 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 3 of the License, or - (at your option) any later version. - . - 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. - . - You should have received a copy of the GNU General Public License - along with this program. If not, see . - . - On Debian systems, the complete text of the GNU General Public - License version 3 can be found in `/usr/share/common-licenses/GPL-3'. - -License: BSD-2-clause - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - -License: BSD-3-clause - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are met: - . - 1) Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. - . - 2) Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. - . - 3) Neither the name of the ORGANIZATION nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - . - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE - LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - POSSIBILITY OF SUCH DAMAGE. - -License: BSD-4-clause - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - 3. All advertising materials mentioning features or use of this software - must display the following acknowledgement: - This product includes software developed by the University of - California, Berkeley and its contributors. - 4. Neither the name of the University nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - . - THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND - ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -License: LGPL - This file may be redistributed under the terms of the - GNU Lesser General Public License. - . - On Debian systems, the complete text of the GNU Lesser General Public - License can be found in ‘/usr/share/common-licenses/LGPL’. - -License: LGPL-2+ - This program is free software: you can redistribute it and/or modify - it under the terms of the GNU Lesser General Public License as published by - the Free Software Foundation, either version 2 of the License, or - (at your option) any later version. - . - 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 Lesser General Public License for more details. - . - You should have received a copy of the GNU Lesser General Public License - along with this program. If not, see . - . - The complete text of the GNU Lesser General Public License - can be found in /usr/share/common-licenses/LGPL-2 file. - -License: LGPL-2.1+ - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU Lesser General Public License as published by - the Free Software Foundation; either version 2.1, or (at your option) - any later version. - . - 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 Lesser General Public License for more details. - . - You should have received a copy of the GNU Lesser 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. - . - On Debian systems, the complete text of the GNU Lesser General Public - License version 2.1 can be found in ‘/usr/share/common-licenses/LGPL-2.1’. - -License: LGPL-3+ - This package is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 3 of the License, or (at your option) any later version. - . - This package 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 - Lesser General Public License for more details. - . - You should have received a copy of the GNU General Public License - along with this program. If not, see . - . - On Debian systems, the complete text of the GNU Lesser General - Public License can be found in "/usr/share/common-licenses/LGPL-3". - -License: MIT - Permission is hereby granted, free of charge, to any person - obtaining a copy of this software and associated documentation files - (the "Software"), to deal in the Software without restriction, - including without limitation the rights to use, copy, modify, merge, - publish, distribute, sublicense, and/or sell copies of the Software, - and to permit persons to whom the Software is furnished to do so, - subject to the following conditions: - . - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - . - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS - BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN - ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN - CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - SOFTWARE. - - - ----------------------------------------- -coreutils version 8.30-3 - - -Copyright: - -This is the Debian GNU/Linux packaged version of the GNU core -utilities. - -This package is maintained by Michael Stone and -built from sources obtained from: - ftp://ftp.gnu.org/gnu/coreutils/coreutils-8.24.tar.xz - -This debian package was first created by Michael Stone , -from coreutils 4.5.1. - -Changes: - * added Debian GNU/Linux package maintenance system files - * at times, bug fixes awaiting inclusion in the upstream source - - -Authors -======= - -See the file AUTHORS. - - -Copyright Holders and License -============================= - -lib/fts.c ---------- - - Copyright (C) 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. - - 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 3 of the License, or - (at your option) any later version. - - 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. - - You should have received a copy of the GNU General Public License - along with this program. If not, see . */ - -/*- - * Copyright (c) 1990, 1993, 1994 - * The Regents of the University of California. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 4. Neither the name of the University nor the names of its contributors - * may be used to endorse or promote products derived from this software - * without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - */ - - -lib/fts_.h ----------- - - Copyright (C) 2004, 2005, 2006, 2007 Free Software Foundation, Inc. - - 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 3 of the License, or - (at your option) any later version. - - 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. - - You should have received a copy of the GNU General Public License - along with this program. If not, see . */ - -/* - * Copyright (c) 1989, 1993 - * The Regents of the University of California. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 4. Neither the name of the University nor the names of its contributors - * may be used to endorse or promote products derived from this software - * without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - - -lib/rand-isaac.[ch] -------------------- - - Copyright (C) 1999-2006 Free Software Foundation, Inc. - Copyright (C) 1997, 1998, 1999 Colin Plumb. - - 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 3 of the License, or - (at your option) any later version. - - 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. - - You should have received a copy of the GNU General Public License - along with this program. If not, see . - - -lib/inet_ntop.c ---------------- - - Copyright (C) 2005, 2006 Free Software Foundation, Inc. - - 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 3, or (at your option) - any later version. - - 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. - - 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. */ - -/* - * Copyright (c) 1996-1999 by Internet Software Consortium. - * - * Permission to use, copy, modify, and distribute this software for any - * purpose with or without fee is hereby granted, provided that the above - * copyright notice and this permission notice appear in all copies. - * - * THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS - * ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES - * OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE - * CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL - * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR - * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS - * ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS - * SOFTWARE. - */ - - -m4/autobuild.m4 ---------------- -dnl Copyright (C) 2004, 2006, 2007 Free Software Foundation, Inc. -dnl This file is free software; the Free Software Foundation -dnl gives unlimited permission to copy and/or distribute it, -dnl with or without modifications, as long as this notice is preserved. - -dnl From Simon Josefsson - - -src/cut.c ---------- - - Copyright (C) 1997-2007 Free Software Foundation, Inc. - Copyright (C) 1984 David M. Ihnat - - 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 3 of the License, or - (at your option) any later version. - - 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. - - You should have received a copy of the GNU General Public License - along with this program. If not, see . */ - - -src/dircolors.c ---------------- - - Copyright (C) 1996-2007 Free Software Foundation, Inc. - Copyright (C) 1994, 1995, 1997, 1998, 1999, 2000 H. Peter Anvin - - 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 3 of the License, or - (at your option) any later version. - - 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. - - You should have received a copy of the GNU General Public License - along with this program. If not, see . */ - - -src/paste.c ------------ - - Copyright (C) 1997-2005 Free Software Foundation, Inc. - Copyright (C) 1984 David M. Ihnat - - 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 3 of the License, or - (at your option) any later version. - - 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. - - You should have received a copy of the GNU General Public License - along with this program. If not, see . */ - - -src/shred.c ------------ - - Copyright (C) 1999-2007 Free Software Foundation, Inc. - Copyright (C) 1997, 1998, 1999 Colin Plumb. - - 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 3 of the License, or - (at your option) any later version. - - 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. - - You should have received a copy of the GNU General Public License - along with this program. If not, see . - - -doc/coreutils.texi (The GNU Coreutils Manual) ---------------------------------------------- - -Copyright @copyright{} 1994-1996, 2000-2008 Free Software Foundation, Inc. - -Permission is granted to copy, distribute and/or modify this document -under the terms of the GNU Free Documentation License, Version 1.2 or -any later version published by the Free Software Foundation; with no -Invariant Sections, with no Front-Cover Texts, and with no Back-Cover -Texts. A copy of the license is included in the section entitled ``GNU -Free Documentation License''. - - -all other files ---------------- - -Copyright (C) 1984-2008 Free Software Foundation, Inc. - - 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 3 of the License, or - (at your option) any later version. - - 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. - - You should have received a copy of the GNU General Public License - along with this program. If not, see . - -On Debian systems, the complete text of the GNU General -Public License can be found in `/usr/share/common-licenses/GPL-3'. - - ----------------------------------------- -dash version 0.5.10.2-5 - - -Copyright: - -This package was debianized by Mark W. Eichin eichin@kitten.gen.ma.us on -Mon, 24 Feb 1997 16:00:16 -0500. - -This package was re-ported from NetBSD and debianized by -Herbert Xu herbert@debian.org on Thu, 19 Jun 1997 19:29:16 +1000. - -This package was adopted by Gerrit Pape on -Fri, 28 May 2004 18:38:18 +0000. - -It was downloaded from http://gondor.apana.org.au/~herbert/dash/files/ - -Copyright: - -Copyright (c) 1989-1994 - The Regents of the University of California. All rights reserved. -Copyright (c) 1997 Christos Zoulas. All rights reserved. -Copyright (c) 1997-2005 - Herbert Xu . All rights reserved. - -This code is derived from software contributed to Berkeley by Kenneth Almquist. - - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. -3. Neither the name of the University nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS -OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY -OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF -SUCH DAMAGE. - -mksignames.c: - -This file is not directly linked with dash. However, its output is. - -Copyright (C) 1992 Free Software Foundation, Inc. - -This file is part of GNU Bash, the Bourne Again SHell. - -Bash is free software; you can redistribute it and/or modify it under -the terms of the GNU General Public License as published by the Free -Software Foundation; either version 2, or (at your option) any later -version. - -Bash 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. - -You should have received a copy of the GNU General Public License with -your Debian GNU/Linux system, in /usr/share/common-licenses/GPL, or with the -Debian GNU/Linux hello source package as the file COPYING. If not, -write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, -Boston, MA 02111 USA. - - - ----------------------------------------- -debconf version 1.5.71 - - -Copyright: - -Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ - -Files: * -Copyright: 1999-2010 Joey Hess - 2003 Tomohiro KUBOTA - 2004-2010 Colin Watson -License: BSD-2-clause - -Files: Debconf/FrontEnd/Passthrough.pm -Copyright: 2000 Randolph Chung - 2000-2010 Joey Hess - 2005-2010 Colin Watson -License: BSD-2-clause - -Files: Debconf/FrontEnd/Qt* Debconf/Element/Qt* -Copyright: 2003 Peter Rockai - 2003-2010 Colin Watson - 2010 Sune Vuorela - 2011 Modestas Vainius -License: BSD-2-clause - -Files: Debconf/FrontEnd/Kde.pm -Copyright: 2011 Modestas Vainius -License: BSD-2-clause - -Files: Debconf/FrontEnd/Gnome.pm -Copyright: Eric Gillespie -License: BSD-2-clause - -Files: Debconf/DbDriver/LDAP.pm -Copyright: Matthew Palmer -License: BSD-2-clause - -Files: debconf.py -Copyright: 2002 Moshe Zadka - 2005 Canonical Ltd. - 2005-2010 Colin Watson -License: BSD-2-clause - -Files: debconf-show -Copyright: 2001-2010 Joey Hess - 2003 Sylvain Ferriol -License: BSD-2-clause - -Files: debconf-get-selections debconf-set-selections -Copyright: 2003 Petter Reinholdtsen -License: BSD-2-clause - -Files: Test/* -Copyright: 2005 Sylvain Ferriol -License: BSD-2-clause - -Files: debconf-apt-progress -Copyright: 2005-2010 Colin Watson - 2005-2010 Joey Hess -License: BSD-2-clause - -License: BSD-2-clause - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - . - THIS SOFTWARE IS PROVIDED BY AUTHORS AND CONTRIBUTORS ``AS IS'' AND - ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - - ----------------------------------------- -debian-archive-keyring version 2019.1 - - -Copyright: - -This is Debian GNU's GnuPG keyrings of archive keys. - -This package was originally put together by Michael Vogt - - -The keys in the keyrings don't fall under any copyright. Everything -else in the package is covered by the GNU GPL. - -Debian support files Copyright (C) 2006 Michael Vogt -based on the debian-keyring package maintained by James Troup - -Debian support files for debian-archive-keyring are free software; you -can redistribute them and/or modify them under the terms of the GNU -General Public License as published by the Free Software Foundation; -either version 2, or (at your option) any later version. - -Debian support files for debian-archive-keyring are distributed in the -hope that they 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. - -You should have received a copy of the GNU General Public License with -your Debian system, in /usr/share/common-licenses/GPL, or with the -Debian GNU debian-archive-keyring source package as the file COPYING. -If not, write to the Free Software Foundation, Inc., 51 Franklin Street, -Fifth Floor, Boston, MA 02110-1301 USA. - - - ----------------------------------------- -debianutils version 4.8.6.1 - - -Copyright: - -This is the Debian GNU/Linux package debianutils. - -It is an original Debian package. Programs in it were maintained by -Guy Maor , and are now maintained by Clint Adams -. - -All its programs except savelog, and which may be -redistributed under the terms of the GNU GPL, Version 2 or later, -found on Debian systems in the file /usr/share/common-licenses/GPL. - -which is in the public domain. - -savelog may be redistributed under the following terms: (The rest of -this file consists of savelog's distribution terms.) - -#ident "@(#)smail:RELEASE-3_2:COPYING,v 1.2 1996/06/14 18:59:10 woods Exp" - - SMAIL GENERAL PUBLIC LICENSE - (Clarified 11 Feb 1988) - - Copyright (C) 1988 Landon Curt Noll & Ronald S. Karr - Copyright (C) 1992 Ronald S. Karr - Copyleft (GNU) 1988 Landon Curt Noll & Ronald S. Karr - - Everyone is permitted to copy and distribute verbatim copies - of this license, but changing it is not allowed. You can also - use this wording to make the terms for other programs. - - The license agreements of most software companies keep you at the -mercy of those companies. By contrast, our general public license is -intended to give everyone the right to share SMAIL. To make sure that -you get the rights we want you to have, we need to make restrictions -that forbid anyone to deny you these rights or to ask you to surrender -the rights. Hence this license agreement. - - Specifically, we want to make sure that you have the right to give -away copies of SMAIL, that you receive source code or else can get it -if you want it, that you can change SMAIL or use pieces of it in new -free programs, and that you know you can do these things. - - To make sure that everyone has such rights, we have to forbid you to -deprive anyone else of these rights. For example, if you distribute -copies of SMAIL, you must give the recipients all the rights that you -have. You must make sure that they, too, receive or can get the -source code. And you must tell them their rights. - - Also, for our own protection, we must make certain that everyone -finds out that there is no warranty for SMAIL. If SMAIL is modified by -someone else and passed on, we want its recipients to know that what -they have is not what we distributed, so that any problems introduced -by others will not reflect on our reputation. - - Therefore we (Landon Curt Noll and Ronald S. Karr) make the following -terms which say what you must do to be allowed to distribute or change -SMAIL. - - - COPYING POLICIES - - 1. You may copy and distribute verbatim copies of SMAIL source code -as you receive it, in any medium, provided that you conspicuously and -appropriately publish on each copy a valid copyright notice "Copyright -(C) 1988 Landon Curt Noll & Ronald S. Karr" (or with whatever year is -appropriate); keep intact the notices on all files that refer to this -License Agreement and to the absence of any warranty; and give any -other recipients of the SMAIL program a copy of this License -Agreement along with the program. You may charge a distribution fee -for the physical act of transferring a copy. - - 2. You may modify your copy or copies of SMAIL or any portion of it, -and copy and distribute such modifications under the terms of -Paragraph 1 above, provided that you also do the following: - - a) cause the modified files to carry prominent notices stating - that you changed the files and the date of any change; and - - b) cause the whole of any work that you distribute or publish, - that in whole or in part contains or is a derivative of SMAIL or - any part thereof, to be licensed at no charge to all third - parties on terms identical to those contained in this License - Agreement (except that you may choose to grant more extensive - warranty protection to some or all third parties, at your option). - - c) You may charge a distribution fee for the physical act of - transferring a copy, and you may at your option offer warranty - protection in exchange for a fee. - -Mere aggregation of another unrelated program with this program (or its -derivative) on a volume of a storage or distribution medium does not bring -the other program under the scope of these terms. - - 3. You may copy and distribute SMAIL (or a portion or derivative of it, -under Paragraph 2) in object code or executable form under the terms of -Paragraphs 1 and 2 above provided that you also do one of the following: - - a) accompany it with the complete corresponding machine-readable - source code, which must be distributed under the terms of - Paragraphs 1 and 2 above; or, - - b) accompany it with a written offer, valid for at least three - years, to give any third party free (except for a nominal - shipping charge) a complete machine-readable copy of the - corresponding source code, to be distributed under the terms of - Paragraphs 1 and 2 above; or, - - c) accompany it with the information you received as to where the - corresponding source code may be obtained. (This alternative is - allowed only for non-commercial distribution and only if you - received the program in object code or executable form alone.) - -For an executable file, complete source code means all the source code for -all modules it contains; but, as a special exception, it need not include -source code for modules which are standard libraries that accompany the -operating system on which the executable file runs. - - 4. You may not copy, sublicense, distribute or transfer SMAIL -except as expressly provided under this License Agreement. Any attempt -otherwise to copy, sublicense, distribute or transfer SMAIL is void and -your rights to use the program under this License agreement shall be -automatically terminated. However, parties who have received computer -software programs from you with this License Agreement will not have -their licenses terminated so long as such parties remain in full compliance. - - 5. If you wish to incorporate parts of SMAIL into other free -programs whose distribution conditions are different, write to Landon -Curt Noll & Ronald S. Karr via the Free Software Foundation at 51 -Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. We have not yet -worked out a simple rule that can be stated here, but we will often -permit this. We will be guided by the two goals of preserving the -free status of all derivatives of our free software and of promoting -the sharing and reuse of software. - -Your comments and suggestions about our licensing policies and our -software are welcome! This contract was based on the contract made by -the Free Software Foundation. Please contact the Free Software -Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, -USA, or call (617) 542-5942 for details on copylefted material in -general. - - NO WARRANTY - - BECAUSE SMAIL IS LICENSED FREE OF CHARGE, WE PROVIDE ABSOLUTELY NO -WARRANTY, TO THE EXTENT PERMITTED BY APPLICABLE STATE LAW. EXCEPT WHEN -OTHERWISE STATED IN WRITING, LANDON CURT NOLL & RONALD S. KARR AND/OR -OTHER PARTIES PROVIDE SMAIL "AS IS" WITHOUT WARRANTY OF ANY KIND, -EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. -THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF SMAIL IS WITH -YOU. SHOULD SMAIL PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL -NECESSARY SERVICING, REPAIR OR CORRECTION. - - IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW WILL LANDON CURT NOLL & -RONALD S. KARR AND/OR ANY OTHER PARTY WHO MAY MODIFY AND REDISTRIBUTE -SMAIL AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY -LOST PROFITS, LOST MONIES, OR OTHER SPECIAL, INCIDENTAL OR -CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE -(INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED -INACCURATE OR LOSSES SUSTAINED BY THIRD PARTIES OR A FAILURE OF THE -PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS) SMAIL, EVEN IF YOU HAVE -BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES, OR FOR ANY CLAIM BY -ANY OTHER PARTY. - - ----------------------------------------- -diffutils version 1:3.7-3 - - -Copyright: - -This is the Debian prepackaged version of the GNU diffutils package. -GNU `diff' was written by Mike Haertel, David Hayes, Richard Stallman, -Len Tower, and Paul Eggert. Wayne Davison designed and implemented -the unified output format. GNU `diff3' was written by Randy Smith. -GNU `sdiff' was written by Thomas Lord. GNU `cmp' was written by -Torbjorn Granlund and David MacKenzie. - -The source for this release was obtained from - -http://ftp.gnu.org/gnu/diffutils/diffutils-3.7.tar.xz - -Program copyright and license: -============================= - -Copyright (C) 1988-1996, 1998, 2001-2002, 2004, 2006-2007, 2009-2013, 2015-2018 -Free Software Foundation, Inc. - - 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 3 of the License, or - (at your option) any later version. - - 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. - -On Debian systems, the complete text of the GNU General Public License -may be found in `/usr/share/common-licenses/GPL'. - - -Manual copyright and license: -============================ - -Copyright (C) 1992-1994, 1998, 2001-2002, 2004, 2006, 2009-2018 Free -Software Foundation, Inc. - - Permission is granted to copy, distribute and/or modify this document - under the terms of the GNU Free Documentation License, Version 1.3 or - any later version published by the Free Software Foundation; with no - Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. - -On Debian systems, the complete text of the GNU Free Documentation -License may be found in `/usr/share/common-licenses/GFDL'. - - ----------------------------------------- -dpkg version 1.19.7 - - -Copyright: - -Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ -Upstream-Name: dpkg - -Files: * -Copyright: - Copyright © 1994 Ian Murdock - Copyright © 1994 Matt Welsh - Copyright © 1994 Carl Streeter - Copyright © 1994-1999, 2008 Ian Jackson - Copyright © 1995 Bruce Perens - Copyright © 1995-1996 Erick Branderhorst - Copyright © 1996 Michael Shields - Copyright © 1996 Klee Dienes - Copyright © 1996 Kim-Minh Kaplan - Copyright © 1996-1998 Miquel van Smoorenburg - Copyright © 1997-1998 Charles Briscoe-Smith - Copyright © 1997-1998 Juho Vuori - Copyright © 1998 Koichi Sekido - Copyright © 1998 Jim Van Zandt - Copyright © 1998 Juan Cespedes - Copyright © 1998 Nils Rennebarth - Copyright © 1998 Heiko Schlittermann - Copyright © 1998-1999, 2001, 2003, 2006 Martin Schulze - Copyright © 1999 Roderick Shertler - Copyright © 1999 Ben Collins - Copyright © 1999 Richard Kettlewell - Copyright © 1999-2001 Marcus Brinkmann - Copyright © 1999-2002 Wichert Akkerman - Copyright © 2001, 2007, 2010 Joey Hess - Copyright © 2004-2005, 2007-2008, 2010 Canonical Ltd. - Copyright © 2004-2005 Scott James Remnant - Copyright © 2006-2008 Frank Lichtenheld - Copyright © 2006-2015 Guillem Jover - Copyright © 2007-2012 Raphaël Hertzog - Copyright © 2007 Nicolas François - Copyright © 2007 Don Armstrong - Copyright © 2007 Colin Watson - Copyright © 2007, 2008 Tollef Fog Heen - Copyright © 2008 Zack Weinberg - Copyright © 2008 Pierre Habouzit - Copyright © 2009 Romain Francoise - Copyright © 2009-2010 Modestas Vainius - Copyright © 2009-2011 Kees Cook -License: GPL-2+ - -Files: - lib/compat/getopt* - lib/compat/gettext.h - lib/compat/obstack.* - lib/compat/strnlen.c -Copyright: - Copyright © 1987-2006 Free Software Foundation, Inc. -License: GPL-2+ - -Files: - dselect/methods/Dselect/Ftp.pm - dselect/methods/ftp/* -Copyright: - Copyright © 1996 Andy Guy - Copyright © 1998 Martin Schulze - Copyright © 1999-2001, 2005-2006, 2009 Raphaël Hertzog -License: GPL-2 - -Files: - scripts/Dpkg/Gettext.pm -Copyright: - Copyright © 2000 Joey Hess - Copyright © 2007, 2009-2010, 2012-2015 Guillem Jover -License: BSD-2-clause - -Files: - utils/start-stop-daemon.c -Copyright: - Copyright © 1999 Marek Michalkiewicz - Copyright © 1999 Christian Schwarz - Copyright © 1999 Klee Dienes - Copyright © 1999 Ben Collins - Copyright © 1999-2002 Wichert Akkerman - Copyright © 2000-2003 Adam Heath - Copyright © 2001 Sontri Tomo Huynh - Copyright © 2001 Andreas Schuldei - Copyright © 2001 Ian Jackson - Copyright © 2004-2005 Scott James Remnant - Copyright © 2006-2014 Guillem Jover - Copyright © 2008 Samuel Thibault - Copyright © 2008 Andreas Påhlsson - Copyright © 2009 Chris Coulson - Copyright © 2012 Carsten Hey - Copyright © 2014 Nir Soffer -License: public-domain-s-s-d - Written by Marek Michalkiewicz , - public domain. Based conceptually on start-stop-daemon.pl, by Ian - Jackson . May be used and distributed - freely for any purpose. Changes by Christian Schwarz - , to make output conform to the Debian - Console Message Standard, also placed in public domain. Minor - changes by Klee Dienes , also placed in the Public - Domain. - . - Changes by Ben Collins , added --chuid, --background - and --make-pidfile options, placed in public domain as well. - -Files: lib/compat/md5.* -Copyright: - Copyright © 1993 Colin Plumb -License: public-domain-md5 - This code implements the MD5 message-digest algorithm. - The algorithm is due to Ron Rivest. This code was - written by Colin Plumb in 1993, no copyright is claimed. - This code is in the public domain; do with it what you wish. - . - Equivalent code is available from RSA Data Security, Inc. - This code has been tested against that, and is equivalent, - except that you don't need to include two pages of legalese - with every copy. - -License: GPL-2+ - 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. - . - 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. - . - You should have received a copy of the GNU General Public License - along with this program. If not, see . -Comment: - On Debian systems, the complete text of the GNU General Public License - can be found in ‘/usr/share/common-licenses/GPL-2’ or in the dpkg source - as the file ‘COPYING’. - -License: GPL-2 - This is free software; you can redistribute it and/or modify - it under the terms of version 2 of the GNU General Public - License version 2 as published by the Free Software Foundation. - . - This 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. - . - You should have received a copy of the GNU General Public License - along with this program. If not, see . - -License: BSD-2-clause - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - . - THIS SOFTWARE IS PROVIDED BY AUTHORS AND CONTRIBUTORS ``AS IS'' AND - ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - - ----------------------------------------- -e2fsprogs version 1.44.5-1+deb10u3 - - -Copyright: - -This is the Debian GNU/Linux prepackaged version of the EXT2 file -system utilities (e2fsck, mke2fs, etc.). The EXT2 utilities were -written by Theodore Ts'o and Remy Card . - -Sources were obtained from http://sourceforge.net/projects/e2fsprogs - -Packaging is Copyright (c) 2003-2007 Theodore Ts'o - Copyright (c) 1997-2003 Yann Dirson - Copyright (c) 2001 Alcove - Copyright (c) 1997 Klee Dienes - Copyright (c) 1995-1996 Michael Nonweiler - -Upstream Author: Theodore Ts'o - -Copyright notice: - -This package, the EXT2 filesystem utilities, are made available under -the GNU General Public License version 2, with the exception of the -lib/ext2fs and lib/e2p libraries, which are made available under the -GNU Library General Public License Version 2, the lib/uuid library -which is made available under a BSD-style license and the lib/et and -lib/ss libraries which are made available under an MIT-style license. - - Copyright (c) 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, - 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 by Theodore Ts'o - -On Debian GNU systems, the complete text of the GNU General Public -License can be found in `/usr/share/common-licenses/GPL-2'. The -complete text of the GNU Library General Public License can be found -in '/usr/share/common-licenses/LGPL-2'. - - -The license used for lib/et and lib/ss libraries is: - - Copyright 1987 by the Student Information Processing Board - of the Massachusetts Institute of Technology - - Permission to use, copy, modify, and distribute this software and - its documentation for any purpose is hereby granted, provided that - the names of M.I.T. and the M.I.T. S.I.P.B. not be used in - advertising or publicity pertaining to distribution of the software - without specific, written prior permission. M.I.T. and the - M.I.T. S.I.P.B. make no representations about the suitability of - this software for any purpose. It is provided "as is" without - express or implied warranty. - -The license used for lib/uuid is: - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - 1. Redistributions of source code must retain the above copyright - notice, and the entire permission notice in its entirety, - including the disclaimer of warranties. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - 3. The name of the author may not be used to endorse or promote - products derived from this software without specific prior - written permission. - - THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, ALL OF - WHICH ARE HEREBY DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE - LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT - OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR - BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF - LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE - USE OF THIS SOFTWARE, EVEN IF NOT ADVISED OF THE POSSIBILITY OF SUCH - DAMAGE. - - ----------------------------------------- -fdisk version 2.33.1-0.1 - - -Copyright: - -Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ -Upstream-Name: util-linux -Upstream-Contact: util-linux@vger.kernel.org -Source: https://www.kernel.org/pub/linux/utils/util-linux/ - -Files: * -Copyright: Michal Luscon - 1986 Gary S. Brown - 1990 Gordon Irlam (gordoni@cs.ua.oz.au) - 1991, 1992 Linus Torvalds - 1991-2004 Miquel van Smoorenburg - 1992 A. V. Le Blanc (LeBlanc@mcc.ac.uk) - 1992-1997 Michael K. Johnson, johnsonm@redhat.com - 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, - 2003, 2004, 2005, 2008 Theodore Ts'o - 1994 Kevin E. Martin (martin@cs.unc.edu) - 1994 Salvatore Valente - 1994,1996 Alessandro Rubini (rubini@ipvvis.unipv.it) - 1994-2005 Jeff Tranter (tranter@pobox.com) - 1995, 1999, 2000 Andries E. Brouwer - 1997-2005 Frodo Looijaard - 1998 Danek Duvall - 1999 Andreas Dilger - 1999-2002 Transmeta Corporation - 1999, 2000, 2002-2009, 2010, 2011, 2012, 2014 Red Hat, Inc. - 2000 Werner Almesberger - 2004-2006 Michael Holzt, kju -at- fqdn.org - 2005 Adrian Bunk - 2007-2014 Karel Zak - 2007, 2011 SuSE LINUX Products GmbH - 2008 Cai Qian - 2008 Hayden A. James (hayden.james@gmail.com) - 2008 James Youngman - 2008 Roy Peled, the.roy.peled -at- gmail.com - 2009 Mikhail Gusarov - 2010, 2011, 2012 Davidlohr Bueso - 2010 Jason Borden A - 2010 Hajime Taira - 2010 Masatake Yamato - 2011 IBM Corp. - 2012 Andy Lutomirski - 2012 Lennart Poettering - 2012 Sami Kerola - 2012 Cody Maloney - 2012 Werner Fink - 2013,2014 Ondrej Oprala -License: GPL-2+ - -Files: schedutils/ionice.c -Copyright: 2005 Jens Axboe -License: GPL-2 - -Files: schedutils/chrt.c - schedutils/taskset.c -Copyright: 2004 Robert Love - 2010 Karel Zak -License: GPL-2 - -Files: disk-utils/raw.c -Copyright: 1999, 2000, Red Hat Software -License: GPL-2 - -Files: sys-utils/nsenter.c -Copyright: 2012-2013 Eric Biederman -License: GPL-2 - -Files: disk-utils/mkfs.minix.c - disk-utils/mkswap.c -Copyright: 1991, 1992 Linus Torvalds -License: GPL-2 - -Files: lib/at.c - lib/blkdev.c - lib/loopdev.c - lib/sysfs.c - lib/ttyutils.c - lib/xgetpass.c - misc-utils/mcookie.c - sys-utils/setsid.c - text-utils/line.c -Copyright: n/a -License: public-domain - -Files: login-utils/vipw.c - misc-utils/cal.c - misc-utils/kill.c - misc-utils/logger.c - misc-utils/look.c - misc-utils/whereis.c - sys-utils/renice.c - term-utils/mesg.c - term-utils/script.c - term-utils/ttymsg.c - term-utils/wall.c - term-utils/write.c - text-utils/col.c - text-utils/colcrt.c - text-utils/colrm.c - text-utils/column.c - text-utils/hexdump.c - text-utils/hexdump.h - text-utils/hexdump-conv.c - text-utils/hexdump-display.c - text-utils/hexdump-parse.c - text-utils/rev.c - text-utils/ul.c -Copyright: 1980, 1983, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994 - The Regents of the University of California - 2014 Sami Kerola - 2014 Karel Zak -License: BSD-4-clause - -Files: text-utils/tailf.c -Copyright: 1996, 2003 Rickard E. Faith (faith@acm.org) -License: MIT - -Files: sys-utils/flock.c -Copyright: 2003-2005 H. Peter Anvin -License: MIT - -Files: text-utils/pg.c -Copyright: 2000-2001 Gunnar Ritter -License: BSD-2-clause - -Files: login-utils/last-deprecated.c -Copyright: 1987 Regents of the University of California -License: BSD-2-clause - -Files: login-utils/login.c -Copyright: 1980, 1987, 1988 The Regents of the University of California. - 2011 Karel Zak -License: BSD-2-clause - -Files: login-utils/logindefs.c -Copyright: 2003, 2004, 2005 Thorsten Kukuk -License: BSD-3-clause - -Files: libuuid/* - libuuid/src/* - libuuid/man/* -Copyright: 1996, 1997, 1998, 1999, 2007 Theodore Ts'o. - 1999 Andreas Dilger (adilger@enel.ucalgary.ca) -License: BSD-3-clause - -Files: lib/procutils.c - include/xalloc.h -Copyright: 2010, 2011 Davidlohr Bueso -License: LGPL-2+ - -Files: */colors.* -Copyright: 2012 Ondrej Oprala - 2012-2014 Karel Zak -License: LGPL-2+ - -Files: login-utils/setpwnam.h - login-utils/setpwnam.c -Copyright: 1994 Martin Schulze - 1994 Salvatore Valente -License: LGPL-2+ - -Files: libfdisk/* - libfdisk/src/* -Copyright: 2007-2013 Karel Zak - 2012 Davidlohr Bueso -License: LGPL-2.1+ - -Files: lib/cpuset.c - */match.* - lib/canonicalize.c - include/at.h -Copyright: 2008-2009, 2010, 2011, 2012 Karel Zak -License: LGPL-2.1+ - -Files: */mbsalign.* -Copyright: 2009-2010 Free Software Foundation, Inc. - 2010-2013 Karel Zak -License: LGPL-2.1+ - -Files: */readutmp.* -Copyright: 1992-2007, 2009-2014 Free Software Foundation, Inc. -License: GPL-3+ - -Files: */timeutils.* -Copyright: 2010 Lennart Poettering -License: LGPL-2.1+ - -Files: include/list.h -Copyright: 2008 Karel Zak - 1999-2008 by Theodore Ts'o -License: LGPL - -Files: libblkid/* - libblkid/src/* - libblkid/samples/* - libblkid/src/partitions/* - libblkid/src/superblocks/* - libblkid/src/topology/* -Copyright: 1999, 2001 Andries Brouwer - 1995, 1995, 1996, 1997, 1999, 2000, 2001, 2002, 2003, 2004 - Theodore Ts'o. - 2001 Andreas Dilger (adilger@turbolinux.com) - 2004-2008 Kay Sievers - 2008-2013 Karel Zak - 2009 Bastian Friedrich - 2009 Corentin Chary - 2009 Mike Hommey - 2009 Red Hat, Inc. - 2009-2010 Andreas Dilger - 2010 Andrew Nayenko - 2010 Jeroen Oortwijn - 2010 Jiro SEKIBA - 2011 Philipp Marek - 2012 Milan Broz - 2013 Alejandro Martinez Ruiz - 2013 Eric Sandeen - 2013 Rolf Fokkens - 2013 Zeeshan Ali (Khattak) -License: LGPL-2.1+ - -Files: include/cpuset.h - lib/randutils.c -Copyright: *unknown* -License: LGPL - -Files: misc-utils/blkid.c -Copyright: 2001 Andreas Dilger -License: LGPL - -Files: libmount/* - libmount/src/* -Copyright: 2008-2012 Karel Zak -License: LGPL-2.1+ - -Files: libmount/python/* -Copyright: 2013, Red Hat, Inc. -License: LGPL-3+ - -Files: libsmartcols/* -Copyright: 2009-2014 Karel Zak - 2014 Ondrej Oprala -License: LGPL - -Files: debian/* -Copyright: Guy Maor - Sean 'Shaleh' Perry - Adrian Bunk - LaMont Jones - 2014 Andreas Henriksson -License: GPL-2+ - - -License: public-domain - The files tagged with this license contains the following paragraphs: - . - No copyright is claimed. This code is in the public domain; do with - it what you wish. - . - Written by Karel Zak - -License: GPL-2 - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License, v2, as - published by the Free Software Foundation - . - 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. - . - 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. - . - On Debian systems, the complete text of the GNU General Public - License version 2 can be found in `/usr/share/common-licenses/GPL-2'. - -License: GPL-2+ - 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. - . - 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. - . - 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. - . - On Debian systems, the complete text of the GNU General Public - License version 2 can be found in `/usr/share/common-licenses/GPL-2'. - -License: GPL-3+ - 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 3 of the License, or - (at your option) any later version. - . - 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. - . - You should have received a copy of the GNU General Public License - along with this program. If not, see . - . - On Debian systems, the complete text of the GNU General Public - License version 3 can be found in `/usr/share/common-licenses/GPL-3'. - -License: BSD-2-clause - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - -License: BSD-3-clause - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are met: - . - 1) Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. - . - 2) Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. - . - 3) Neither the name of the ORGANIZATION nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - . - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE - LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - POSSIBILITY OF SUCH DAMAGE. - -License: BSD-4-clause - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - 3. All advertising materials mentioning features or use of this software - must display the following acknowledgement: - This product includes software developed by the University of - California, Berkeley and its contributors. - 4. Neither the name of the University nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - . - THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND - ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -License: LGPL - This file may be redistributed under the terms of the - GNU Lesser General Public License. - . - On Debian systems, the complete text of the GNU Lesser General Public - License can be found in ‘/usr/share/common-licenses/LGPL’. - -License: LGPL-2+ - This program is free software: you can redistribute it and/or modify - it under the terms of the GNU Lesser General Public License as published by - the Free Software Foundation, either version 2 of the License, or - (at your option) any later version. - . - 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 Lesser General Public License for more details. - . - You should have received a copy of the GNU Lesser General Public License - along with this program. If not, see . - . - The complete text of the GNU Lesser General Public License - can be found in /usr/share/common-licenses/LGPL-2 file. - -License: LGPL-2.1+ - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU Lesser General Public License as published by - the Free Software Foundation; either version 2.1, or (at your option) - any later version. - . - 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 Lesser General Public License for more details. - . - You should have received a copy of the GNU Lesser 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. - . - On Debian systems, the complete text of the GNU Lesser General Public - License version 2.1 can be found in ‘/usr/share/common-licenses/LGPL-2.1’. - -License: LGPL-3+ - This package is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 3 of the License, or (at your option) any later version. - . - This package 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 - Lesser General Public License for more details. - . - You should have received a copy of the GNU General Public License - along with this program. If not, see . - . - On Debian systems, the complete text of the GNU Lesser General - Public License can be found in "/usr/share/common-licenses/LGPL-3". - -License: MIT - Permission is hereby granted, free of charge, to any person - obtaining a copy of this software and associated documentation files - (the "Software"), to deal in the Software without restriction, - including without limitation the rights to use, copy, modify, merge, - publish, distribute, sublicense, and/or sell copies of the Software, - and to permit persons to whom the Software is furnished to do so, - subject to the following conditions: - . - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - . - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS - BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN - ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN - CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - SOFTWARE. - - - ----------------------------------------- -findutils version 4.6.0+git+20190209-2 - - -Copyright: - -It was downloaded from ftp://ftp.gnu.org/gnu/findutils - -Debian maintainer history: The original package was put together by -Ian Murdock , afterwards Kevin Dalley - took over. 2003-07 Andreas Metzler - followed. - -Upstream Authors: -* GNU find was written by Eric Decker , -with enhancements by David MacKenzie , -Jay Plett , -and Tim Wood . -The idea for -print0 and xargs -0 came from -Dan Bernstein . -Improvements have been made by James Youngman . - -* GNU xargs -was originally written by Mike Rendell, with enhancements by David -MacKenzie. Modifications by James Youngman Dmitry V. Levin - -* GNU locate and its associated utilities were originally -written by James Woods, with enhancements by David MacKenzie, James Youngman -and Bas van Gompel. - -Upstream's AUTHORS lists these major contributors: -Eric B. Decker -Michael Rendell -David J. MacKenzie -Jim Meyering -Tim Wood -Kevin Dalley -Paul Eggert -James Youngman -Jay Plett -Paul Sheer -Dmitry V. Levin -Bas van Gompel -Eric Blake -Andreas Metzler -Kamil Dudka -Bernhard Voelker - - -Current upstream maintainer is James Youngman . - ----------------------------- - Copyright (C) 1990-2019 Free Software Foundation, Inc. - - 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 3 of the License, or - (at your option) any later version. - - 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. - - You should have received a copy of the GNU General Public License - along with this program. If not, see . ----------------------------- - -On Debian GNU/Linux systems, the complete text of the GNU General -Public License version 3 can be found in `/usr/share/common-licenses/GPL-3'. - -============================================= -DOCUMENTATION ----------------------------- -Copyright (C) 1994, 1996, 1998, 2000, 2001, 2003-2019 Free Software -Foundation, Inc. - -Permission is granted to copy, distribute and/or modify this document -under the terms of the GNU Free Documentation License, Version 1.3 or -any later version published by the Free Software Foundation; with no -Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A -copy of the license is included in the section entitled "GNU Free -Documentation License". ----------------------------- - -On Debian GNU/Linux systems, the complete text of the GNU Free Documentation -License, Version 1.3 can be found in `/usr/share/common-licenses/GFDL-1.3'. - - ----------------------------------------- -gcc-8-base version 8.3.0-6 - - -Copyright: - -This is the Debian GNU/Linux prepackaged version of the GNU compiler -collection, containing Ada, C, C++, Fortran 95, Objective-C, -Objective-C++, and Treelang compilers, documentation, and support -libraries. In addition, Debian provides the gdc compiler, either in -the same source package, or built from a separate same source package. -Packaging is done by the Debian GCC Maintainers -, with sources obtained from: - - ftp://gcc.gnu.org/pub/gcc/releases/ (for full releases) - svn://gcc.gnu.org/svn/gcc/ (for prereleases) - http://bitbucket.org/goshawk/gdc (for D) - https://github.com/MentorEmbedded/nvptx-newlib/ (for newlib-nvptx) - -The current gcc-8 source package is taken from the SVN gcc-8-branch. - -Changes: See changelog.Debian.gz - -Debian splits the GNU Compiler Collection into packages for each language, -library, and documentation as follows: - -Language Compiler package Library package Documentation ---------------------------------------------------------------------------- -Ada gnat-8 libgnat-8 gnat-8-doc -BRIG gccbrig-8 libhsail-rt0 -C gcc-8 gcc-8-doc -C++ g++-8 libstdc++6 libstdc++6-8-doc -D gdc-8 -Fortran 95 gfortran-8 libgfortran3 gfortran-8-doc -Go gccgo-8 libgo0 -Objective C gobjc-8 libobjc2 -Objective C++ gobjc++-8 - -For some language run-time libraries, Debian provides source files, -development files, debugging symbols and libraries containing position- -independent code in separate packages: - -Language Sources Development Debugging Position-Independent ------------------------------------------------------------------------------- -C++ libstdc++6-8-dbg libstdc++6-8-pic -D libphobos-8-dev - -Additional packages include: - -All languages: -libgcc1, libgcc2, libgcc4 GCC intrinsics (platform-dependent) -gcc-8-base Base files common to all compilers -gcc-8-soft-float Software floating point (ARM only) -gcc-8-source The sources with patches - -Ada: -libgnatvsn-dev, libgnatvsn8 GNAT version library - -C: -cpp-8, cpp-8-doc GNU C Preprocessor -libssp0-dev, libssp0 GCC stack smashing protection library -libquadmath0 Math routines for the __float128 type -fixincludes Fix non-ANSI header files - -C, C++ and Fortran 95: -libgomp1-dev, libgomp1 GCC OpenMP (GOMP) support library -libitm1-dev, libitm1 GNU Transactional Memory Library - -Biarch support: On some 64-bit platforms which can also run 32-bit code, -Debian provides additional packages containing 32-bit versions of some -libraries. These packages have names beginning with 'lib32' instead of -'lib', for example lib32stdc++6. Similarly, on some 32-bit platforms which -can also run 64-bit code, Debian provides additional packages with names -beginning with 'lib64' instead of 'lib'. These packages contain 64-bit -versions of the libraries. (At this time, not all platforms and not all -libraries support biarch.) The license terms for these lib32 or lib64 -packages are identical to the ones for the lib packages. - - -COPYRIGHT STATEMENTS AND LICENSING TERMS - - -GCC is Copyright (C) 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994, -1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, -2008, 2009, 2010, 2011, 2012, 2013, 2014 Free Software Foundation, Inc. - -GCC 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 3, or (at your option) any later -version. - -GCC 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. - -Files that have exception clauses are licensed under the terms of the -GNU General Public License; either version 3, or (at your option) any -later version. - -On Debian GNU/Linux systems, the complete text of the GNU General -Public License is in `/usr/share/common-licenses/GPL', version 3 of this -license in `/usr/share/common-licenses/GPL-3'. - -The following runtime libraries are licensed under the terms of the -GNU General Public License (v3 or later) with version 3.1 of the GCC -Runtime Library Exception (included in this file): - - - libgcc (libgcc/, gcc/libgcc2.[ch], gcc/unwind*, gcc/gthr*, - gcc/coretypes.h, gcc/crtstuff.c, gcc/defaults.h, gcc/dwarf2.h, - gcc/emults.c, gcc/gbl-ctors.h, gcc/gcov-io.h, gcc/libgcov.c, - gcc/tsystem.h, gcc/typeclass.h). - - libatomic - - libdecnumber - - libgomp - - libitm - - libssp - - libstdc++-v3 - - libobjc - - libgfortran - - The libgnat-8 Ada support library and libgnatvsn library. - - Various config files in gcc/config/ used in runtime libraries. - - libvtv - -The libbacktrace library is licensed under the following terms: - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - (1) Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - (2) Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - (3) The name of the author may not be used to - endorse or promote products derived from this software without - specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR -IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, -INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING -IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. - - -The libsanitizer libraries (libasan, liblsan, libtsan, libubsan) are -licensed under the following terms: - -Copyright (c) 2009-2014 by the LLVM contributors. - -All rights reserved. - -Developed by: - - LLVM Team - - University of Illinois at Urbana-Champaign - - http://llvm.org - -Permission is hereby granted, free of charge, to any person obtaining a copy of -this software and associated documentation files (the "Software"), to deal with -the Software without restriction, including without limitation the rights to -use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies -of the Software, and to permit persons to whom the Software is furnished to do -so, subject to the following conditions: - - * Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimers. - - * Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimers in the - documentation and/or other materials provided with the distribution. - - * Neither the names of the LLVM Team, University of Illinois at - Urbana-Champaign, nor the names of its contributors may be used to - endorse or promote products derived from this Software without specific - prior written permission. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS -FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -CONTRIBUTORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS WITH THE -SOFTWARE. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - - -The libffi library is licensed under the following terms: - - libffi - Copyright (c) 1996-2003 Red Hat, Inc. - - Permission is hereby granted, free of charge, to any person obtaining - a copy of this software and associated documentation files (the - ``Software''), to deal in the Software without restriction, including - without limitation the rights to use, copy, modify, merge, publish, - distribute, sublicense, and/or sell copies of the Software, and to - permit persons to whom the Software is furnished to do so, subject to - the following conditions: - - The above copyright notice and this permission notice shall be included - in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED ``AS IS'', WITHOUT WARRANTY OF ANY KIND, EXPRESS - OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. - IN NO EVENT SHALL CYGNUS SOLUTIONS BE LIABLE FOR ANY CLAIM, DAMAGES OR - OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, - ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR - OTHER DEALINGS IN THE SOFTWARE. - - -The documentation is licensed under the GNU Free Documentation License (v1.2). -On Debian GNU/Linux systems, the complete text of this license is in -`/usr/share/common-licenses/GFDL-1.2'. - - -GCC RUNTIME LIBRARY EXCEPTION - -Version 3.1, 31 March 2009 - -Copyright (C) 2009 Free Software Foundation, Inc. - -Everyone is permitted to copy and distribute verbatim copies of this -license document, but changing it is not allowed. - -This GCC Runtime Library Exception ("Exception") is an additional -permission under section 7 of the GNU General Public License, version -3 ("GPLv3"). It applies to a given file (the "Runtime Library") that -bears a notice placed by the copyright holder of the file stating that -the file is governed by GPLv3 along with this Exception. - -When you use GCC to compile a program, GCC may combine portions of -certain GCC header files and runtime libraries with the compiled -program. The purpose of this Exception is to allow compilation of -non-GPL (including proprietary) programs to use, in this way, the -header files and runtime libraries covered by this Exception. - -0. Definitions. - -A file is an "Independent Module" if it either requires the Runtime -Library for execution after a Compilation Process, or makes use of an -interface provided by the Runtime Library, but is not otherwise based -on the Runtime Library. - -"GCC" means a version of the GNU Compiler Collection, with or without -modifications, governed by version 3 (or a specified later version) of -the GNU General Public License (GPL) with the option of using any -subsequent versions published by the FSF. - -"GPL-compatible Software" is software whose conditions of propagation, -modification and use would permit combination with GCC in accord with -the license of GCC. - -"Target Code" refers to output from any compiler for a real or virtual -target processor architecture, in executable form or suitable for -input to an assembler, loader, linker and/or execution -phase. Notwithstanding that, Target Code does not include data in any -format that is used as a compiler intermediate representation, or used -for producing a compiler intermediate representation. - -The "Compilation Process" transforms code entirely represented in -non-intermediate languages designed for human-written code, and/or in -Java Virtual Machine byte code, into Target Code. Thus, for example, -use of source code generators and preprocessors need not be considered -part of the Compilation Process, since the Compilation Process can be -understood as starting with the output of the generators or -preprocessors. - -A Compilation Process is "Eligible" if it is done using GCC, alone or -with other GPL-compatible software, or if it is done without using any -work based on GCC. For example, using non-GPL-compatible Software to -optimize any GCC intermediate representations would not qualify as an -Eligible Compilation Process. - -1. Grant of Additional Permission. - -You have permission to propagate a work of Target Code formed by -combining the Runtime Library with Independent Modules, even if such -propagation would otherwise violate the terms of GPLv3, provided that -all Target Code was generated by Eligible Compilation Processes. You -may then convey such a combination under terms of your choice, -consistent with the licensing of the Independent Modules. - -2. No Weakening of GCC Copyleft. - -The availability of this Exception does not imply any general -presumption that third-party software is unaffected by the copyleft -requirements of the license of GCC. - - -libquadmath/*.[hc]: - - Copyright (C) 2010 Free Software Foundation, Inc. - Written by Francois-Xavier Coudert - Written by Tobias Burnus - -This file is part of the libiberty library. -Libiberty is free software; you can redistribute it and/or -modify it under the terms of the GNU Library General Public -License as published by the Free Software Foundation; either -version 2 of the License, or (at your option) any later version. - -Libiberty 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 -Library General Public License for more details. - -libquadmath/math: - -atanq.c, expm1q.c, j0q.c, j1q.c, log1pq.c, logq.c: - Copyright 2001 by Stephen L. Moshier - - This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - - This library 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 - Lesser General Public License for more details. - -coshq.c, erfq.c, jnq.c, lgammaq.c, powq.c, roundq.c: - Changes for 128-bit __float128 are - Copyright (C) 2001 Stephen L. Moshier - and are incorporated herein by permission of the author. The author - reserves the right to distribute this material elsewhere under different - copying permissions. These modifications are distributed here under - the following terms: - - This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - - This library 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 - Lesser General Public License for more details. - -ldexpq.c: - * Conversion to long double by Ulrich Drepper, - * Cygnus Support, drepper@cygnus.com. - -cosq_kernel.c, expq.c, sincos_table.c, sincosq.c, sincosq_kernel.c, -sinq_kernel.c, truncq.c: - Copyright (C) 1997, 1999 Free Software Foundation, Inc. - - The GNU C Library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - - The GNU C Library 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 - Lesser General Public License for more details. - -isinfq.c: - * Written by J.T. Conklin . - * Change for long double by Jakub Jelinek - * Public domain. - -llroundq.c, lroundq.c, tgammaq.c: - Copyright (C) 1997, 1999, 2002, 2004 Free Software Foundation, Inc. - This file is part of the GNU C Library. - Contributed by Ulrich Drepper , 1997 and - Jakub Jelinek , 1999. - - The GNU C Library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - - The GNU C Library 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 - Lesser General Public License for more details. - -log10q.c: - Cephes Math Library Release 2.2: January, 1991 - Copyright 1984, 1991 by Stephen L. Moshier - Adapted for glibc November, 2001 - - This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - - This library 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 - Lesser General Public License for more details. - -remaining files: - - * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved. - * - * Developed at SunPro, a Sun Microsystems, Inc. business. - * Permission to use, copy, modify, and distribute this - * software is freely granted, provided that this notice - * is preserved. - - -gcc/go/gofrontend, libgo: - -Copyright (c) 2009 The Go Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - -libmpx: - Copyright (C) 2009-2014, Intel Corporation - All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - * Neither the name of Intel Corporation nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT - HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, - INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, - BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS - OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED - AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY - WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - POSSIBILITY OF SUCH DAMAGE. - - -D: -gdc-8 GNU D Compiler -libphobos-8-dev D standard runtime library - -The D source package is made up of the following components. - -The D front-end for GCC: - - d/* - -Copyright (C) 2004-2007 David Friedman -Modified by Vincenzo Ampolo, Michael Parrot, Iain Buclaw, (C) 2009, 2010 - -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. - -On Debian GNU/Linux systems, the complete text of the GNU General -Public License is in `/usr/share/common-licenses/GPL', version 2 of this -license in `/usr/share/common-licenses/GPL-2'. - - -The DMD Compiler implementation of the D programming language: - - d/dmd/* - -Copyright (c) 1999-2010 by Digital Mars -All Rights Reserved -written by Walter Bright -http://www.digitalmars.com -License for redistribution is by either the Artistic License or -the GNU General Public License (v1). - -On Debian GNU/Linux systems, the complete text of the GNU General -Public License is in `/usr/share/common-licenses/GPL', the Artistic -license in `/usr/share/common-licenses/Artistic'. - - -The Zlib data compression library: - - d/phobos/etc/c/zlib/* - - (C) 1995-2004 Jean-loup Gailly and Mark Adler - - This software is provided 'as-is', without any express or implied - warranty. In no event will the authors be held liable for any damages - arising from the use of this software. - - Permission is granted to anyone to use this software for any purpose, - including commercial applications, and to alter it and redistribute it - freely, subject to the following restrictions: - - 1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. - 2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. - 3. This notice may not be removed or altered from any source distribution. - - -The Phobos standard runtime library: - - d/phobos/* - -Unless otherwise marked within the file, each file in the source -is under the following licenses: - -Copyright (C) 2004-2005 by Digital Mars, www.digitalmars.com -Written by Walter Bright - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, in both source and binary form, subject to the following -restrictions: - - o The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. - o Altered source versions must be plainly marked as such, and must not - be misrepresented as being the original software. - o This notice may not be removed or altered from any source - distribution. - -By plainly marking modifications, something along the lines of adding to each -file that has been changed a "Modified by Foo Bar" line -underneath the "Written by" line would be adequate. - -The libhsail-rt library is licensed under the following terms: - - Copyright (C) 2015-2017 Free Software Foundation, Inc. - Contributed by Pekka Jaaskelainen - for General Processor Tech. - - Permission is hereby granted, free of charge, to any person obtaining a - copy of this software and associated documentation files - (the "Software"), to deal in the Software without restriction, including - without limitation the rights to use, copy, modify, merge, publish, - distribute, sublicense, and/or sell copies of the Software, and to - permit persons to whom the Software is furnished to do so, subject to - the following conditions: - - The above copyright notice and this permission notice shall be included - in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS - OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. - IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, - DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR - OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE - USE OR OTHER DEALINGS IN THE SOFTWARE. - -libhsail-rt/rt/fp16.c is licensed under the following terms: - - Copyright (C) 2008-2017 Free Software Foundation, Inc. - Contributed by CodeSourcery. - - This file 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 3, or (at your option) any - later version. - - This file 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. - - Under Section 7 of GPL version 3, you are granted additional - permissions described in the GCC Runtime Library Exception, version - 3.1, as published by the Free Software Foundation. - - You should have received a copy of the GNU General Public License and - a copy of the GCC Runtime Library Exception along with this program; - see the files COPYING3 and COPYING.RUNTIME respectively. If not, see - . - -newlib-nvptx-20yymmdd/: - -Upstream Authors: -newlib@sources.redhat.com -Jeff Johnston -Tom Fitzsimmons - -The newlib subdirectory is a collection of software from several sources. -Each file may have its own copyright/license that is embedded in the source -file. - -This list documents those licenses which are more restrictive than -a BSD-like license or require the copyright notice -to be duplicated in documentation and/or other materials associated with -the distribution. Certain licenses documented here only apply to -specific targets. Certain clauses only apply if you are building the -code as part of your binary. - -Note that this list may omit certain licenses that -only pertain to the copying/modifying of the individual source code. -If you are distributing the source code, then you do not need to -worry about these omitted licenses, so long as you do not modify the -copyright information already in place. - -Parts of this work are licensed under the terms of the GNU General -Public License. On Debian systems, the complete text of this license -can be found in /usr/share/common-licenses/GPL. - -Parts of this work are licensed under the terms of the GNU Library -General Public License. On Debian systems, the complete text of this -license be found in /usr/share/common-licenses/LGPL. - -(1) University of California, Berkeley - -[1a] - -Copyright (c) 1990 The Regents of the University of California. -All rights reserved. - -Redistribution and use in source and binary forms are permitted -provided that the above copyright notice and this paragraph are -duplicated in all such forms and that any documentation, -and other materials related to such distribution and use -acknowledge that the software was developed -by the University of California, Berkeley. The name of the -University may not be used to endorse or promote products derived -from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR -IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. - -[1b] - -Copyright (c) 1990 The Regents of the University of California. -All rights reserved. - -Redistribution and use in source and binary forms are permitted -provided that the above copyright notice and this paragraph are -duplicated in all such forms and that any documentation, -advertising materials, and other materials related to such -distribution and use acknowledge that the software was developed -by the University of California, Berkeley. The name of the -University may not be used to endorse or promote products derived -from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR -IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. - -[1c] - -Copyright (c) 1981, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 -The Regents of the University of California. -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. -3. All advertising materials mentioning features or use of this software - must display the following acknowledgement: - This product includes software developed by the University of - California, Berkeley and its contributors. -4. Neither the name of the University nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS -OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY -OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF -SUCH DAMAGE. - -[1d] - -Copyright (c) 1988, 1990, 1993 Regents of the University of California. -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. -3. Neither the name of the University nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS -OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY -OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF -SUCH DAMAGE. - -[1e] - -Copyright (c) 1982, 1986, 1989, 1991, 1993, 1994 -The Regents of the University of California. All rights reserved. -(c) UNIX System Laboratories, Inc. -All or some portions of this file are derived from material licensed -to the University of California by American Telephone and Telegraph -Co. or Unix System Laboratories, Inc. and are reproduced herein with -the permission of UNIX System Laboratories, Inc. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. -3. All advertising materials mentioning features or use of this software - must display the following acknowledgement: - This product includes software developed by the University of - California, Berkeley and its contributors. -4. Neither the name of the University nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS -OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY -OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF -SUCH DAMAGE. - -[1f] - -Copyright (c) 1987, 1988, 2000 Regents of the University of California. -All rights reserved. - -Redistribution and use in source and binary forms are permitted -provided that: (1) source distributions retain this entire copyright -notice and comment, and (2) distributions including binaries display -the following acknowledgement: ``This product includes software -developed by the University of California, Berkeley and its contributors'' -in the documentation or other materials provided with the distribution -and in all advertising materials mentioning features or use of this -software. Neither the name of the University nor the names of its -contributors may be used to endorse or promote products derived -from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR -IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. - -------------------------------------------------------------- - Please note that in some of the above alternate licenses, there is a - statement regarding that acknowledgement must be made in any - advertising materials for products using the code. This restriction - no longer applies due to the following license change: - - ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change - - In some cases the defunct clause has been removed in modified newlib code and - in some cases, the clause has been left as-is. -------------------------------------------------------------- - -(2) Cygwin (cygwin targets only) - -Copyright 2001 Red Hat, Inc. - -This software is a copyrighted work licensed under the terms of the -Cygwin license. Please consult the file "CYGWIN_LICENSE" for -details. - -(3) David M. Gay at AT&T - -The author of this software is David M. Gay. - -Copyright (c) 1991 by AT&T. - -Permission to use, copy, modify, and distribute this software for any -purpose without fee is hereby granted, provided that this entire notice -is included in all copies of any software which is or includes a copy -or modification of this software and in all copies of the supporting -documentation for such software. - -THIS SOFTWARE IS BEING PROVIDED "AS IS", WITHOUT ANY EXPRESS OR IMPLIED -WARRANTY. IN PARTICULAR, NEITHER THE AUTHOR NOR AT&T MAKES ANY -REPRESENTATION OR WARRANTY OF ANY KIND CONCERNING THE MERCHANTABILITY -OF THIS SOFTWARE OR ITS FITNESS FOR ANY PARTICULAR PURPOSE. - -(4) Advanced Micro Devices - -Copyright 1989, 1990 Advanced Micro Devices, Inc. - -This software is the property of Advanced Micro Devices, Inc (AMD) which -specifically grants the user the right to modify, use and distribute this -software provided this notice is not removed or altered. All other rights -are reserved by AMD. - -AMD MAKES NO WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, WITH REGARD TO THIS -SOFTWARE. IN NO EVENT SHALL AMD BE LIABLE FOR INCIDENTAL OR CONSEQUENTIAL -DAMAGES IN CONNECTION WITH OR ARISING FROM THE FURNISHING, PERFORMANCE, OR -USE OF THIS SOFTWARE. - -So that all may benefit from your experience, please report any problems -or suggestions about this software to the 29K Technical Support Center at -800-29-29-AMD (800-292-9263) in the USA, or 0800-89-1131 in the UK, or -0031-11-1129 in Japan, toll free. The direct dial number is 512-462-4118. - -Advanced Micro Devices, Inc. -29K Support Products -Mail Stop 573 -5900 E. Ben White Blvd. -Austin, TX 78741 -800-292-9263 - -(5) C.W. Sandmann - -Copyright (C) 1993 C.W. Sandmann - -This file may be freely distributed as long as the author's name remains. - -(6) Eric Backus - -(C) Copyright 1992 Eric Backus - -This software may be used freely so long as this copyright notice is -left intact. There is no warrantee on this software. - -(7) Sun Microsystems - -Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved. - -Developed at SunPro, a Sun Microsystems, Inc. business. -Permission to use, copy, modify, and distribute this -software is freely granted, provided that this notice -is preserved. - -(8) Hewlett Packard - -(c) Copyright 1986 HEWLETT-PACKARD COMPANY - -To anyone who acknowledges that this file is provided "AS IS" -without any express or implied warranty: - permission to use, copy, modify, and distribute this file -for any purpose is hereby granted without fee, provided that -the above copyright notice and this notice appears in all -copies, and that the name of Hewlett-Packard Company not be -used in advertising or publicity pertaining to distribution -of the software without specific, written prior permission. -Hewlett-Packard Company makes no representations about the -suitability of this software for any purpose. - -(9) Hans-Peter Nilsson - -Copyright (C) 2001 Hans-Peter Nilsson - -Permission to use, copy, modify, and distribute this software is -freely granted, provided that the above copyright notice, this notice -and the following disclaimer are preserved with no changes. - -THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR -IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE. - -(10) Stephane Carrez (m68hc11-elf/m68hc12-elf targets only) - -Copyright (C) 1999, 2000, 2001, 2002 Stephane Carrez (stcarrez@nerim.fr) - -The authors hereby grant permission to use, copy, modify, distribute, -and license this software and its documentation for any purpose, provided -that existing copyright notices are retained in all copies and that this -notice is included verbatim in any distributions. No written agreement, -license, or royalty fee is required for any of the authorized uses. -Modifications to this software may be copyrighted by their authors -and need not follow the licensing terms described here, provided that -the new terms are clearly indicated on the first page of each file where -they apply. - -(11) Christopher G. Demetriou - -Copyright (c) 2001 Christopher G. Demetriou -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. -3. The name of the author may not be used to endorse or promote products - derived from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR -IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES -OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. -IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF -THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -(12) SuperH, Inc. - -Copyright 2002 SuperH, Inc. All rights reserved - -This software is the property of SuperH, Inc (SuperH) which specifically -grants the user the right to modify, use and distribute this software -provided this notice is not removed or altered. All other rights are -reserved by SuperH. - -SUPERH MAKES NO WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, WITH REGARD TO -THIS SOFTWARE. IN NO EVENT SHALL SUPERH BE LIABLE FOR INDIRECT, SPECIAL, -INCIDENTAL OR CONSEQUENTIAL DAMAGES IN CONNECTION WITH OR ARISING FROM -THE FURNISHING, PERFORMANCE, OR USE OF THIS SOFTWARE. - -So that all may benefit from your experience, please report any problems -or suggestions about this software to the SuperH Support Center via -e-mail at softwaresupport@superh.com . - -SuperH, Inc. -405 River Oaks Parkway -San Jose -CA 95134 -USA - -(13) Royal Institute of Technology - -Copyright (c) 1999 Kungliga Tekniska Hgskolan -(Royal Institute of Technology, Stockholm, Sweden). -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - -3. Neither the name of KTH nor the names of its contributors may be - used to endorse or promote products derived from this software without - specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY KTH AND ITS CONTRIBUTORS ``AS IS'' AND ANY -EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL KTH OR ITS CONTRIBUTORS BE -LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR -BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, -WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR -OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF -ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -(14) Alexey Zelkin - -Copyright (c) 2000, 2001 Alexey Zelkin -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS -OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY -OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF -SUCH DAMAGE. - -(15) Andrey A. Chernov - -Copyright (C) 1997 by Andrey A. Chernov, Moscow, Russia. -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS -OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY -OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF -SUCH DAMAGE. - -(16) FreeBSD - -Copyright (c) 1997-2002 FreeBSD Project. -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS -OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY -OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF -SUCH DAMAGE. - -(17) S. L. Moshier - -Author: S. L. Moshier. - -Copyright (c) 1984,2000 S.L. Moshier - -Permission to use, copy, modify, and distribute this software for any -purpose without fee is hereby granted, provided that this entire notice -is included in all copies of any software which is or includes a copy -or modification of this software and in all copies of the supporting -documentation for such software. - -THIS SOFTWARE IS BEING PROVIDED "AS IS", WITHOUT ANY EXPRESS OR IMPLIED -WARRANTY. IN PARTICULAR, THE AUTHOR MAKES NO REPRESENTATION -OR WARRANTY OF ANY KIND CONCERNING THE MERCHANTABILITY OF THIS -SOFTWARE OR ITS FITNESS FOR ANY PARTICULAR PURPOSE. - -(18) Citrus Project - -Copyright (c)1999 Citrus Project, -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS -OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY -OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF -SUCH DAMAGE. - -(19) Todd C. Miller - -Copyright (c) 1998 Todd C. Miller -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. -3. The name of the author may not be used to endorse or promote products - derived from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, -INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY -AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL -THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, -EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, -PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; -OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, -WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR -OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF -ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -(20) DJ Delorie (i386) - -Copyright (C) 1991 DJ Delorie -All rights reserved. - -Redistribution and use in source and binary forms is permitted -provided that the above copyright notice and following paragraph are -duplicated in all such forms. - -This file is distributed WITHOUT ANY WARRANTY; without even the implied -warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. - -(21) Free Software Foundation LGPL License (*-linux* targets only) - - Copyright (C) 1990-1999, 2000, 2001 - Free Software Foundation, Inc. - This file is part of the GNU C Library. - Contributed by Mark Kettenis , 1997. - - The GNU C Library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - - The GNU C Library 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 - Lesser General Public License for more details. - - You should have received a copy of the GNU Lesser General Public - License along with the GNU C Library; if not, write to the Free - Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA - 02110-1301 USA - -(22) Xavier Leroy LGPL License (i[3456]86-*-linux* targets only) - -Copyright (C) 1996 Xavier Leroy (Xavier.Leroy@inria.fr) - -This program is free software; you can redistribute it and/or -modify it under the terms of the GNU Library General Public License -as published by the Free Software Foundation; either version 2 -of the License, or (at your option) any later version. - -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 Library General Public License for more details. - -(23) Intel (i960) - -Copyright (c) 1993 Intel Corporation - -Intel hereby grants you permission to copy, modify, and distribute this -software and its documentation. Intel grants this permission provided -that the above copyright notice appears in all copies and that both the -copyright notice and this permission notice appear in supporting -documentation. In addition, Intel grants this permission provided that -you prominently mark as "not part of the original" any modifications -made to this software or documentation, and that the name of Intel -Corporation not be used in advertising or publicity pertaining to -distribution of the software or the documentation without specific, -written prior permission. - -Intel Corporation provides this AS IS, WITHOUT ANY WARRANTY, EXPRESS OR -IMPLIED, INCLUDING, WITHOUT LIMITATION, ANY WARRANTY OF MERCHANTABILITY -OR FITNESS FOR A PARTICULAR PURPOSE. Intel makes no guarantee or -representations regarding the use of, or the results of the use of, -the software and documentation in terms of correctness, accuracy, -reliability, currentness, or otherwise; and you rely on the software, -documentation and results solely at your own risk. - -IN NO EVENT SHALL INTEL BE LIABLE FOR ANY LOSS OF USE, LOSS OF BUSINESS, -LOSS OF PROFITS, INDIRECT, INCIDENTAL, SPECIAL OR CONSEQUENTIAL DAMAGES -OF ANY KIND. IN NO EVENT SHALL INTEL'S TOTAL LIABILITY EXCEED THE SUM -PAID TO INTEL FOR THE PRODUCT LICENSED HEREUNDER. - -(24) Hewlett-Packard (hppa targets only) - -(c) Copyright 1986 HEWLETT-PACKARD COMPANY - -To anyone who acknowledges that this file is provided "AS IS" -without any express or implied warranty: - permission to use, copy, modify, and distribute this file -for any purpose is hereby granted without fee, provided that -the above copyright notice and this notice appears in all -copies, and that the name of Hewlett-Packard Company not be -used in advertising or publicity pertaining to distribution -of the software without specific, written prior permission. -Hewlett-Packard Company makes no representations about the -suitability of this software for any purpose. - -(25) Henry Spencer (only *-linux targets) - -Copyright 1992, 1993, 1994 Henry Spencer. All rights reserved. -This software is not subject to any license of the American Telephone -and Telegraph Company or of the Regents of the University of California. - -Permission is granted to anyone to use this software for any purpose on -any computer system, and to alter it and redistribute it, subject -to the following restrictions: - -1. The author is not responsible for the consequences of use of this - software, no matter how awful, even if they arise from flaws in it. - -2. The origin of this software must not be misrepresented, either by - explicit claim or by omission. Since few users ever read sources, - credits must appear in the documentation. - -3. Altered versions must be plainly marked as such, and must not be - misrepresented as being the original software. Since few users - ever read sources, credits must appear in the documentation. - -4. This notice may not be removed or altered. - -(26) Mike Barcroft - -Copyright (c) 2001 Mike Barcroft -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS -OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY -OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF -SUCH DAMAGE. - -(27) Konstantin Chuguev (--enable-newlib-iconv) - -Copyright (c) 1999, 2000 - Konstantin Chuguev. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS -OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY -OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF -SUCH DAMAGE. - - iconv (Charset Conversion Library) v2.0 - -(27) Artem Bityuckiy (--enable-newlib-iconv) - -Copyright (c) 2003, Artem B. Bityuckiy, SoftMine Corporation. -Rights transferred to Franklin Electronic Publishers. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS -OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY -OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF -SUCH DAMAGE. - -(28) Red Hat Incorporated - -Unless otherwise stated in each remaining newlib file, the remaining -files in the newlib subdirectory default to the following copyright. -It should be noted that Red Hat Incorporated now owns copyrights -belonging to Cygnus Solutions and Cygnus Support. - -Copyright (c) 1994, 1997, 2001, 2002, 2003, 2004 Red Hat Incorporated. -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - - The name of Red Hat Incorporated may not be used to endorse - or promote products derived from this software without specific - prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL RED HAT INCORPORATED BE LIABLE FOR ANY -DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND -ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - ----------------------------------------- -gpgv version 2.2.12-1+deb10u1 - - -Copyright: - -Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ -Upstream-Name: GnuPG - The GNU Privacy Guard (modern version) -Upstream-Contact: GnuPG development mailing list -Source: https://gnupg.org/download/ - -Files: * -Copyright: 1992, 1995-2016, Free Software Foundation, Inc -License: GPL-3+ - -Files: agent/command.c - agent/command-ssh.c - agent/gpg-agent.c - common/homedir.c - common/sysutils.c - g10/mainproc.c -Copyright: 1998-2007, 2009, 2012, Free Software Foundation, Inc - 2013, Werner Koch -License: GPL-3+ - -Files: autogen.sh -Copyright: 2003, g10 Code GmbH -License: permissive - -Files: common/gc-opt-flags.h - common/i18n.h - tools/clean-sat.c - tools/no-libgcrypt.c -Copyright: 1998-2001, 2003, 2004, 2006, 2007 Free Software Foundation, Inc -License: permissive - -Files: common/localename.c -Copyright: 1985, 1989-1993, 1995-2003, 2007, 2008 Free Software Foundation, Inc. -License: LGPL-2.1+ - -Files: dirmngr/dns.c - dirmngr/dns.h -Copyright: 2008-2010, 2012-2016 William Ahern -License: Expat - -Files: doc/yat2m.c - scd/app-geldkarte.c -Copyright: 2004, 2005, g10 Code GmbH - 2006, 2008, 2009, 2011, Free Software Foundation, Inc -License: GPL-3+ - -Files: scd/ccid-driver.h - scd/ccid-driver.c -Copyright: 2003-2007, Free Software Foundation, Inc -License: GPL-3+ or BSD-3-clause - -Files: tools/rfc822parse.c - tools/rfc822parse.h -Copyright: 1999-2000, Werner Koch, Duesseldorf - 2003-2004, g10 Code GmbH -License: LGPL-3+ - -Files: tools/sockprox.c -Copyright: 2007, g10 Code GmbH -License: GPL-3+ - -Files: doc/OpenPGP -Copyright: 1998-2013 Free Software Foundation, Inc. - 1997, 1998, 2013 Werner Koch - 1998 The Internet Society -License: RFC-Reference - -Files: tests/gpgscm/* -Copyright: 2000, Dimitrios Souflis - 2016, Justus Winter, Werner Koch -License: TinySCHEME - -Files: debian/* -Copyright: 1998-2018 Debian GnuPG packagers, including - Eric Dorland - Daniel Kahn Gillmor - NIIBE Yutaka -License: GPL-3+ - -Files: debian/org.gnupg.scdaemon.metainfo.xml -Copyright: 2017 Daniel Kahn Gillmor -Comment: This file is licensed permissively for the sake of AppStream -License: CC0-1.0 - -License: TinySCHEME - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are - met: - . - Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. - . - Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - . - Neither the name of Dimitrios Souflis nor the names of the - contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - . - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR - CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, - PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR - PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF - LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING - NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS - SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - -License: permissive - This file is free software; as a special exception the author gives - unlimited permission to copy and/or distribute it, with or without - modifications, as long as this notice is preserved. - . - This file is distributed in the hope that it will be useful, but - WITHOUT ANY WARRANTY, to the extent permitted by law; without even - the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR - PURPOSE. - -License: RFC-Reference - doc/OpenPGP merely cites and references IETF Draft - draft-ietf-openpgp-formats-07.txt. This is believed to be fair use; - but if not, it's covered by the source document's license under - the 'comment on' clause. The license statement follows. - . - This document and translations of it may be copied and furnished to - others, and derivative works that comment on or otherwise explain it - or assist in its implementation may be prepared, copied, published - and distributed, in whole or in part, without restriction of any - kind, provided that the above copyright notice and this paragraph - are included on all such copies and derivative works. However, this - document itself may not be modified in any way, such as by removing - the copyright notice or references to the Internet Society or other - Internet organizations, except as needed for the purpose of - developing Internet standards in which case the procedures for - copyrights defined in the Internet Standards process must be - followed, or as required to translate it into languages other than - English. - . - The limited permissions granted above are perpetual and will not be - revoked by the Internet Society or its successors or assigns. - - -License: GPL-3+ - GnuPG 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 3 of the License, or - (at your option) any later version. - . - GnuPG 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. - . - You should have received a copy of the GNU General Public License - along with this program; if not, see . - . - On Debian systems, the full text of the GNU General Public - License version 3 can be found in the file - `/usr/share/common-licenses/GPL-3'. - -License: LGPL-3+ - This program is free software; you can redistribute it and/or modify it - under the terms of the GNU Lesser General Public License as - published by the Free Software Foundation; either version 3 of - the License, or (at your option) any later version. - . - 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 - Lesser General Public License for more details. - . - You should have received a copy of the GNU Lesser General Public - License along with this program; if not, see . - . - On Debian systems, the full text of the GNU Lesser General Public - License version 3 can be found in the file - `/usr/share/common-licenses/LGPL-3'. - -License: LGPL-2.1+ - This program is free software; you can redistribute it and/or modify it - under the terms of the GNU Lesser General Public License as - published by the Free Software Foundation; either version 2.1 of - the License, or (at your option) any later version. - . - 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 - Lesser General Public License for more details. - . - You should have received a copy of the GNU Lesser General Public - License along with this program; if not, see . - . - On Debian systems, the full text of the GNU Lesser General Public - License version 2.1 can be found in the file - `/usr/share/common-licenses/LGPL-2.1'. - -License: BSD-3-clause - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - 1. Redistributions of source code must retain the above copyright - notice, and the entire permission notice in its entirety, - including the disclaimer of warranties. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - 3. The name of the author may not be used to endorse or promote - products derived from this software without specific prior - written permission. - . - THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, - INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR - SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, - STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED - OF THE POSSIBILITY OF SUCH DAMAGE. - -License: Expat - Permission is hereby granted, free of charge, to any person obtaining a - copy of this software and associated documentation files (the - "Software"), to deal in the Software without restriction, including - without limitation the rights to use, copy, modify, merge, publish, - distribute, sublicense, and/or sell copies of the Software, and to permit - persons to whom the Software is furnished to do so, subject to the - following conditions: - . - The above copyright notice and this permission notice shall be included - in all copies or substantial portions of the Software. - . - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS - OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN - NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, - DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR - OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE - USE OR OTHER DEALINGS IN THE SOFTWARE. - -License: CC0-1.0 - To the extent possible under law, the author(s) have dedicated all - copyright and related and neighboring rights to this software to the public - domain worldwide. This software is distributed without any warranty. - . - On Debian systems, the complete text of the CC0 license, version 1.0, - can be found in /usr/share/common-licenses/CC0-1.0. - - ----------------------------------------- -grep version 3.3-1 - - -Copyright: - -Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ -Upstream-Name: grep -Upstream-Contact: bug-grep@gnu.org -Source: https://savannah.gnu.org/projects/grep - git://git.savannah.gnu.org/grep.git - -Files: * -Copyright: 1992, 1997-2002, 2004-2012 Free Software Foundation, Inc. - 2004, Stepan Kasal - 2007, Tony Abou-Assaleh - 2009-2012, Jim Meyering and Paolo Bonzini -License: GPL-3+ - -Files: debian/* -Copyright: 2005-2013 Anibal Monsalve Salazar and Santiago Ruano Rincón - 2003-2004 Ryan M. Golbeck - 2003, Jeff Bailey - 2003, Clint Adams Mon, 10 Mar 2003 02:10:32 -0500 - 2001 Robert van der Meulen - 1996-2000 Wichert Akkerman -License: GPL-3+ - -License: GPL-3+ - Copyright (C) 1992, 1997, 1998, 1999, 2000, 2001, 2002, 2004, - 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc. - . - 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 3, or (at your option) - any later version. - . - 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. - . - 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. - . - Comment: - . - On a Debian system you can find a copy of this license in - /usr/share/common-licenses/GPL-3. - - ----------------------------------------- -gzip version 1.9-3 - - -Copyright: - -This package is maintained for Debian by Bdale Garbee , and -was built from the sources found at: - - ftp://ftp.gnu.org/gnu/gzip/ - -Copyright (C) 1999, 2001-2002, 2006-2007, 2009-2010 Free Software Foundation, - Inc. -Copyright (C) 1992-1993 Jean-loup Gailly - - 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 3, or (at your option) - any later version. - - 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. - - 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. */ - -On Debian GNU/Linux systems, the complete text of the GNU General -Public License can be found in `/usr/share/common-licenses/GPL'. - - ----------------------------------------- -hostname version 3.21 - - -Copyright: - -This package was written by Peter Tobias -on Thu, 16 Jan 1997 01:00:34 +0100. - -License: - - Copyright (C) 2009 Michael Meskes - Copyright (C) 2004-2005 Graham Wilson - Copyright (C) 1997 Bernd Eckenfels - Copyright (C) 1997 Peter Tobias - Copyright (C) 1996 Free Software Foundation, Inc. - - 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 of the License. - - 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. - - 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 St, Fifth Floor, Boston, MA 02110-1301 USA - -On Debian systems, the complete text of the GNU General Public License -can be found in /usr/share/common-licenses/GPL-2 file. - - ----------------------------------------- -init-system-helpers version 1.56+nmu1 - - -Copyright: - -Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ - -Files: * -Copyright: 2013 Michael Stapelberg -License: BSD-3-clause - -Files: debian/* -Copyright: 2013 Michael Stapelberg -License: BSD-3-clause - -Files: script/service man8/service.rst -Copyright: 2006 Red Hat, Inc - 2008 Canonical Ltd -License: GPL-2+ - -Files: script/invoke-rc.d man8/invoke-rc.d.rst -Copyright: 2000,2001 Henrique de Moraes Holschuh -License: GPL-2+ - -Files: script/update-rc.d man8/update-rc.d.rst -Copyright: 1997-2005 Miquel van Smoorenburg - Members of the pkg-sysvinit project -License: GPL-2+ - -License: GPL-2+ - 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, or (at your option) - any later version. - . - 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. - . - 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. - . - On Debian systems, the complete text of the GNU General Public License - version 2 can be found in ‘/usr/share/common-licenses/GPL-2’. - -License: BSD-3-clause - Copyright © 2013 Michael Stapelberg - All rights reserved. - . - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are met: - . - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - . - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - . - * Neither the name of Michael Stapelberg nor the - names of contributors may be used to endorse or promote products - derived from this software without specific prior written permission. - . - THIS SOFTWARE IS PROVIDED BY Michael Stapelberg ''AS IS'' AND ANY - EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - DISCLAIMED. IN NO EVENT SHALL Michael Stapelberg BE LIABLE FOR ANY - DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS - SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - ----------------------------------------- -libacl1 version 2.2.53-4 - - -Copyright: - -Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ - -Files: - * -Copyright: - Copyright © 2000-2008 Silicon Graphics, Inc. - Copyright © 1999-2001,2007-2009 Andreas Gruenbacher -License: GPL-2+ - 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. - . - 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. - . - You should have received a copy of the GNU General Public License - along with this program. If not, see . -Comment: - On Debian systems, the full text of the GNU General Public License - can be found in '/usr/share/common-licenses/GPL-2'. - -Files: - exports - include/*.h - libacl/*.c - libacl/*.h - libmisc/*.c - tools/do_set.* - tools/parse.* - tools/sequence.c - tools/setfacl.c - tools/user_group.h -Copyright: - Copyright © 2001-2002 Silicon Graphics, Inc. - Copyright © 1999-2003,2007,2009,2011 Andreas Gruenbacher -License: LGPL-2+ - This program is free software: you can redistribute it and/or modify it - under the terms of the GNU Lesser General Public License as published by - the Free Software Foundation, either version 2.1 of the License, or - (at your option) any later version. - . - 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 Lesser General Public License for more details. - . - You should have received a copy of the GNU Lesser General Public License - along with this program. If not, see . -Comment: - On Debian systems, the full text of the GNU Lesser General Public License - can be found in '/usr/share/common-licenses/LGPL-2.1'. - - ----------------------------------------- -libapt-pkg5.0 version 1.8.2.1 - - -Copyright: - -Apt is copyright 1997, 1998, 1999 Jason Gunthorpe and others. -Apt is currently developed by APT Development Team . - -License: GPLv2+ - - 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. - - 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. - - 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 St, Fifth Floor, Boston, MA 02110-1301, USA. - -See /usr/share/common-licenses/GPL-2, or - for the terms of the latest version -of the GNU General Public License. - - ----------------------------------------- -libattr1 version 1:2.4.48-4 - - -Copyright: - -Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ - -Files: - * -Copyright: - Copyright © 2000-2007 Silicon Graphics, Inc. - Copyright © 2001-2003,2006-2007,2009 Andreas Gruenbacher -License: GPL-2+ - 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. - . - 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. - . - You should have received a copy of the GNU General Public License - along with this program. If not, see . -Comment: - On Debian systems, the full text of the GNU General Public License - can be found in '/usr/share/common-licenses/GPL-2'. - -Files: - include/*.h - libattr/*.c - libmisc/*.c -Copyright: - Copyright © 2001-2005 Silicon Graphics, Inc. - Copyright © 2002,2003,2006-2007,2009 Andreas Gruenbacher -License: LGPL-2+ - This program is free software: you can redistribute it and/or modify it - under the terms of the GNU Lesser General Public License as published by - the Free Software Foundation, either version 2.1 of the License, or - (at your option) any later version. - . - 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 Lesser General Public License for more details. - . - You should have received a copy of the GNU Lesser General Public License - along with this program. If not, see . -Comment: - On Debian systems, the full text of the GNU Lesser General Public License - can be found in '/usr/share/common-licenses/LGPL-2.1'. - - ----------------------------------------- -libaudit-common version 1:2.8.4-3 - - -Copyright: - -Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ -Upstream-Name: auditd -Source: https://people.redhat.com/sgrubb/audit/ - -Files: * -Copyright: 2012-2016 Steve Grubb - 2006-2012 Rik Faith -License: GPL-2 - -Files: src/libev/* -Copyright: 2007-2009 Marc Alexamder Lehmann -License: GPL-2 - -Files: lib/* -Copyright: 2005-2008 Steve Grubb -License: LGPL-2.1 - The audit daemon's library libaudit.* is released under LGPL - so that it may be linked with 3rd party software. - . - On Debian systems, refer to /usr/share/common-licenses/LGPL-2.1 - for the complete text of the GNU Lesser General Public License. - -Files: debian/* -Copyright: 2007-2011 Philipp Matthias Hahn - 2012-2016 Laurent Bigonville -License: GPL-2 - -License: GPL-2 - This package is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License version 2, - as published by the Free Software Foundation. - . - This package 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. - . - You should have received a copy of the GNU General Public License - along with this package; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA - . - On Debian systems, the complete text of the GNU General - Public License can be found in `/usr/share/common-licenses/GPL-1'. - - ----------------------------------------- -libaudit1 version 1:2.8.4-3 - - -Copyright: - -Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ -Upstream-Name: auditd -Source: https://people.redhat.com/sgrubb/audit/ - -Files: * -Copyright: 2012-2016 Steve Grubb - 2006-2012 Rik Faith -License: GPL-2 - -Files: src/libev/* -Copyright: 2007-2009 Marc Alexamder Lehmann -License: GPL-2 - -Files: lib/* -Copyright: 2005-2008 Steve Grubb -License: LGPL-2.1 - The audit daemon's library libaudit.* is released under LGPL - so that it may be linked with 3rd party software. - . - On Debian systems, refer to /usr/share/common-licenses/LGPL-2.1 - for the complete text of the GNU Lesser General Public License. - -Files: debian/* -Copyright: 2007-2011 Philipp Matthias Hahn - 2012-2016 Laurent Bigonville -License: GPL-2 - -License: GPL-2 - This package is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License version 2, - as published by the Free Software Foundation. - . - This package 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. - . - You should have received a copy of the GNU General Public License - along with this package; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA - . - On Debian systems, the complete text of the GNU General - Public License can be found in `/usr/share/common-licenses/GPL-1'. - - ----------------------------------------- -libblkid1 version 2.33.1-0.1 - - -Copyright: - -Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ -Upstream-Name: util-linux -Upstream-Contact: util-linux@vger.kernel.org -Source: https://www.kernel.org/pub/linux/utils/util-linux/ - -Files: * -Copyright: Michal Luscon - 1986 Gary S. Brown - 1990 Gordon Irlam (gordoni@cs.ua.oz.au) - 1991, 1992 Linus Torvalds - 1991-2004 Miquel van Smoorenburg - 1992 A. V. Le Blanc (LeBlanc@mcc.ac.uk) - 1992-1997 Michael K. Johnson, johnsonm@redhat.com - 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, - 2003, 2004, 2005, 2008 Theodore Ts'o - 1994 Kevin E. Martin (martin@cs.unc.edu) - 1994 Salvatore Valente - 1994,1996 Alessandro Rubini (rubini@ipvvis.unipv.it) - 1994-2005 Jeff Tranter (tranter@pobox.com) - 1995, 1999, 2000 Andries E. Brouwer - 1997-2005 Frodo Looijaard - 1998 Danek Duvall - 1999 Andreas Dilger - 1999-2002 Transmeta Corporation - 1999, 2000, 2002-2009, 2010, 2011, 2012, 2014 Red Hat, Inc. - 2000 Werner Almesberger - 2004-2006 Michael Holzt, kju -at- fqdn.org - 2005 Adrian Bunk - 2007-2014 Karel Zak - 2007, 2011 SuSE LINUX Products GmbH - 2008 Cai Qian - 2008 Hayden A. James (hayden.james@gmail.com) - 2008 James Youngman - 2008 Roy Peled, the.roy.peled -at- gmail.com - 2009 Mikhail Gusarov - 2010, 2011, 2012 Davidlohr Bueso - 2010 Jason Borden A - 2010 Hajime Taira - 2010 Masatake Yamato - 2011 IBM Corp. - 2012 Andy Lutomirski - 2012 Lennart Poettering - 2012 Sami Kerola - 2012 Cody Maloney - 2012 Werner Fink - 2013,2014 Ondrej Oprala -License: GPL-2+ - -Files: schedutils/ionice.c -Copyright: 2005 Jens Axboe -License: GPL-2 - -Files: schedutils/chrt.c - schedutils/taskset.c -Copyright: 2004 Robert Love - 2010 Karel Zak -License: GPL-2 - -Files: disk-utils/raw.c -Copyright: 1999, 2000, Red Hat Software -License: GPL-2 - -Files: sys-utils/nsenter.c -Copyright: 2012-2013 Eric Biederman -License: GPL-2 - -Files: disk-utils/mkfs.minix.c - disk-utils/mkswap.c -Copyright: 1991, 1992 Linus Torvalds -License: GPL-2 - -Files: lib/at.c - lib/blkdev.c - lib/loopdev.c - lib/sysfs.c - lib/ttyutils.c - lib/xgetpass.c - misc-utils/mcookie.c - sys-utils/setsid.c - text-utils/line.c -Copyright: n/a -License: public-domain - -Files: login-utils/vipw.c - misc-utils/cal.c - misc-utils/kill.c - misc-utils/logger.c - misc-utils/look.c - misc-utils/whereis.c - sys-utils/renice.c - term-utils/mesg.c - term-utils/script.c - term-utils/ttymsg.c - term-utils/wall.c - term-utils/write.c - text-utils/col.c - text-utils/colcrt.c - text-utils/colrm.c - text-utils/column.c - text-utils/hexdump.c - text-utils/hexdump.h - text-utils/hexdump-conv.c - text-utils/hexdump-display.c - text-utils/hexdump-parse.c - text-utils/rev.c - text-utils/ul.c -Copyright: 1980, 1983, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994 - The Regents of the University of California - 2014 Sami Kerola - 2014 Karel Zak -License: BSD-4-clause - -Files: text-utils/tailf.c -Copyright: 1996, 2003 Rickard E. Faith (faith@acm.org) -License: MIT - -Files: sys-utils/flock.c -Copyright: 2003-2005 H. Peter Anvin -License: MIT - -Files: text-utils/pg.c -Copyright: 2000-2001 Gunnar Ritter -License: BSD-2-clause - -Files: login-utils/last-deprecated.c -Copyright: 1987 Regents of the University of California -License: BSD-2-clause - -Files: login-utils/login.c -Copyright: 1980, 1987, 1988 The Regents of the University of California. - 2011 Karel Zak -License: BSD-2-clause - -Files: login-utils/logindefs.c -Copyright: 2003, 2004, 2005 Thorsten Kukuk -License: BSD-3-clause - -Files: libuuid/* - libuuid/src/* - libuuid/man/* -Copyright: 1996, 1997, 1998, 1999, 2007 Theodore Ts'o. - 1999 Andreas Dilger (adilger@enel.ucalgary.ca) -License: BSD-3-clause - -Files: lib/procutils.c - include/xalloc.h -Copyright: 2010, 2011 Davidlohr Bueso -License: LGPL-2+ - -Files: */colors.* -Copyright: 2012 Ondrej Oprala - 2012-2014 Karel Zak -License: LGPL-2+ - -Files: login-utils/setpwnam.h - login-utils/setpwnam.c -Copyright: 1994 Martin Schulze - 1994 Salvatore Valente -License: LGPL-2+ - -Files: libfdisk/* - libfdisk/src/* -Copyright: 2007-2013 Karel Zak - 2012 Davidlohr Bueso -License: LGPL-2.1+ - -Files: lib/cpuset.c - */match.* - lib/canonicalize.c - include/at.h -Copyright: 2008-2009, 2010, 2011, 2012 Karel Zak -License: LGPL-2.1+ - -Files: */mbsalign.* -Copyright: 2009-2010 Free Software Foundation, Inc. - 2010-2013 Karel Zak -License: LGPL-2.1+ - -Files: */readutmp.* -Copyright: 1992-2007, 2009-2014 Free Software Foundation, Inc. -License: GPL-3+ - -Files: */timeutils.* -Copyright: 2010 Lennart Poettering -License: LGPL-2.1+ - -Files: include/list.h -Copyright: 2008 Karel Zak - 1999-2008 by Theodore Ts'o -License: LGPL - -Files: libblkid/* - libblkid/src/* - libblkid/samples/* - libblkid/src/partitions/* - libblkid/src/superblocks/* - libblkid/src/topology/* -Copyright: 1999, 2001 Andries Brouwer - 1995, 1995, 1996, 1997, 1999, 2000, 2001, 2002, 2003, 2004 - Theodore Ts'o. - 2001 Andreas Dilger (adilger@turbolinux.com) - 2004-2008 Kay Sievers - 2008-2013 Karel Zak - 2009 Bastian Friedrich - 2009 Corentin Chary - 2009 Mike Hommey - 2009 Red Hat, Inc. - 2009-2010 Andreas Dilger - 2010 Andrew Nayenko - 2010 Jeroen Oortwijn - 2010 Jiro SEKIBA - 2011 Philipp Marek - 2012 Milan Broz - 2013 Alejandro Martinez Ruiz - 2013 Eric Sandeen - 2013 Rolf Fokkens - 2013 Zeeshan Ali (Khattak) -License: LGPL-2.1+ - -Files: include/cpuset.h - lib/randutils.c -Copyright: *unknown* -License: LGPL - -Files: misc-utils/blkid.c -Copyright: 2001 Andreas Dilger -License: LGPL - -Files: libmount/* - libmount/src/* -Copyright: 2008-2012 Karel Zak -License: LGPL-2.1+ - -Files: libmount/python/* -Copyright: 2013, Red Hat, Inc. -License: LGPL-3+ - -Files: libsmartcols/* -Copyright: 2009-2014 Karel Zak - 2014 Ondrej Oprala -License: LGPL - -Files: debian/* -Copyright: Guy Maor - Sean 'Shaleh' Perry - Adrian Bunk - LaMont Jones - 2014 Andreas Henriksson -License: GPL-2+ - - -License: public-domain - The files tagged with this license contains the following paragraphs: - . - No copyright is claimed. This code is in the public domain; do with - it what you wish. - . - Written by Karel Zak - -License: GPL-2 - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License, v2, as - published by the Free Software Foundation - . - 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. - . - 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. - . - On Debian systems, the complete text of the GNU General Public - License version 2 can be found in `/usr/share/common-licenses/GPL-2'. - -License: GPL-2+ - 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. - . - 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. - . - 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. - . - On Debian systems, the complete text of the GNU General Public - License version 2 can be found in `/usr/share/common-licenses/GPL-2'. - -License: GPL-3+ - 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 3 of the License, or - (at your option) any later version. - . - 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. - . - You should have received a copy of the GNU General Public License - along with this program. If not, see . - . - On Debian systems, the complete text of the GNU General Public - License version 3 can be found in `/usr/share/common-licenses/GPL-3'. - -License: BSD-2-clause - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - -License: BSD-3-clause - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are met: - . - 1) Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. - . - 2) Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. - . - 3) Neither the name of the ORGANIZATION nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - . - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE - LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - POSSIBILITY OF SUCH DAMAGE. - -License: BSD-4-clause - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - 3. All advertising materials mentioning features or use of this software - must display the following acknowledgement: - This product includes software developed by the University of - California, Berkeley and its contributors. - 4. Neither the name of the University nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - . - THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND - ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -License: LGPL - This file may be redistributed under the terms of the - GNU Lesser General Public License. - . - On Debian systems, the complete text of the GNU Lesser General Public - License can be found in ‘/usr/share/common-licenses/LGPL’. - -License: LGPL-2+ - This program is free software: you can redistribute it and/or modify - it under the terms of the GNU Lesser General Public License as published by - the Free Software Foundation, either version 2 of the License, or - (at your option) any later version. - . - 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 Lesser General Public License for more details. - . - You should have received a copy of the GNU Lesser General Public License - along with this program. If not, see . - . - The complete text of the GNU Lesser General Public License - can be found in /usr/share/common-licenses/LGPL-2 file. - -License: LGPL-2.1+ - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU Lesser General Public License as published by - the Free Software Foundation; either version 2.1, or (at your option) - any later version. - . - 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 Lesser General Public License for more details. - . - You should have received a copy of the GNU Lesser 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. - . - On Debian systems, the complete text of the GNU Lesser General Public - License version 2.1 can be found in ‘/usr/share/common-licenses/LGPL-2.1’. - -License: LGPL-3+ - This package is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 3 of the License, or (at your option) any later version. - . - This package 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 - Lesser General Public License for more details. - . - You should have received a copy of the GNU General Public License - along with this program. If not, see . - . - On Debian systems, the complete text of the GNU Lesser General - Public License can be found in "/usr/share/common-licenses/LGPL-3". - -License: MIT - Permission is hereby granted, free of charge, to any person - obtaining a copy of this software and associated documentation files - (the "Software"), to deal in the Software without restriction, - including without limitation the rights to use, copy, modify, merge, - publish, distribute, sublicense, and/or sell copies of the Software, - and to permit persons to whom the Software is furnished to do so, - subject to the following conditions: - . - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - . - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS - BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN - ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN - CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - SOFTWARE. - - - ----------------------------------------- -libbz2-1.0 version 1.0.6-9.2~deb10u1 - - -Copyright: - -Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ -Upstream-Name: bzip2 -Source: http://www.bzip.org/ - -Files: * -Copyright: 1996-2010 Julian R Seward -License: BSD-variant - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - . - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - . - 2. The origin of this software must not be misrepresented; you must - not claim that you wrote the original software. If you use this - software in a product, an acknowledgment in the product - documentation would be appreciated but is not required. - . - 3. Altered source versions must be plainly marked as such, and must - not be misrepresented as being the original software. - . - 4. The name of the author may not be used to endorse or promote - products derived from this software without specific prior written - permission. - . - THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS - OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY - DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, - WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING - NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS - SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -Files: debian/* -Copyright: 2018 Nicolas Boulenguez - 2012-2015 Santiago Ruano Rincón - 2014 Canonical Ltd. - 2004-2011 Anibal Monsalve Salazar - 1999-2002 Philippe Troin - 1997-1999 Anthony Fok -License: GPL-2 - The full text of the GNU General Public License version 2 - can be found in /usr/share/common-licenses/GPL-2. - - ----------------------------------------- -libc-bin version 2.28-10 - - -Copyright: - -This is the Debian prepackaged version of the GNU C Library version 2.23. - -It was put together by the GNU Libc Maintainers -from - -* Most of the GNU C library is under the following copyright: - - Copyright (C) 1991-2015 Free Software Foundation, Inc. - - The GNU C Library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - - The GNU C Library 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 - Lesser General Public License for more details. - - You should have received a copy of the GNU Lesser General Public - License along with the GNU C Library; if not, write to the Free - Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA - 02110-1301 USA - - On Debian systems, the complete text of the GNU Library - General Public License can be found in `/usr/share/common-licenses/LGPL-2.1'. - -* The utilities associated with GNU C library is under the following - copyright: - - Copyright (C) 1991-2015 Free Software Foundation, Inc. - - 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 of the License, or - (at your option) any later version. - - 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. - - 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 St, Fifth Floor, Boston, MA 02110-1301 USA. - - On Debian systems, the complete text of the GNU Library - General Public License can be found in `/usr/share/common-licenses/GPL-2'. - -* All code incorporated from 4.4 BSD is distributed under the following - license: - - Copyright (C) 1991 Regents of the University of California. - All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - 3. [This condition was removed.] - 4. Neither the name of the University nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND - ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -* The DNS resolver code, taken from BIND 4.9.5, is copyrighted both by - UC Berkeley and by Digital Equipment Corporation. The DEC portions - are under the following license: - - Portions Copyright (C) 1993 by Digital Equipment Corporation. - - Permission to use, copy, modify, and distribute this software for any - purpose with or without fee is hereby granted, provided that the above - copyright notice and this permission notice appear in all copies, and - that the name of Digital Equipment Corporation not be used in - advertising or publicity pertaining to distribution of the document or - software without specific, written prior permission. - - THE SOFTWARE IS PROVIDED ``AS IS'' AND DIGITAL EQUIPMENT CORP. - DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL - DIGITAL EQUIPMENT CORPORATION BE LIABLE FOR ANY SPECIAL, DIRECT, - INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING - FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, - NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION - WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - -* The ISC portions are under the following license: - - Portions Copyright (c) 1996-1999 by Internet Software Consortium. - - Permission to use, copy, modify, and distribute this software for any - purpose with or without fee is hereby granted, provided that the above - copyright notice and this permission notice appear in all copies. - - THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS - ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE - CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL - DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR - PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS - ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS - SOFTWARE. - -* The Sun RPC support (from rpcsrc-4.0) is covered by the following - license: - - Copyright (c) 2010, Oracle America, Inc. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are - met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials - provided with the distribution. - * Neither the name of the "Oracle America, Inc." nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS - FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE - COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, - INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, - WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING - NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -* The following CMU license covers some of the support code for Mach, - derived from Mach 3.0: - - Mach Operating System - Copyright (C) 1991,1990,1989 Carnegie Mellon University - All Rights Reserved. - - Permission to use, copy, modify and distribute this software and its - documentation is hereby granted, provided that both the copyright - notice and this permission notice appear in all copies of the - software, derivative works or modified versions, and any portions - thereof, and that both notices appear in supporting documentation. - - CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS ``AS IS'' - CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR - ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE. - - Carnegie Mellon requests users of this software to return to - - Software Distribution Coordinator - School of Computer Science - Carnegie Mellon University - Pittsburgh PA 15213-3890 - - or Software.Distribution@CS.CMU.EDU any improvements or - extensions that they make and grant Carnegie Mellon the rights to - redistribute these changes. - -* The file if_ppp.h is under the following CMU license: - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - 3. Neither the name of the University nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY CARNEGIE MELLON UNIVERSITY AND - CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, - INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF - MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE UNIVERSITY OR CONTRIBUTORS BE LIABLE FOR ANY - DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -* The following license covers the files from Intel's "Highly Optimized - Mathematical Functions for Itanium" collection: - - Intel License Agreement - - Copyright (c) 2000, Intel Corporation - - All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are - met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - - * The name of Intel Corporation may not be used to endorse or promote - products derived from this software without specific prior written - permission. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL INTEL OR - CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, - PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR - PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF - LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING - NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS - SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -* The files inet/getnameinfo.c and sysdeps/posix/getaddrinfo.c are copyright - (C) by Craig Metz and are distributed under the following license: - - /* The Inner Net License, Version 2.00 - - The author(s) grant permission for redistribution and use in source and - binary forms, with or without modification, of the software and documentation - provided that the following conditions are met: - - 0. If you receive a version of the software that is specifically labelled - as not being for redistribution (check the version message and/or README), - you are not permitted to redistribute that version of the software in any - way or form. - 1. All terms of the all other applicable copyrights and licenses must be - followed. - 2. Redistributions of source code must retain the authors' copyright - notice(s), this list of conditions, and the following disclaimer. - 3. Redistributions in binary form must reproduce the authors' copyright - notice(s), this list of conditions, and the following disclaimer in the - documentation and/or other materials provided with the distribution. - 4. [The copyright holder has authorized the removal of this clause.] - 5. Neither the name(s) of the author(s) nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY ITS AUTHORS AND CONTRIBUTORS ``AS IS'' AND ANY - EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE FOR ANY - DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON - ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS - SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - If these license terms cause you a real problem, contact the author. */ - -* The file sunrpc/des_impl.c is copyright Eric Young: - - Copyright (C) 1992 Eric Young - Collected from libdes and modified for SECURE RPC by Martin Kuck 1994 - This file is distributed under the terms of the GNU Lesser General - Public License, version 2.1 or later - see the file COPYING.LIB for details. - If you did not receive a copy of the license with this program, please - see to obtain a copy. - -* The libidn code is copyright Simon Josefsson, with portions copyright - The Internet Society, Tom Tromey and Red Hat, Inc.: - - Copyright (C) 2002, 2003, 2004, 2011 Simon Josefsson - - This file is part of GNU Libidn. - - GNU Libidn is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - - GNU Libidn 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 - Lesser General Public License for more details. - - You should have received a copy of the GNU Lesser General Public - License along with GNU Libidn; if not, see . - -* The following notice applies to portions of libidn/nfkc.c: - - This file contains functions from GLIB, including gutf8.c and - gunidecomp.c, all licensed under LGPL and copyright hold by: - - Copyright (C) 1999, 2000 Tom Tromey - Copyright 2000 Red Hat, Inc. - -* The following applies to portions of libidn/punycode.c and - libidn/punycode.h: - - This file is derived from RFC 3492bis written by Adam M. Costello. - - Disclaimer and license: Regarding this entire document or any - portion of it (including the pseudocode and C code), the author - makes no guarantees and is not responsible for any damage resulting - from its use. The author grants irrevocable permission to anyone - to use, modify, and distribute it in any way that does not diminish - the rights of anyone else to use, modify, and distribute it, - provided that redistributed derivative works do not contain - misleading author or version information. Derivative works need - not be licensed under similar terms. - - Copyright (C) The Internet Society (2003). All Rights Reserved. - - This document and translations of it may be copied and furnished to - others, and derivative works that comment on or otherwise explain it - or assist in its implementation may be prepared, copied, published - and distributed, in whole or in part, without restriction of any - kind, provided that the above copyright notice and this paragraph are - included on all such copies and derivative works. However, this - document itself may not be modified in any way, such as by removing - the copyright notice or references to the Internet Society or other - Internet organizations, except as needed for the purpose of - developing Internet standards in which case the procedures for - copyrights defined in the Internet Standards process must be - followed, or as required to translate it into languages other than - English. - - The limited permissions granted above are perpetual and will not be - revoked by the Internet Society or its successors or assigns. - - This document and the information contained herein is provided on an - "AS IS" basis and THE INTERNET SOCIETY AND THE INTERNET ENGINEERING - TASK FORCE DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING - BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION - HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF - MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. - -* The file inet/rcmd.c is under a UCB copyright and the following: - - Copyright (C) 1998 WIDE Project. - All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - 3. Neither the name of the project nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND - ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - - * The file posix/runtests.c is copyright Tom Lord: - - Copyright 1995 by Tom Lord - - All Rights Reserved - - Permission to use, copy, modify, and distribute this software and its - documentation for any purpose and without fee is hereby granted, - provided that the above copyright notice appear in all copies and that - both that copyright notice and this permission notice appear in - supporting documentation, and that the name of the copyright holder not be - used in advertising or publicity pertaining to distribution of the - software without specific, written prior permission. - - Tom Lord DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, - INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO - EVENT SHALL TOM LORD BE LIABLE FOR ANY SPECIAL, INDIRECT OR - CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF - USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR - OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR - PERFORMANCE OF THIS SOFTWARE. - -* The posix/rxspencer tests are copyright Henry Spencer: - - Copyright 1992, 1993, 1994, 1997 Henry Spencer. All rights reserved. - This software is not subject to any license of the American Telephone - and Telegraph Company or of the Regents of the University of California. - - Permission is granted to anyone to use this software for any purpose on - any computer system, and to alter it and redistribute it, subject - to the following restrictions: - - 1. The author is not responsible for the consequences of use of this - software, no matter how awful, even if they arise from flaws in it. - - 2. The origin of this software must not be misrepresented, either by - explicit claim or by omission. Since few users ever read sources, - credits must appear in the documentation. - - 3. Altered versions must be plainly marked as such, and must not be - misrepresented as being the original software. Since few users - ever read sources, credits must appear in the documentation. - - 4. This notice may not be removed or altered. - -* The file posix/PCRE.tests is copyright University of Cambridge: - - Copyright (c) 1997-2003 University of Cambridge - - Permission is granted to anyone to use this software for any purpose on any - computer system, and to redistribute it freely, subject to the following - restrictions: - - 1. This software is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. - - 2. The origin of this software must not be misrepresented, either by - explicit claim or by omission. In practice, this means that if you use - PCRE in software that you distribute to others, commercially or - otherwise, you must put a sentence like this - - Regular expression support is provided by the PCRE library package, - which is open source software, written by Philip Hazel, and copyright - by the University of Cambridge, England. - - somewhere reasonably visible in your documentation and in any relevant - files or online help data or similar. A reference to the ftp site for - the source, that is, to - - ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/ - - should also be given in the documentation. However, this condition is not - intended to apply to whole chains of software. If package A includes PCRE, - it must acknowledge it, but if package B is software that includes package - A, the condition is not imposed on package B (unless it uses PCRE - independently). - - 3. Altered versions must be plainly marked as such, and must not be - misrepresented as being the original software. - - 4. If PCRE is embedded in any software that is released under the GNU - General Purpose Licence (GPL), or Lesser General Purpose Licence (LGPL), - then the terms of that licence shall supersede any condition above with - which it is incompatible. - -* Files from Sun fdlibm are copyright Sun Microsystems, Inc.: - - Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved. - - Developed at SunPro, a Sun Microsystems, Inc. business. - Permission to use, copy, modify, and distribute this - software is freely granted, provided that this notice - is preserved. - -* Part of stdio-common/tst-printf.c is copyright C E Chew: - - (C) Copyright C E Chew - - Feel free to copy, use and distribute this software provided: - - 1. you do not pretend that you wrote it - 2. you leave this copyright notice intact. - -* Various long double libm functions are copyright Stephen L. Moshier: - - Copyright 2001 by Stephen L. Moshier - - This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - - This library 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 - Lesser General Public License for more details. - - You should have received a copy of the GNU Lesser General Public - License along with this library; if not, see - . */ - - ----------------------------------------- -libc6 version 2.28-10 - - -Copyright: - -This is the Debian prepackaged version of the GNU C Library version 2.23. - -It was put together by the GNU Libc Maintainers -from - -* Most of the GNU C library is under the following copyright: - - Copyright (C) 1991-2015 Free Software Foundation, Inc. - - The GNU C Library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - - The GNU C Library 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 - Lesser General Public License for more details. - - You should have received a copy of the GNU Lesser General Public - License along with the GNU C Library; if not, write to the Free - Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA - 02110-1301 USA - - On Debian systems, the complete text of the GNU Library - General Public License can be found in `/usr/share/common-licenses/LGPL-2.1'. - -* The utilities associated with GNU C library is under the following - copyright: - - Copyright (C) 1991-2015 Free Software Foundation, Inc. - - 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 of the License, or - (at your option) any later version. - - 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. - - 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 St, Fifth Floor, Boston, MA 02110-1301 USA. - - On Debian systems, the complete text of the GNU Library - General Public License can be found in `/usr/share/common-licenses/GPL-2'. - -* All code incorporated from 4.4 BSD is distributed under the following - license: - - Copyright (C) 1991 Regents of the University of California. - All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - 3. [This condition was removed.] - 4. Neither the name of the University nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND - ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -* The DNS resolver code, taken from BIND 4.9.5, is copyrighted both by - UC Berkeley and by Digital Equipment Corporation. The DEC portions - are under the following license: - - Portions Copyright (C) 1993 by Digital Equipment Corporation. - - Permission to use, copy, modify, and distribute this software for any - purpose with or without fee is hereby granted, provided that the above - copyright notice and this permission notice appear in all copies, and - that the name of Digital Equipment Corporation not be used in - advertising or publicity pertaining to distribution of the document or - software without specific, written prior permission. - - THE SOFTWARE IS PROVIDED ``AS IS'' AND DIGITAL EQUIPMENT CORP. - DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL - DIGITAL EQUIPMENT CORPORATION BE LIABLE FOR ANY SPECIAL, DIRECT, - INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING - FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, - NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION - WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - -* The ISC portions are under the following license: - - Portions Copyright (c) 1996-1999 by Internet Software Consortium. - - Permission to use, copy, modify, and distribute this software for any - purpose with or without fee is hereby granted, provided that the above - copyright notice and this permission notice appear in all copies. - - THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS - ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE - CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL - DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR - PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS - ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS - SOFTWARE. - -* The Sun RPC support (from rpcsrc-4.0) is covered by the following - license: - - Copyright (c) 2010, Oracle America, Inc. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are - met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials - provided with the distribution. - * Neither the name of the "Oracle America, Inc." nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS - FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE - COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, - INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, - WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING - NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -* The following CMU license covers some of the support code for Mach, - derived from Mach 3.0: - - Mach Operating System - Copyright (C) 1991,1990,1989 Carnegie Mellon University - All Rights Reserved. - - Permission to use, copy, modify and distribute this software and its - documentation is hereby granted, provided that both the copyright - notice and this permission notice appear in all copies of the - software, derivative works or modified versions, and any portions - thereof, and that both notices appear in supporting documentation. - - CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS ``AS IS'' - CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR - ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE. - - Carnegie Mellon requests users of this software to return to - - Software Distribution Coordinator - School of Computer Science - Carnegie Mellon University - Pittsburgh PA 15213-3890 - - or Software.Distribution@CS.CMU.EDU any improvements or - extensions that they make and grant Carnegie Mellon the rights to - redistribute these changes. - -* The file if_ppp.h is under the following CMU license: - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - 3. Neither the name of the University nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY CARNEGIE MELLON UNIVERSITY AND - CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, - INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF - MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE UNIVERSITY OR CONTRIBUTORS BE LIABLE FOR ANY - DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -* The following license covers the files from Intel's "Highly Optimized - Mathematical Functions for Itanium" collection: - - Intel License Agreement - - Copyright (c) 2000, Intel Corporation - - All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are - met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - - * The name of Intel Corporation may not be used to endorse or promote - products derived from this software without specific prior written - permission. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL INTEL OR - CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, - PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR - PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF - LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING - NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS - SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -* The files inet/getnameinfo.c and sysdeps/posix/getaddrinfo.c are copyright - (C) by Craig Metz and are distributed under the following license: - - /* The Inner Net License, Version 2.00 - - The author(s) grant permission for redistribution and use in source and - binary forms, with or without modification, of the software and documentation - provided that the following conditions are met: - - 0. If you receive a version of the software that is specifically labelled - as not being for redistribution (check the version message and/or README), - you are not permitted to redistribute that version of the software in any - way or form. - 1. All terms of the all other applicable copyrights and licenses must be - followed. - 2. Redistributions of source code must retain the authors' copyright - notice(s), this list of conditions, and the following disclaimer. - 3. Redistributions in binary form must reproduce the authors' copyright - notice(s), this list of conditions, and the following disclaimer in the - documentation and/or other materials provided with the distribution. - 4. [The copyright holder has authorized the removal of this clause.] - 5. Neither the name(s) of the author(s) nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY ITS AUTHORS AND CONTRIBUTORS ``AS IS'' AND ANY - EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE FOR ANY - DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON - ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS - SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - If these license terms cause you a real problem, contact the author. */ - -* The file sunrpc/des_impl.c is copyright Eric Young: - - Copyright (C) 1992 Eric Young - Collected from libdes and modified for SECURE RPC by Martin Kuck 1994 - This file is distributed under the terms of the GNU Lesser General - Public License, version 2.1 or later - see the file COPYING.LIB for details. - If you did not receive a copy of the license with this program, please - see to obtain a copy. - -* The libidn code is copyright Simon Josefsson, with portions copyright - The Internet Society, Tom Tromey and Red Hat, Inc.: - - Copyright (C) 2002, 2003, 2004, 2011 Simon Josefsson - - This file is part of GNU Libidn. - - GNU Libidn is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - - GNU Libidn 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 - Lesser General Public License for more details. - - You should have received a copy of the GNU Lesser General Public - License along with GNU Libidn; if not, see . - -* The following notice applies to portions of libidn/nfkc.c: - - This file contains functions from GLIB, including gutf8.c and - gunidecomp.c, all licensed under LGPL and copyright hold by: - - Copyright (C) 1999, 2000 Tom Tromey - Copyright 2000 Red Hat, Inc. - -* The following applies to portions of libidn/punycode.c and - libidn/punycode.h: - - This file is derived from RFC 3492bis written by Adam M. Costello. - - Disclaimer and license: Regarding this entire document or any - portion of it (including the pseudocode and C code), the author - makes no guarantees and is not responsible for any damage resulting - from its use. The author grants irrevocable permission to anyone - to use, modify, and distribute it in any way that does not diminish - the rights of anyone else to use, modify, and distribute it, - provided that redistributed derivative works do not contain - misleading author or version information. Derivative works need - not be licensed under similar terms. - - Copyright (C) The Internet Society (2003). All Rights Reserved. - - This document and translations of it may be copied and furnished to - others, and derivative works that comment on or otherwise explain it - or assist in its implementation may be prepared, copied, published - and distributed, in whole or in part, without restriction of any - kind, provided that the above copyright notice and this paragraph are - included on all such copies and derivative works. However, this - document itself may not be modified in any way, such as by removing - the copyright notice or references to the Internet Society or other - Internet organizations, except as needed for the purpose of - developing Internet standards in which case the procedures for - copyrights defined in the Internet Standards process must be - followed, or as required to translate it into languages other than - English. - - The limited permissions granted above are perpetual and will not be - revoked by the Internet Society or its successors or assigns. - - This document and the information contained herein is provided on an - "AS IS" basis and THE INTERNET SOCIETY AND THE INTERNET ENGINEERING - TASK FORCE DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING - BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION - HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF - MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. - -* The file inet/rcmd.c is under a UCB copyright and the following: - - Copyright (C) 1998 WIDE Project. - All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - 3. Neither the name of the project nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND - ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - - * The file posix/runtests.c is copyright Tom Lord: - - Copyright 1995 by Tom Lord - - All Rights Reserved - - Permission to use, copy, modify, and distribute this software and its - documentation for any purpose and without fee is hereby granted, - provided that the above copyright notice appear in all copies and that - both that copyright notice and this permission notice appear in - supporting documentation, and that the name of the copyright holder not be - used in advertising or publicity pertaining to distribution of the - software without specific, written prior permission. - - Tom Lord DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, - INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO - EVENT SHALL TOM LORD BE LIABLE FOR ANY SPECIAL, INDIRECT OR - CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF - USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR - OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR - PERFORMANCE OF THIS SOFTWARE. - -* The posix/rxspencer tests are copyright Henry Spencer: - - Copyright 1992, 1993, 1994, 1997 Henry Spencer. All rights reserved. - This software is not subject to any license of the American Telephone - and Telegraph Company or of the Regents of the University of California. - - Permission is granted to anyone to use this software for any purpose on - any computer system, and to alter it and redistribute it, subject - to the following restrictions: - - 1. The author is not responsible for the consequences of use of this - software, no matter how awful, even if they arise from flaws in it. - - 2. The origin of this software must not be misrepresented, either by - explicit claim or by omission. Since few users ever read sources, - credits must appear in the documentation. - - 3. Altered versions must be plainly marked as such, and must not be - misrepresented as being the original software. Since few users - ever read sources, credits must appear in the documentation. - - 4. This notice may not be removed or altered. - -* The file posix/PCRE.tests is copyright University of Cambridge: - - Copyright (c) 1997-2003 University of Cambridge - - Permission is granted to anyone to use this software for any purpose on any - computer system, and to redistribute it freely, subject to the following - restrictions: - - 1. This software is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. - - 2. The origin of this software must not be misrepresented, either by - explicit claim or by omission. In practice, this means that if you use - PCRE in software that you distribute to others, commercially or - otherwise, you must put a sentence like this - - Regular expression support is provided by the PCRE library package, - which is open source software, written by Philip Hazel, and copyright - by the University of Cambridge, England. - - somewhere reasonably visible in your documentation and in any relevant - files or online help data or similar. A reference to the ftp site for - the source, that is, to - - ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/ - - should also be given in the documentation. However, this condition is not - intended to apply to whole chains of software. If package A includes PCRE, - it must acknowledge it, but if package B is software that includes package - A, the condition is not imposed on package B (unless it uses PCRE - independently). - - 3. Altered versions must be plainly marked as such, and must not be - misrepresented as being the original software. - - 4. If PCRE is embedded in any software that is released under the GNU - General Purpose Licence (GPL), or Lesser General Purpose Licence (LGPL), - then the terms of that licence shall supersede any condition above with - which it is incompatible. - -* Files from Sun fdlibm are copyright Sun Microsystems, Inc.: - - Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved. - - Developed at SunPro, a Sun Microsystems, Inc. business. - Permission to use, copy, modify, and distribute this - software is freely granted, provided that this notice - is preserved. - -* Part of stdio-common/tst-printf.c is copyright C E Chew: - - (C) Copyright C E Chew - - Feel free to copy, use and distribute this software provided: - - 1. you do not pretend that you wrote it - 2. you leave this copyright notice intact. - -* Various long double libm functions are copyright Stephen L. Moshier: - - Copyright 2001 by Stephen L. Moshier - - This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - - This library 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 - Lesser General Public License for more details. - - You should have received a copy of the GNU Lesser General Public - License along with this library; if not, see - . */ - - ----------------------------------------- -libcap-ng0 version 0.7.9-2 - - -Copyright: - -This package was debianized by Pierre Chifflier on -Mon, 22 Jun 2009 21:47:25 +0200. - -It was downloaded from http://people.redhat.com/sgrubb/libcap-ng/ - -Upstream Author: Steve Grubb - -Copyright 2009 Red Hat Inc. - -License: - - This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - - This library 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 - Lesser General Public License for more details. - - You should have received a copy of the GNU Lesser General Public - License along with this library; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, - MA 02110-1301, USA. - -see `/usr/share/common-licenses/LGPL-2.1'. - -Files in the 'utils/' directory, Makefile.am and doc/Makefile.am are -licensed under the GNU General Public License version 2 or above -See `/usr/share/common-licenses/GPL-2'. - -The Debian packaging is: - - Copyright (C) 2009 Pierre Chifflier - -and is licensed under the GPL version 3, -see `/usr/share/common-licenses/GPL-3'. - - - ----------------------------------------- -libcom-err2 version 1.44.5-1+deb10u3 - - -Copyright: - -This is the Debian GNU/Linux prepackaged version of the Common Error -Description library. It is currently distributed together with the EXT2 file -system utilities, which are otherwise packaged as "e2fsprogs". - -This package was put together by Yann Dirson , -from sources obtained from a mirror of: - tsx-11.mit.edu:/pub/linux/packages/ext2fs/ - -From the original distribution: - -Copyright 1987, 1988 by the Student Information Processing Board - of the Massachusetts Institute of Technology - -Permission to use, copy, modify, and distribute this software -and its documentation for any purpose and without fee is -hereby granted, provided that the above copyright notice -appear in all copies and that both that copyright notice and -this permission notice appear in supporting documentation, -and that the names of M.I.T. and the M.I.T. S.I.P.B. not be -used in advertising or publicity pertaining to distribution -of the software without specific, written prior permission. -M.I.T. and the M.I.T. S.I.P.B. make no representations about -the suitability of this software for any purpose. It is -provided "as is" without express or implied warranty. - - ----------------------------------------- -libdb5.3 version 5.3.28+dfsg1-0.5 - - -Copyright: - -This package was debianized by Clint Adams on -Wed, 25 Jul 2007 20:37:51 +0700 - -It was downloaded from -http://www.oracle.com/technology/software/products/berkeley-db/db/index.html - -Copyright and license: - -The following is the license that applies to this copy of the Berkeley DB -software. For a license to use the Berkeley DB software under conditions -other than those described here, or to purchase support for this software, -please contact Oracle at berkeleydb-info_us@oracle.com. - -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= -/* - * Copyright (c) 1990, 2010 Oracle and/or its affiliates. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Redistributions in any form must be accompanied by information on - * how to obtain complete source code for the DB software and any - * accompanying software that uses the DB software. The source code - * must either be included in the distribution or be available for no - * more than the cost of distribution plus a nominal fee, and must be - * freely redistributable under reasonable conditions. For an - * executable file, complete source code means the source code for all - * modules it contains. It does not include source code for modules or - * files that typically accompany the major components of the operating - * system on which the executable file runs. - * - * THIS SOFTWARE IS PROVIDED BY ORACLE ``AS IS'' AND ANY EXPRESS OR - * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - * WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR - * NON-INFRINGEMENT, ARE DISCLAIMED. IN NO EVENT SHALL ORACLE BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR - * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, - * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE - * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - * IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ -/* - * Copyright (c) 1990, 1993, 1994, 1995 - * The Regents of the University of California. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of the University nor the names of its contributors - * may be used to endorse or promote products derived from this software - * without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - */ -/* - * Copyright (c) 1995, 1996 - * The President and Fellows of Harvard University. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of the University nor the names of its contributors - * may be used to endorse or promote products derived from this software - * without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY HARVARD AND ITS CONTRIBUTORS ``AS IS'' AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL HARVARD OR ITS CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - */ -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= -/*** - * ASM: a very small and fast Java bytecode manipulation framework - * Copyright (c) 2000-2005 INRIA, France Telecom - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of the copyright holders nor the names of its - * contributors may be used to endorse or promote products derived from - * this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE - * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF - * THE POSSIBILITY OF SUCH DAMAGE. - */ - - ----------------------------------------- -libdebconfclient0 version 0.249 - - -Copyright: - -CDebConf was initially written by Randolph Chung - -Other contributors include: - Anthony Towns - David Whedon - Dan Jacobowitz - Tollef Fog Heen - Attilio Fiandrotti - Colin Watson - Regis Boudin - -CDebConf includes ideas and code from: - debconf - The original, de facto, perl implementation - (c) Joey Hess - apt - The Debian Advanced Package Tool - (c) Jason Gunthorpe - (derived portions are public domain) - -CDebConf is copyrighted (c) 2000-2009 by Randolph Chung , -the d-i team (see above), and Canonical Ltd. under the following license: - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS -OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY -OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF -SUCH DAMAGE. - - ----------------------------------------- -libext2fs2 version 1.44.5-1+deb10u3 - - -Copyright: - -This is the Debian GNU/Linux prepackaged version of the EXT2 file -system utilities (e2fsck, mke2fs, etc.). The EXT2 utilities were -written by Theodore Ts'o and Remy Card . - -Sources were obtained from http://sourceforge.net/projects/e2fsprogs - -Packaging is Copyright (c) 2003-2007 Theodore Ts'o - Copyright (c) 1997-2003 Yann Dirson - Copyright (c) 2001 Alcove - Copyright (c) 1997 Klee Dienes - Copyright (c) 1995-1996 Michael Nonweiler - -Upstream Author: Theodore Ts'o - -Copyright notice: - -This package, the EXT2 filesystem utilities, are made available under -the GNU General Public License version 2, with the exception of the -lib/ext2fs and lib/e2p libraries, which are made available under the -GNU Library General Public License Version 2, the lib/uuid library -which is made available under a BSD-style license and the lib/et and -lib/ss libraries which are made available under an MIT-style license. - - Copyright (c) 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, - 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 by Theodore Ts'o - -On Debian GNU systems, the complete text of the GNU General Public -License can be found in `/usr/share/common-licenses/GPL-2'. The -complete text of the GNU Library General Public License can be found -in '/usr/share/common-licenses/LGPL-2'. - - -The license used for lib/et and lib/ss libraries is: - - Copyright 1987 by the Student Information Processing Board - of the Massachusetts Institute of Technology - - Permission to use, copy, modify, and distribute this software and - its documentation for any purpose is hereby granted, provided that - the names of M.I.T. and the M.I.T. S.I.P.B. not be used in - advertising or publicity pertaining to distribution of the software - without specific, written prior permission. M.I.T. and the - M.I.T. S.I.P.B. make no representations about the suitability of - this software for any purpose. It is provided "as is" without - express or implied warranty. - -The license used for lib/uuid is: - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - 1. Redistributions of source code must retain the above copyright - notice, and the entire permission notice in its entirety, - including the disclaimer of warranties. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - 3. The name of the author may not be used to endorse or promote - products derived from this software without specific prior - written permission. - - THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, ALL OF - WHICH ARE HEREBY DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE - LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT - OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR - BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF - LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE - USE OF THIS SOFTWARE, EVEN IF NOT ADVISED OF THE POSSIBILITY OF SUCH - DAMAGE. - - ----------------------------------------- -libfdisk1 version 2.33.1-0.1 - - -Copyright: - -Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ -Upstream-Name: util-linux -Upstream-Contact: util-linux@vger.kernel.org -Source: https://www.kernel.org/pub/linux/utils/util-linux/ - -Files: * -Copyright: Michal Luscon - 1986 Gary S. Brown - 1990 Gordon Irlam (gordoni@cs.ua.oz.au) - 1991, 1992 Linus Torvalds - 1991-2004 Miquel van Smoorenburg - 1992 A. V. Le Blanc (LeBlanc@mcc.ac.uk) - 1992-1997 Michael K. Johnson, johnsonm@redhat.com - 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, - 2003, 2004, 2005, 2008 Theodore Ts'o - 1994 Kevin E. Martin (martin@cs.unc.edu) - 1994 Salvatore Valente - 1994,1996 Alessandro Rubini (rubini@ipvvis.unipv.it) - 1994-2005 Jeff Tranter (tranter@pobox.com) - 1995, 1999, 2000 Andries E. Brouwer - 1997-2005 Frodo Looijaard - 1998 Danek Duvall - 1999 Andreas Dilger - 1999-2002 Transmeta Corporation - 1999, 2000, 2002-2009, 2010, 2011, 2012, 2014 Red Hat, Inc. - 2000 Werner Almesberger - 2004-2006 Michael Holzt, kju -at- fqdn.org - 2005 Adrian Bunk - 2007-2014 Karel Zak - 2007, 2011 SuSE LINUX Products GmbH - 2008 Cai Qian - 2008 Hayden A. James (hayden.james@gmail.com) - 2008 James Youngman - 2008 Roy Peled, the.roy.peled -at- gmail.com - 2009 Mikhail Gusarov - 2010, 2011, 2012 Davidlohr Bueso - 2010 Jason Borden A - 2010 Hajime Taira - 2010 Masatake Yamato - 2011 IBM Corp. - 2012 Andy Lutomirski - 2012 Lennart Poettering - 2012 Sami Kerola - 2012 Cody Maloney - 2012 Werner Fink - 2013,2014 Ondrej Oprala -License: GPL-2+ - -Files: schedutils/ionice.c -Copyright: 2005 Jens Axboe -License: GPL-2 - -Files: schedutils/chrt.c - schedutils/taskset.c -Copyright: 2004 Robert Love - 2010 Karel Zak -License: GPL-2 - -Files: disk-utils/raw.c -Copyright: 1999, 2000, Red Hat Software -License: GPL-2 - -Files: sys-utils/nsenter.c -Copyright: 2012-2013 Eric Biederman -License: GPL-2 - -Files: disk-utils/mkfs.minix.c - disk-utils/mkswap.c -Copyright: 1991, 1992 Linus Torvalds -License: GPL-2 - -Files: lib/at.c - lib/blkdev.c - lib/loopdev.c - lib/sysfs.c - lib/ttyutils.c - lib/xgetpass.c - misc-utils/mcookie.c - sys-utils/setsid.c - text-utils/line.c -Copyright: n/a -License: public-domain - -Files: login-utils/vipw.c - misc-utils/cal.c - misc-utils/kill.c - misc-utils/logger.c - misc-utils/look.c - misc-utils/whereis.c - sys-utils/renice.c - term-utils/mesg.c - term-utils/script.c - term-utils/ttymsg.c - term-utils/wall.c - term-utils/write.c - text-utils/col.c - text-utils/colcrt.c - text-utils/colrm.c - text-utils/column.c - text-utils/hexdump.c - text-utils/hexdump.h - text-utils/hexdump-conv.c - text-utils/hexdump-display.c - text-utils/hexdump-parse.c - text-utils/rev.c - text-utils/ul.c -Copyright: 1980, 1983, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994 - The Regents of the University of California - 2014 Sami Kerola - 2014 Karel Zak -License: BSD-4-clause - -Files: text-utils/tailf.c -Copyright: 1996, 2003 Rickard E. Faith (faith@acm.org) -License: MIT - -Files: sys-utils/flock.c -Copyright: 2003-2005 H. Peter Anvin -License: MIT - -Files: text-utils/pg.c -Copyright: 2000-2001 Gunnar Ritter -License: BSD-2-clause - -Files: login-utils/last-deprecated.c -Copyright: 1987 Regents of the University of California -License: BSD-2-clause - -Files: login-utils/login.c -Copyright: 1980, 1987, 1988 The Regents of the University of California. - 2011 Karel Zak -License: BSD-2-clause - -Files: login-utils/logindefs.c -Copyright: 2003, 2004, 2005 Thorsten Kukuk -License: BSD-3-clause - -Files: libuuid/* - libuuid/src/* - libuuid/man/* -Copyright: 1996, 1997, 1998, 1999, 2007 Theodore Ts'o. - 1999 Andreas Dilger (adilger@enel.ucalgary.ca) -License: BSD-3-clause - -Files: lib/procutils.c - include/xalloc.h -Copyright: 2010, 2011 Davidlohr Bueso -License: LGPL-2+ - -Files: */colors.* -Copyright: 2012 Ondrej Oprala - 2012-2014 Karel Zak -License: LGPL-2+ - -Files: login-utils/setpwnam.h - login-utils/setpwnam.c -Copyright: 1994 Martin Schulze - 1994 Salvatore Valente -License: LGPL-2+ - -Files: libfdisk/* - libfdisk/src/* -Copyright: 2007-2013 Karel Zak - 2012 Davidlohr Bueso -License: LGPL-2.1+ - -Files: lib/cpuset.c - */match.* - lib/canonicalize.c - include/at.h -Copyright: 2008-2009, 2010, 2011, 2012 Karel Zak -License: LGPL-2.1+ - -Files: */mbsalign.* -Copyright: 2009-2010 Free Software Foundation, Inc. - 2010-2013 Karel Zak -License: LGPL-2.1+ - -Files: */readutmp.* -Copyright: 1992-2007, 2009-2014 Free Software Foundation, Inc. -License: GPL-3+ - -Files: */timeutils.* -Copyright: 2010 Lennart Poettering -License: LGPL-2.1+ - -Files: include/list.h -Copyright: 2008 Karel Zak - 1999-2008 by Theodore Ts'o -License: LGPL - -Files: libblkid/* - libblkid/src/* - libblkid/samples/* - libblkid/src/partitions/* - libblkid/src/superblocks/* - libblkid/src/topology/* -Copyright: 1999, 2001 Andries Brouwer - 1995, 1995, 1996, 1997, 1999, 2000, 2001, 2002, 2003, 2004 - Theodore Ts'o. - 2001 Andreas Dilger (adilger@turbolinux.com) - 2004-2008 Kay Sievers - 2008-2013 Karel Zak - 2009 Bastian Friedrich - 2009 Corentin Chary - 2009 Mike Hommey - 2009 Red Hat, Inc. - 2009-2010 Andreas Dilger - 2010 Andrew Nayenko - 2010 Jeroen Oortwijn - 2010 Jiro SEKIBA - 2011 Philipp Marek - 2012 Milan Broz - 2013 Alejandro Martinez Ruiz - 2013 Eric Sandeen - 2013 Rolf Fokkens - 2013 Zeeshan Ali (Khattak) -License: LGPL-2.1+ - -Files: include/cpuset.h - lib/randutils.c -Copyright: *unknown* -License: LGPL - -Files: misc-utils/blkid.c -Copyright: 2001 Andreas Dilger -License: LGPL - -Files: libmount/* - libmount/src/* -Copyright: 2008-2012 Karel Zak -License: LGPL-2.1+ - -Files: libmount/python/* -Copyright: 2013, Red Hat, Inc. -License: LGPL-3+ - -Files: libsmartcols/* -Copyright: 2009-2014 Karel Zak - 2014 Ondrej Oprala -License: LGPL - -Files: debian/* -Copyright: Guy Maor - Sean 'Shaleh' Perry - Adrian Bunk - LaMont Jones - 2014 Andreas Henriksson -License: GPL-2+ - - -License: public-domain - The files tagged with this license contains the following paragraphs: - . - No copyright is claimed. This code is in the public domain; do with - it what you wish. - . - Written by Karel Zak - -License: GPL-2 - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License, v2, as - published by the Free Software Foundation - . - 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. - . - 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. - . - On Debian systems, the complete text of the GNU General Public - License version 2 can be found in `/usr/share/common-licenses/GPL-2'. - -License: GPL-2+ - 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. - . - 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. - . - 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. - . - On Debian systems, the complete text of the GNU General Public - License version 2 can be found in `/usr/share/common-licenses/GPL-2'. - -License: GPL-3+ - 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 3 of the License, or - (at your option) any later version. - . - 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. - . - You should have received a copy of the GNU General Public License - along with this program. If not, see . - . - On Debian systems, the complete text of the GNU General Public - License version 3 can be found in `/usr/share/common-licenses/GPL-3'. - -License: BSD-2-clause - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - -License: BSD-3-clause - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are met: - . - 1) Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. - . - 2) Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. - . - 3) Neither the name of the ORGANIZATION nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - . - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE - LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - POSSIBILITY OF SUCH DAMAGE. - -License: BSD-4-clause - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - 3. All advertising materials mentioning features or use of this software - must display the following acknowledgement: - This product includes software developed by the University of - California, Berkeley and its contributors. - 4. Neither the name of the University nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - . - THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND - ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -License: LGPL - This file may be redistributed under the terms of the - GNU Lesser General Public License. - . - On Debian systems, the complete text of the GNU Lesser General Public - License can be found in ‘/usr/share/common-licenses/LGPL’. - -License: LGPL-2+ - This program is free software: you can redistribute it and/or modify - it under the terms of the GNU Lesser General Public License as published by - the Free Software Foundation, either version 2 of the License, or - (at your option) any later version. - . - 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 Lesser General Public License for more details. - . - You should have received a copy of the GNU Lesser General Public License - along with this program. If not, see . - . - The complete text of the GNU Lesser General Public License - can be found in /usr/share/common-licenses/LGPL-2 file. - -License: LGPL-2.1+ - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU Lesser General Public License as published by - the Free Software Foundation; either version 2.1, or (at your option) - any later version. - . - 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 Lesser General Public License for more details. - . - You should have received a copy of the GNU Lesser 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. - . - On Debian systems, the complete text of the GNU Lesser General Public - License version 2.1 can be found in ‘/usr/share/common-licenses/LGPL-2.1’. - -License: LGPL-3+ - This package is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 3 of the License, or (at your option) any later version. - . - This package 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 - Lesser General Public License for more details. - . - You should have received a copy of the GNU General Public License - along with this program. If not, see . - . - On Debian systems, the complete text of the GNU Lesser General - Public License can be found in "/usr/share/common-licenses/LGPL-3". - -License: MIT - Permission is hereby granted, free of charge, to any person - obtaining a copy of this software and associated documentation files - (the "Software"), to deal in the Software without restriction, - including without limitation the rights to use, copy, modify, merge, - publish, distribute, sublicense, and/or sell copies of the Software, - and to permit persons to whom the Software is furnished to do so, - subject to the following conditions: - . - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - . - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS - BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN - ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN - CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - SOFTWARE. - - - ----------------------------------------- -libffi6 version 3.2.1-9 - - -Copyright: - -This package was debianized by Matthias Klose -on Mon, 10 Mar 2008 05:46:40 +0000. - -It was downloaded from ftp://sourceware.org/pub/libffi/ - -Upstream Authors: - - Anthony Green - GCC developers - See the README and below in the list of copyright holders for a more - complete list. - -Copyright: - Copyright (c) 1996-2011 Red Hat, Inc. - Copyright (C) 1996-2011 Anthony Green - Copyright (C) 1996-2010 Free Software Foundation, Inc - Copyright (c) 2003, 2004, 2006, 2007, 2008 Kaz Kojima - Copyright (c) 2010, 2011, Plausible Labs Cooperative , Inc. - Copyright (c) 2010 CodeSourcery - Copyright (c) 1998 Andreas Schwab - Copyright (c) 2000 Hewlett Packard Company - Copyright (c) 2009 Bradley Smith - Copyright (c) 2008 David Daney - Copyright (c) 2004 Simon Posnjak - Copyright (c) 2005 Axis Communications AB - Copyright (c) 1998 Cygnus Solutions - Copyright (c) 2004 Renesas Technology - Copyright (c) 2002, 2007 Bo Thorsen - Copyright (c) 2002 Ranjit Mathew - Copyright (c) 2002 Roger Sayle - Copyright (c) 2000, 2007 Software AG - Copyright (c) 2003 Jakub Jelinek - Copyright (c) 2000, 2001 John Hornkvist - Copyright (c) 1998 Geoffrey Keating - Copyright (c) 2008 Björn König - -License: - - libffi - Copyright (c) 1996-2010 Red Hat, Inc and others. - See source files for details. - - Permission is hereby granted, free of charge, to any person obtaining - a copy of this software and associated documentation files (the - ``Software''), to deal in the Software without restriction, including - without limitation the rights to use, copy, modify, merge, publish, - distribute, sublicense, and/or sell copies of the Software, and to - permit persons to whom the Software is furnished to do so, subject to - the following conditions: - - The above copyright notice and this permission notice shall be included - in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED ``AS IS'', WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. - IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY - CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, - TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE - SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - - Documentation: - Permission is granted to copy, distribute and/or modify this document - under the terms of the GNU General Public License as published by the - Free Software Foundation; either version 2, or (at your option) any - later version. A copy of the license is included in the - section entitled ``GNU General Public License''. - -doc/*: - Permission is granted to copy, distribute and/or modify this document - under the terms of the GNU General Public License as published by the - Free Software Foundation; either version 2, or (at your option) any - later version. A copy of the license is included in the - section entitled ``GNU General Public License''. - - On Debian GNU/Linux systems, the complete text of the GNU General - Public License is in `/usr/share/common-licenses/GPL'. - -The Debian packaging is (C) 2008, 2011 Matthias Klose -and is licensed under the GPL, see `/usr/share/common-licenses/GPL'. - - ----------------------------------------- -libgcc1 version 1:8.3.0-6 - - -Copyright: - -This is the Debian GNU/Linux prepackaged version of the GNU compiler -collection, containing Ada, C, C++, Fortran 95, Objective-C, -Objective-C++, and Treelang compilers, documentation, and support -libraries. In addition, Debian provides the gdc compiler, either in -the same source package, or built from a separate same source package. -Packaging is done by the Debian GCC Maintainers -, with sources obtained from: - - ftp://gcc.gnu.org/pub/gcc/releases/ (for full releases) - svn://gcc.gnu.org/svn/gcc/ (for prereleases) - http://bitbucket.org/goshawk/gdc (for D) - https://github.com/MentorEmbedded/nvptx-newlib/ (for newlib-nvptx) - -The current gcc-8 source package is taken from the SVN gcc-8-branch. - -Changes: See changelog.Debian.gz - -Debian splits the GNU Compiler Collection into packages for each language, -library, and documentation as follows: - -Language Compiler package Library package Documentation ---------------------------------------------------------------------------- -Ada gnat-8 libgnat-8 gnat-8-doc -BRIG gccbrig-8 libhsail-rt0 -C gcc-8 gcc-8-doc -C++ g++-8 libstdc++6 libstdc++6-8-doc -D gdc-8 -Fortran 95 gfortran-8 libgfortran3 gfortran-8-doc -Go gccgo-8 libgo0 -Objective C gobjc-8 libobjc2 -Objective C++ gobjc++-8 - -For some language run-time libraries, Debian provides source files, -development files, debugging symbols and libraries containing position- -independent code in separate packages: - -Language Sources Development Debugging Position-Independent ------------------------------------------------------------------------------- -C++ libstdc++6-8-dbg libstdc++6-8-pic -D libphobos-8-dev - -Additional packages include: - -All languages: -libgcc1, libgcc2, libgcc4 GCC intrinsics (platform-dependent) -gcc-8-base Base files common to all compilers -gcc-8-soft-float Software floating point (ARM only) -gcc-8-source The sources with patches - -Ada: -libgnatvsn-dev, libgnatvsn8 GNAT version library - -C: -cpp-8, cpp-8-doc GNU C Preprocessor -libssp0-dev, libssp0 GCC stack smashing protection library -libquadmath0 Math routines for the __float128 type -fixincludes Fix non-ANSI header files - -C, C++ and Fortran 95: -libgomp1-dev, libgomp1 GCC OpenMP (GOMP) support library -libitm1-dev, libitm1 GNU Transactional Memory Library - -Biarch support: On some 64-bit platforms which can also run 32-bit code, -Debian provides additional packages containing 32-bit versions of some -libraries. These packages have names beginning with 'lib32' instead of -'lib', for example lib32stdc++6. Similarly, on some 32-bit platforms which -can also run 64-bit code, Debian provides additional packages with names -beginning with 'lib64' instead of 'lib'. These packages contain 64-bit -versions of the libraries. (At this time, not all platforms and not all -libraries support biarch.) The license terms for these lib32 or lib64 -packages are identical to the ones for the lib packages. - - -COPYRIGHT STATEMENTS AND LICENSING TERMS - - -GCC is Copyright (C) 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994, -1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, -2008, 2009, 2010, 2011, 2012, 2013, 2014 Free Software Foundation, Inc. - -GCC 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 3, or (at your option) any later -version. - -GCC 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. - -Files that have exception clauses are licensed under the terms of the -GNU General Public License; either version 3, or (at your option) any -later version. - -On Debian GNU/Linux systems, the complete text of the GNU General -Public License is in `/usr/share/common-licenses/GPL', version 3 of this -license in `/usr/share/common-licenses/GPL-3'. - -The following runtime libraries are licensed under the terms of the -GNU General Public License (v3 or later) with version 3.1 of the GCC -Runtime Library Exception (included in this file): - - - libgcc (libgcc/, gcc/libgcc2.[ch], gcc/unwind*, gcc/gthr*, - gcc/coretypes.h, gcc/crtstuff.c, gcc/defaults.h, gcc/dwarf2.h, - gcc/emults.c, gcc/gbl-ctors.h, gcc/gcov-io.h, gcc/libgcov.c, - gcc/tsystem.h, gcc/typeclass.h). - - libatomic - - libdecnumber - - libgomp - - libitm - - libssp - - libstdc++-v3 - - libobjc - - libgfortran - - The libgnat-8 Ada support library and libgnatvsn library. - - Various config files in gcc/config/ used in runtime libraries. - - libvtv - -The libbacktrace library is licensed under the following terms: - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - (1) Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - (2) Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - (3) The name of the author may not be used to - endorse or promote products derived from this software without - specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR -IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, -INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING -IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. - - -The libsanitizer libraries (libasan, liblsan, libtsan, libubsan) are -licensed under the following terms: - -Copyright (c) 2009-2014 by the LLVM contributors. - -All rights reserved. - -Developed by: - - LLVM Team - - University of Illinois at Urbana-Champaign - - http://llvm.org - -Permission is hereby granted, free of charge, to any person obtaining a copy of -this software and associated documentation files (the "Software"), to deal with -the Software without restriction, including without limitation the rights to -use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies -of the Software, and to permit persons to whom the Software is furnished to do -so, subject to the following conditions: - - * Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimers. - - * Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimers in the - documentation and/or other materials provided with the distribution. - - * Neither the names of the LLVM Team, University of Illinois at - Urbana-Champaign, nor the names of its contributors may be used to - endorse or promote products derived from this Software without specific - prior written permission. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS -FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -CONTRIBUTORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS WITH THE -SOFTWARE. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - - -The libffi library is licensed under the following terms: - - libffi - Copyright (c) 1996-2003 Red Hat, Inc. - - Permission is hereby granted, free of charge, to any person obtaining - a copy of this software and associated documentation files (the - ``Software''), to deal in the Software without restriction, including - without limitation the rights to use, copy, modify, merge, publish, - distribute, sublicense, and/or sell copies of the Software, and to - permit persons to whom the Software is furnished to do so, subject to - the following conditions: - - The above copyright notice and this permission notice shall be included - in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED ``AS IS'', WITHOUT WARRANTY OF ANY KIND, EXPRESS - OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. - IN NO EVENT SHALL CYGNUS SOLUTIONS BE LIABLE FOR ANY CLAIM, DAMAGES OR - OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, - ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR - OTHER DEALINGS IN THE SOFTWARE. - - -The documentation is licensed under the GNU Free Documentation License (v1.2). -On Debian GNU/Linux systems, the complete text of this license is in -`/usr/share/common-licenses/GFDL-1.2'. - - -GCC RUNTIME LIBRARY EXCEPTION - -Version 3.1, 31 March 2009 - -Copyright (C) 2009 Free Software Foundation, Inc. - -Everyone is permitted to copy and distribute verbatim copies of this -license document, but changing it is not allowed. - -This GCC Runtime Library Exception ("Exception") is an additional -permission under section 7 of the GNU General Public License, version -3 ("GPLv3"). It applies to a given file (the "Runtime Library") that -bears a notice placed by the copyright holder of the file stating that -the file is governed by GPLv3 along with this Exception. - -When you use GCC to compile a program, GCC may combine portions of -certain GCC header files and runtime libraries with the compiled -program. The purpose of this Exception is to allow compilation of -non-GPL (including proprietary) programs to use, in this way, the -header files and runtime libraries covered by this Exception. - -0. Definitions. - -A file is an "Independent Module" if it either requires the Runtime -Library for execution after a Compilation Process, or makes use of an -interface provided by the Runtime Library, but is not otherwise based -on the Runtime Library. - -"GCC" means a version of the GNU Compiler Collection, with or without -modifications, governed by version 3 (or a specified later version) of -the GNU General Public License (GPL) with the option of using any -subsequent versions published by the FSF. - -"GPL-compatible Software" is software whose conditions of propagation, -modification and use would permit combination with GCC in accord with -the license of GCC. - -"Target Code" refers to output from any compiler for a real or virtual -target processor architecture, in executable form or suitable for -input to an assembler, loader, linker and/or execution -phase. Notwithstanding that, Target Code does not include data in any -format that is used as a compiler intermediate representation, or used -for producing a compiler intermediate representation. - -The "Compilation Process" transforms code entirely represented in -non-intermediate languages designed for human-written code, and/or in -Java Virtual Machine byte code, into Target Code. Thus, for example, -use of source code generators and preprocessors need not be considered -part of the Compilation Process, since the Compilation Process can be -understood as starting with the output of the generators or -preprocessors. - -A Compilation Process is "Eligible" if it is done using GCC, alone or -with other GPL-compatible software, or if it is done without using any -work based on GCC. For example, using non-GPL-compatible Software to -optimize any GCC intermediate representations would not qualify as an -Eligible Compilation Process. - -1. Grant of Additional Permission. - -You have permission to propagate a work of Target Code formed by -combining the Runtime Library with Independent Modules, even if such -propagation would otherwise violate the terms of GPLv3, provided that -all Target Code was generated by Eligible Compilation Processes. You -may then convey such a combination under terms of your choice, -consistent with the licensing of the Independent Modules. - -2. No Weakening of GCC Copyleft. - -The availability of this Exception does not imply any general -presumption that third-party software is unaffected by the copyleft -requirements of the license of GCC. - - -libquadmath/*.[hc]: - - Copyright (C) 2010 Free Software Foundation, Inc. - Written by Francois-Xavier Coudert - Written by Tobias Burnus - -This file is part of the libiberty library. -Libiberty is free software; you can redistribute it and/or -modify it under the terms of the GNU Library General Public -License as published by the Free Software Foundation; either -version 2 of the License, or (at your option) any later version. - -Libiberty 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 -Library General Public License for more details. - -libquadmath/math: - -atanq.c, expm1q.c, j0q.c, j1q.c, log1pq.c, logq.c: - Copyright 2001 by Stephen L. Moshier - - This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - - This library 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 - Lesser General Public License for more details. - -coshq.c, erfq.c, jnq.c, lgammaq.c, powq.c, roundq.c: - Changes for 128-bit __float128 are - Copyright (C) 2001 Stephen L. Moshier - and are incorporated herein by permission of the author. The author - reserves the right to distribute this material elsewhere under different - copying permissions. These modifications are distributed here under - the following terms: - - This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - - This library 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 - Lesser General Public License for more details. - -ldexpq.c: - * Conversion to long double by Ulrich Drepper, - * Cygnus Support, drepper@cygnus.com. - -cosq_kernel.c, expq.c, sincos_table.c, sincosq.c, sincosq_kernel.c, -sinq_kernel.c, truncq.c: - Copyright (C) 1997, 1999 Free Software Foundation, Inc. - - The GNU C Library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - - The GNU C Library 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 - Lesser General Public License for more details. - -isinfq.c: - * Written by J.T. Conklin . - * Change for long double by Jakub Jelinek - * Public domain. - -llroundq.c, lroundq.c, tgammaq.c: - Copyright (C) 1997, 1999, 2002, 2004 Free Software Foundation, Inc. - This file is part of the GNU C Library. - Contributed by Ulrich Drepper , 1997 and - Jakub Jelinek , 1999. - - The GNU C Library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - - The GNU C Library 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 - Lesser General Public License for more details. - -log10q.c: - Cephes Math Library Release 2.2: January, 1991 - Copyright 1984, 1991 by Stephen L. Moshier - Adapted for glibc November, 2001 - - This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - - This library 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 - Lesser General Public License for more details. - -remaining files: - - * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved. - * - * Developed at SunPro, a Sun Microsystems, Inc. business. - * Permission to use, copy, modify, and distribute this - * software is freely granted, provided that this notice - * is preserved. - - -gcc/go/gofrontend, libgo: - -Copyright (c) 2009 The Go Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - -libmpx: - Copyright (C) 2009-2014, Intel Corporation - All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - * Neither the name of Intel Corporation nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT - HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, - INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, - BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS - OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED - AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY - WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - POSSIBILITY OF SUCH DAMAGE. - - -D: -gdc-8 GNU D Compiler -libphobos-8-dev D standard runtime library - -The D source package is made up of the following components. - -The D front-end for GCC: - - d/* - -Copyright (C) 2004-2007 David Friedman -Modified by Vincenzo Ampolo, Michael Parrot, Iain Buclaw, (C) 2009, 2010 - -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. - -On Debian GNU/Linux systems, the complete text of the GNU General -Public License is in `/usr/share/common-licenses/GPL', version 2 of this -license in `/usr/share/common-licenses/GPL-2'. - - -The DMD Compiler implementation of the D programming language: - - d/dmd/* - -Copyright (c) 1999-2010 by Digital Mars -All Rights Reserved -written by Walter Bright -http://www.digitalmars.com -License for redistribution is by either the Artistic License or -the GNU General Public License (v1). - -On Debian GNU/Linux systems, the complete text of the GNU General -Public License is in `/usr/share/common-licenses/GPL', the Artistic -license in `/usr/share/common-licenses/Artistic'. - - -The Zlib data compression library: - - d/phobos/etc/c/zlib/* - - (C) 1995-2004 Jean-loup Gailly and Mark Adler - - This software is provided 'as-is', without any express or implied - warranty. In no event will the authors be held liable for any damages - arising from the use of this software. - - Permission is granted to anyone to use this software for any purpose, - including commercial applications, and to alter it and redistribute it - freely, subject to the following restrictions: - - 1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. - 2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. - 3. This notice may not be removed or altered from any source distribution. - - -The Phobos standard runtime library: - - d/phobos/* - -Unless otherwise marked within the file, each file in the source -is under the following licenses: - -Copyright (C) 2004-2005 by Digital Mars, www.digitalmars.com -Written by Walter Bright - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, in both source and binary form, subject to the following -restrictions: - - o The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. - o Altered source versions must be plainly marked as such, and must not - be misrepresented as being the original software. - o This notice may not be removed or altered from any source - distribution. - -By plainly marking modifications, something along the lines of adding to each -file that has been changed a "Modified by Foo Bar" line -underneath the "Written by" line would be adequate. - -The libhsail-rt library is licensed under the following terms: - - Copyright (C) 2015-2017 Free Software Foundation, Inc. - Contributed by Pekka Jaaskelainen - for General Processor Tech. - - Permission is hereby granted, free of charge, to any person obtaining a - copy of this software and associated documentation files - (the "Software"), to deal in the Software without restriction, including - without limitation the rights to use, copy, modify, merge, publish, - distribute, sublicense, and/or sell copies of the Software, and to - permit persons to whom the Software is furnished to do so, subject to - the following conditions: - - The above copyright notice and this permission notice shall be included - in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS - OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. - IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, - DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR - OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE - USE OR OTHER DEALINGS IN THE SOFTWARE. - -libhsail-rt/rt/fp16.c is licensed under the following terms: - - Copyright (C) 2008-2017 Free Software Foundation, Inc. - Contributed by CodeSourcery. - - This file 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 3, or (at your option) any - later version. - - This file 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. - - Under Section 7 of GPL version 3, you are granted additional - permissions described in the GCC Runtime Library Exception, version - 3.1, as published by the Free Software Foundation. - - You should have received a copy of the GNU General Public License and - a copy of the GCC Runtime Library Exception along with this program; - see the files COPYING3 and COPYING.RUNTIME respectively. If not, see - . - -newlib-nvptx-20yymmdd/: - -Upstream Authors: -newlib@sources.redhat.com -Jeff Johnston -Tom Fitzsimmons - -The newlib subdirectory is a collection of software from several sources. -Each file may have its own copyright/license that is embedded in the source -file. - -This list documents those licenses which are more restrictive than -a BSD-like license or require the copyright notice -to be duplicated in documentation and/or other materials associated with -the distribution. Certain licenses documented here only apply to -specific targets. Certain clauses only apply if you are building the -code as part of your binary. - -Note that this list may omit certain licenses that -only pertain to the copying/modifying of the individual source code. -If you are distributing the source code, then you do not need to -worry about these omitted licenses, so long as you do not modify the -copyright information already in place. - -Parts of this work are licensed under the terms of the GNU General -Public License. On Debian systems, the complete text of this license -can be found in /usr/share/common-licenses/GPL. - -Parts of this work are licensed under the terms of the GNU Library -General Public License. On Debian systems, the complete text of this -license be found in /usr/share/common-licenses/LGPL. - -(1) University of California, Berkeley - -[1a] - -Copyright (c) 1990 The Regents of the University of California. -All rights reserved. - -Redistribution and use in source and binary forms are permitted -provided that the above copyright notice and this paragraph are -duplicated in all such forms and that any documentation, -and other materials related to such distribution and use -acknowledge that the software was developed -by the University of California, Berkeley. The name of the -University may not be used to endorse or promote products derived -from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR -IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. - -[1b] - -Copyright (c) 1990 The Regents of the University of California. -All rights reserved. - -Redistribution and use in source and binary forms are permitted -provided that the above copyright notice and this paragraph are -duplicated in all such forms and that any documentation, -advertising materials, and other materials related to such -distribution and use acknowledge that the software was developed -by the University of California, Berkeley. The name of the -University may not be used to endorse or promote products derived -from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR -IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. - -[1c] - -Copyright (c) 1981, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 -The Regents of the University of California. -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. -3. All advertising materials mentioning features or use of this software - must display the following acknowledgement: - This product includes software developed by the University of - California, Berkeley and its contributors. -4. Neither the name of the University nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS -OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY -OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF -SUCH DAMAGE. - -[1d] - -Copyright (c) 1988, 1990, 1993 Regents of the University of California. -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. -3. Neither the name of the University nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS -OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY -OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF -SUCH DAMAGE. - -[1e] - -Copyright (c) 1982, 1986, 1989, 1991, 1993, 1994 -The Regents of the University of California. All rights reserved. -(c) UNIX System Laboratories, Inc. -All or some portions of this file are derived from material licensed -to the University of California by American Telephone and Telegraph -Co. or Unix System Laboratories, Inc. and are reproduced herein with -the permission of UNIX System Laboratories, Inc. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. -3. All advertising materials mentioning features or use of this software - must display the following acknowledgement: - This product includes software developed by the University of - California, Berkeley and its contributors. -4. Neither the name of the University nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS -OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY -OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF -SUCH DAMAGE. - -[1f] - -Copyright (c) 1987, 1988, 2000 Regents of the University of California. -All rights reserved. - -Redistribution and use in source and binary forms are permitted -provided that: (1) source distributions retain this entire copyright -notice and comment, and (2) distributions including binaries display -the following acknowledgement: ``This product includes software -developed by the University of California, Berkeley and its contributors'' -in the documentation or other materials provided with the distribution -and in all advertising materials mentioning features or use of this -software. Neither the name of the University nor the names of its -contributors may be used to endorse or promote products derived -from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR -IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. - -------------------------------------------------------------- - Please note that in some of the above alternate licenses, there is a - statement regarding that acknowledgement must be made in any - advertising materials for products using the code. This restriction - no longer applies due to the following license change: - - ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change - - In some cases the defunct clause has been removed in modified newlib code and - in some cases, the clause has been left as-is. -------------------------------------------------------------- - -(2) Cygwin (cygwin targets only) - -Copyright 2001 Red Hat, Inc. - -This software is a copyrighted work licensed under the terms of the -Cygwin license. Please consult the file "CYGWIN_LICENSE" for -details. - -(3) David M. Gay at AT&T - -The author of this software is David M. Gay. - -Copyright (c) 1991 by AT&T. - -Permission to use, copy, modify, and distribute this software for any -purpose without fee is hereby granted, provided that this entire notice -is included in all copies of any software which is or includes a copy -or modification of this software and in all copies of the supporting -documentation for such software. - -THIS SOFTWARE IS BEING PROVIDED "AS IS", WITHOUT ANY EXPRESS OR IMPLIED -WARRANTY. IN PARTICULAR, NEITHER THE AUTHOR NOR AT&T MAKES ANY -REPRESENTATION OR WARRANTY OF ANY KIND CONCERNING THE MERCHANTABILITY -OF THIS SOFTWARE OR ITS FITNESS FOR ANY PARTICULAR PURPOSE. - -(4) Advanced Micro Devices - -Copyright 1989, 1990 Advanced Micro Devices, Inc. - -This software is the property of Advanced Micro Devices, Inc (AMD) which -specifically grants the user the right to modify, use and distribute this -software provided this notice is not removed or altered. All other rights -are reserved by AMD. - -AMD MAKES NO WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, WITH REGARD TO THIS -SOFTWARE. IN NO EVENT SHALL AMD BE LIABLE FOR INCIDENTAL OR CONSEQUENTIAL -DAMAGES IN CONNECTION WITH OR ARISING FROM THE FURNISHING, PERFORMANCE, OR -USE OF THIS SOFTWARE. - -So that all may benefit from your experience, please report any problems -or suggestions about this software to the 29K Technical Support Center at -800-29-29-AMD (800-292-9263) in the USA, or 0800-89-1131 in the UK, or -0031-11-1129 in Japan, toll free. The direct dial number is 512-462-4118. - -Advanced Micro Devices, Inc. -29K Support Products -Mail Stop 573 -5900 E. Ben White Blvd. -Austin, TX 78741 -800-292-9263 - -(5) C.W. Sandmann - -Copyright (C) 1993 C.W. Sandmann - -This file may be freely distributed as long as the author's name remains. - -(6) Eric Backus - -(C) Copyright 1992 Eric Backus - -This software may be used freely so long as this copyright notice is -left intact. There is no warrantee on this software. - -(7) Sun Microsystems - -Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved. - -Developed at SunPro, a Sun Microsystems, Inc. business. -Permission to use, copy, modify, and distribute this -software is freely granted, provided that this notice -is preserved. - -(8) Hewlett Packard - -(c) Copyright 1986 HEWLETT-PACKARD COMPANY - -To anyone who acknowledges that this file is provided "AS IS" -without any express or implied warranty: - permission to use, copy, modify, and distribute this file -for any purpose is hereby granted without fee, provided that -the above copyright notice and this notice appears in all -copies, and that the name of Hewlett-Packard Company not be -used in advertising or publicity pertaining to distribution -of the software without specific, written prior permission. -Hewlett-Packard Company makes no representations about the -suitability of this software for any purpose. - -(9) Hans-Peter Nilsson - -Copyright (C) 2001 Hans-Peter Nilsson - -Permission to use, copy, modify, and distribute this software is -freely granted, provided that the above copyright notice, this notice -and the following disclaimer are preserved with no changes. - -THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR -IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE. - -(10) Stephane Carrez (m68hc11-elf/m68hc12-elf targets only) - -Copyright (C) 1999, 2000, 2001, 2002 Stephane Carrez (stcarrez@nerim.fr) - -The authors hereby grant permission to use, copy, modify, distribute, -and license this software and its documentation for any purpose, provided -that existing copyright notices are retained in all copies and that this -notice is included verbatim in any distributions. No written agreement, -license, or royalty fee is required for any of the authorized uses. -Modifications to this software may be copyrighted by their authors -and need not follow the licensing terms described here, provided that -the new terms are clearly indicated on the first page of each file where -they apply. - -(11) Christopher G. Demetriou - -Copyright (c) 2001 Christopher G. Demetriou -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. -3. The name of the author may not be used to endorse or promote products - derived from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR -IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES -OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. -IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF -THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -(12) SuperH, Inc. - -Copyright 2002 SuperH, Inc. All rights reserved - -This software is the property of SuperH, Inc (SuperH) which specifically -grants the user the right to modify, use and distribute this software -provided this notice is not removed or altered. All other rights are -reserved by SuperH. - -SUPERH MAKES NO WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, WITH REGARD TO -THIS SOFTWARE. IN NO EVENT SHALL SUPERH BE LIABLE FOR INDIRECT, SPECIAL, -INCIDENTAL OR CONSEQUENTIAL DAMAGES IN CONNECTION WITH OR ARISING FROM -THE FURNISHING, PERFORMANCE, OR USE OF THIS SOFTWARE. - -So that all may benefit from your experience, please report any problems -or suggestions about this software to the SuperH Support Center via -e-mail at softwaresupport@superh.com . - -SuperH, Inc. -405 River Oaks Parkway -San Jose -CA 95134 -USA - -(13) Royal Institute of Technology - -Copyright (c) 1999 Kungliga Tekniska Hgskolan -(Royal Institute of Technology, Stockholm, Sweden). -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - -3. Neither the name of KTH nor the names of its contributors may be - used to endorse or promote products derived from this software without - specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY KTH AND ITS CONTRIBUTORS ``AS IS'' AND ANY -EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL KTH OR ITS CONTRIBUTORS BE -LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR -BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, -WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR -OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF -ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -(14) Alexey Zelkin - -Copyright (c) 2000, 2001 Alexey Zelkin -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS -OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY -OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF -SUCH DAMAGE. - -(15) Andrey A. Chernov - -Copyright (C) 1997 by Andrey A. Chernov, Moscow, Russia. -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS -OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY -OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF -SUCH DAMAGE. - -(16) FreeBSD - -Copyright (c) 1997-2002 FreeBSD Project. -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS -OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY -OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF -SUCH DAMAGE. - -(17) S. L. Moshier - -Author: S. L. Moshier. - -Copyright (c) 1984,2000 S.L. Moshier - -Permission to use, copy, modify, and distribute this software for any -purpose without fee is hereby granted, provided that this entire notice -is included in all copies of any software which is or includes a copy -or modification of this software and in all copies of the supporting -documentation for such software. - -THIS SOFTWARE IS BEING PROVIDED "AS IS", WITHOUT ANY EXPRESS OR IMPLIED -WARRANTY. IN PARTICULAR, THE AUTHOR MAKES NO REPRESENTATION -OR WARRANTY OF ANY KIND CONCERNING THE MERCHANTABILITY OF THIS -SOFTWARE OR ITS FITNESS FOR ANY PARTICULAR PURPOSE. - -(18) Citrus Project - -Copyright (c)1999 Citrus Project, -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS -OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY -OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF -SUCH DAMAGE. - -(19) Todd C. Miller - -Copyright (c) 1998 Todd C. Miller -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. -3. The name of the author may not be used to endorse or promote products - derived from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, -INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY -AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL -THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, -EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, -PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; -OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, -WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR -OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF -ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -(20) DJ Delorie (i386) - -Copyright (C) 1991 DJ Delorie -All rights reserved. - -Redistribution and use in source and binary forms is permitted -provided that the above copyright notice and following paragraph are -duplicated in all such forms. - -This file is distributed WITHOUT ANY WARRANTY; without even the implied -warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. - -(21) Free Software Foundation LGPL License (*-linux* targets only) - - Copyright (C) 1990-1999, 2000, 2001 - Free Software Foundation, Inc. - This file is part of the GNU C Library. - Contributed by Mark Kettenis , 1997. - - The GNU C Library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - - The GNU C Library 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 - Lesser General Public License for more details. - - You should have received a copy of the GNU Lesser General Public - License along with the GNU C Library; if not, write to the Free - Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA - 02110-1301 USA - -(22) Xavier Leroy LGPL License (i[3456]86-*-linux* targets only) - -Copyright (C) 1996 Xavier Leroy (Xavier.Leroy@inria.fr) - -This program is free software; you can redistribute it and/or -modify it under the terms of the GNU Library General Public License -as published by the Free Software Foundation; either version 2 -of the License, or (at your option) any later version. - -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 Library General Public License for more details. - -(23) Intel (i960) - -Copyright (c) 1993 Intel Corporation - -Intel hereby grants you permission to copy, modify, and distribute this -software and its documentation. Intel grants this permission provided -that the above copyright notice appears in all copies and that both the -copyright notice and this permission notice appear in supporting -documentation. In addition, Intel grants this permission provided that -you prominently mark as "not part of the original" any modifications -made to this software or documentation, and that the name of Intel -Corporation not be used in advertising or publicity pertaining to -distribution of the software or the documentation without specific, -written prior permission. - -Intel Corporation provides this AS IS, WITHOUT ANY WARRANTY, EXPRESS OR -IMPLIED, INCLUDING, WITHOUT LIMITATION, ANY WARRANTY OF MERCHANTABILITY -OR FITNESS FOR A PARTICULAR PURPOSE. Intel makes no guarantee or -representations regarding the use of, or the results of the use of, -the software and documentation in terms of correctness, accuracy, -reliability, currentness, or otherwise; and you rely on the software, -documentation and results solely at your own risk. - -IN NO EVENT SHALL INTEL BE LIABLE FOR ANY LOSS OF USE, LOSS OF BUSINESS, -LOSS OF PROFITS, INDIRECT, INCIDENTAL, SPECIAL OR CONSEQUENTIAL DAMAGES -OF ANY KIND. IN NO EVENT SHALL INTEL'S TOTAL LIABILITY EXCEED THE SUM -PAID TO INTEL FOR THE PRODUCT LICENSED HEREUNDER. - -(24) Hewlett-Packard (hppa targets only) - -(c) Copyright 1986 HEWLETT-PACKARD COMPANY - -To anyone who acknowledges that this file is provided "AS IS" -without any express or implied warranty: - permission to use, copy, modify, and distribute this file -for any purpose is hereby granted without fee, provided that -the above copyright notice and this notice appears in all -copies, and that the name of Hewlett-Packard Company not be -used in advertising or publicity pertaining to distribution -of the software without specific, written prior permission. -Hewlett-Packard Company makes no representations about the -suitability of this software for any purpose. - -(25) Henry Spencer (only *-linux targets) - -Copyright 1992, 1993, 1994 Henry Spencer. All rights reserved. -This software is not subject to any license of the American Telephone -and Telegraph Company or of the Regents of the University of California. - -Permission is granted to anyone to use this software for any purpose on -any computer system, and to alter it and redistribute it, subject -to the following restrictions: - -1. The author is not responsible for the consequences of use of this - software, no matter how awful, even if they arise from flaws in it. - -2. The origin of this software must not be misrepresented, either by - explicit claim or by omission. Since few users ever read sources, - credits must appear in the documentation. - -3. Altered versions must be plainly marked as such, and must not be - misrepresented as being the original software. Since few users - ever read sources, credits must appear in the documentation. - -4. This notice may not be removed or altered. - -(26) Mike Barcroft - -Copyright (c) 2001 Mike Barcroft -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS -OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY -OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF -SUCH DAMAGE. - -(27) Konstantin Chuguev (--enable-newlib-iconv) - -Copyright (c) 1999, 2000 - Konstantin Chuguev. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS -OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY -OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF -SUCH DAMAGE. - - iconv (Charset Conversion Library) v2.0 - -(27) Artem Bityuckiy (--enable-newlib-iconv) - -Copyright (c) 2003, Artem B. Bityuckiy, SoftMine Corporation. -Rights transferred to Franklin Electronic Publishers. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS -OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY -OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF -SUCH DAMAGE. - -(28) Red Hat Incorporated - -Unless otherwise stated in each remaining newlib file, the remaining -files in the newlib subdirectory default to the following copyright. -It should be noted that Red Hat Incorporated now owns copyrights -belonging to Cygnus Solutions and Cygnus Support. - -Copyright (c) 1994, 1997, 2001, 2002, 2003, 2004 Red Hat Incorporated. -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - - The name of Red Hat Incorporated may not be used to endorse - or promote products derived from this software without specific - prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL RED HAT INCORPORATED BE LIABLE FOR ANY -DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND -ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - ----------------------------------------- -libgcrypt20 version 1.8.4-5 - - -Copyright: - -This package was debianized by Ivo Timmermans on -Fri, 3 Aug 2001 10:02:38 +0200. -It was taken over by Matthias Urlichs , and is now -maintained by Andreas Metzler Eric Dorland -, James Westby - - -It was downloaded from https://ftp.gnupg.org/gcrypt/libgcrypt/. - -Up to end of 2012 libgcrypt copyright was owned solely by FSF, since then -contributions without copyright assignment to the FSF have been integrated. - -Upstream Authors (from AUTHORS) -8X--------------------------------------------------- -List of Copyright holders -========================= - - Copyright (C) 1989,1991-2018 Free Software Foundation, Inc. - Copyright (C) 1994 X Consortium - Copyright (C) 1996 L. Peter Deutsch - Copyright (C) 1997 Werner Koch - Copyright (C) 1998 The Internet Society - Copyright (C) 1996-1999 Peter Gutmann, Paul Kendall, and Chris Wedgwood - Copyright (C) 1996-2006 Peter Gutmann, Matt Thomlinson and Blake Coverett - Copyright (C) 2003 Nikos Mavroyanopoulos - Copyright (C) 2006-2007 NTT (Nippon Telegraph and Telephone Corporation) - Copyright (C) 2012-2018 g10 Code GmbH - Copyright (C) 2012 Simon Josefsson, Niels Möller - Copyright (c) 2012 Intel Corporation - Copyright (C) 2013 Christian Grothoff - Copyright (C) 2013-2017 Jussi Kivilinna - Copyright (C) 2013-2014 Dmitry Eremin-Solenikov - Copyright (C) 2014 Stephan Mueller - Copyright (C) 2017 Bundesamt für Sicherheit in der Informationstechnik - - -Authors with a FSF copyright assignment -======================================= - -LIBGCRYPT Werner Koch 2001-06-07 -Assigns past and future changes. -Assignment for future changes terminated on 2012-12-04. -wk@gnupg.org -Designed and implemented Libgcrypt. - -GNUPG Matthew Skala 1998-08-10 -Disclaims changes. -mskala@ansuz.sooke.bc.ca -Wrote cipher/twofish.c. - -GNUPG Natural Resources Canada 1998-08-11 -Disclaims changes by Matthew Skala. - -GNUPG Michael Roth Germany 1998-09-17 -Assigns changes. -mroth@nessie.de -Wrote cipher/des.c. -Changes and bug fixes all over the place. - -GNUPG Niklas Hernaeus 1998-09-18 -Disclaims changes. -nh@df.lth.se -Weak key patches. - -GNUPG Rémi Guyomarch 1999-05-25 -Assigns past and future changes. (g10/compress.c, g10/encr-data.c, -g10/free-packet.c, g10/mdfilter.c, g10/plaintext.c, util/iobuf.c) -rguyom@mail.dotcom.fr - -ANY g10 Code GmbH 2001-06-07 -Assignment for future changes terminated on 2012-12-04. -Code marked with ChangeLog entries of g10 Code employees. - -LIBGCRYPT Timo Schulz 2001-08-31 -Assigns past and future changes. -twoaday@freakmail.de - -LIBGCRYPT Simon Josefsson 2002-10-25 -Assigns past and future changes to FSF (cipher/{md4,crc}.c, CTR mode, -CTS/MAC flags, self test improvements) -simon@josefsson.org - -LIBGCRYPT Moritz Schulte 2003-04-17 -Assigns past and future changes. -moritz@g10code.com - -GNUTLS Nikolaos Mavrogiannopoulos 2003-11-22 -nmav@gnutls.org -Original code for cipher/rfc2268.c. - -LIBGCRYPT The Written Word 2005-04-15 -Assigns past and future changes. (new: src/libgcrypt.pc.in, -src/Makefile.am, src/secmem.c, mpi/hppa1.1/mpih-mul3.S, -mpi/hppa1.1/udiv-qrnnd.S, mpi/hppa1.1/mpih-mul2.S, -mpi/hppa1.1/mpih-mul1.S, mpi/Makefile.am, tests/prime.c, -tests/register.c, tests/ac.c, tests/basic.c, tests/tsexp.c, -tests/keygen.c, tests/pubkey.c, configure.ac, acinclude.m4) - -LIBGCRYPT Brad Hards 2006-02-09 -Assigns Past and Future Changes -bradh@frogmouth.net -(Added OFB mode. Changed cipher/cipher.c, test/basic.c doc/gcrypt.tex. - added SHA-224, changed cipher/sha256.c, added HMAC tests.) - -LIBGCRYPT Hye-Shik Chang 2006-09-07 -Assigns Past and Future Changes -perky@freebsd.org -(SEED cipher) - -LIBGCRYPT Werner Dittmann 2009-05-20 -Assigns Past and Future Changes -werner.dittmann@t-online.de -(mpi/amd64, tests/mpitests.c) - -GNUPG David Shaw -Assigns past and future changes. -dshaw@jabberwocky.com -(cipher/camellia-glue.c and related stuff) - -LIBGCRYPT Andrey Jivsov 2010-12-09 -Assigns Past and Future Changes -openpgp@brainhub.org -(cipher/ecc.c and related files) - -LIBGCRYPT Ulrich Müller 2012-02-15 -Assigns Past and Future Changes -ulm@gentoo.org -(Changes to cipher/idea.c and related files) - -LIBGCRYPT Vladimir Serbinenko 2012-04-26 -Assigns Past and Future Changes -phcoder@gmail.com -(cipher/serpent.c) - - -Authors with a DCO -================== - -Andrei Scherer -2014-08-22:BF7CEF794F9.000003F0andsch@inbox.com: - -Christian Aistleitner -2013-02-26:20130226110144.GA12678@quelltextlich.at: - -Christian Grothoff -2013-03-21:514B5D8A.6040705@grothoff.org: - -Dmitry Eremin-Solenikov -2013-07-13:20130713144407.GA27334@fangorn.rup.mentorg.com: - -Dmitry Kasatkin -2012-12-14:50CAE2DB.80302@intel.com: - -Jérémie Courrèges-Anglas -2016-05-26:87bn3ssqg0.fsf@ritchie.wxcvbn.org - -Jussi Kivilinna -2012-11-15:20121115172331.150537dzb5i6jmy8@www.dalek.fi: - -Jussi Kivilinna -2013-05-06:5186720A.4090101@iki.fi: - -Markus Teich -2014-10-08:20141008180509.GA2770@trolle: - -Mathias L. Baumann -2017-01-30:07c06d79-0828-b564-d604-fd16c7c86ebe@sociomantic.com: - -Milan Broz -2014-01-13:52D44CC6.4050707@gmail.com: - -Peter Wu -2015-07-22:20150722191325.GA8113@al: - -Rafaël Carré -2012-04-20:4F91988B.1080502@videolan.org: - -Sergey V. -2013-11-07:2066221.5IYa7Yq760@darkstar: - -Stephan Mueller -2014-08-22:2008899.25OeoelVVA@myon.chronox.de: - -Tomáš Mráz -2012-04-16:1334571250.5056.52.camel@vespa.frost.loc: - -Vitezslav Cizek -2015-11-05:20151105131424.GA32700@kolac.suse.cz - -Werner Koch (g10 Code GmbH) -2012-12-05:87obi8u4h2.fsf@vigenere.g10code.de: - - -More credits -============ - -Libgcrypt used to be part of GnuPG but has been taken out into its own -package on 2000-12-21. - -Most of the stuff in mpi has been taken from an old GMP library -version by Torbjorn Granlund . - -The files cipher/rndunix.c and cipher/rndw32.c are based on those -files from Cryptlib. Copyright Peter Gutmann, Paul Kendall, and Chris -Wedgwood 1996-1999. - -The ECC code cipher/ecc.c was based on code by Sergi Blanch i Torne, -sergi at calcurco dot org. - -The implementation of the Camellia cipher has been taken from the -original NTT provided GPL source. - -The CAVS testing program tests/cavs_driver.pl is not to be considered -a part of libgcrypt proper. We distribute it merely for convenience. -It has a permissive license and is copyrighted by atsec information -security corporation. See the file for details. - -The file salsa20.c is based on D.J. Bernstein's public domain code and -taken from Nettle. Copyright 2012 Simon Josefsson and Niels Möller. - - - This file is free software; as a special exception the author gives - unlimited permission to copy and/or distribute it, with or without - modifications, as long as this notice is preserved. - - This file is distributed in the hope that it will be useful, but - WITHOUT ANY WARRANTY, to the extent permitted by law; without even the - implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -8X--------------------------------------------------- - -License: - -Most of the package is licensed under the GNU Lesser General Public -License (LGPL) version 2.1 (or later), except for helper and debugging -binaries. See below for details. The documentation is licensed under -the GPLv2 (or later), see below. - -Excerpt from upstream's README: - - The library is distributed under the terms of the GNU Lesser - General Public License (LGPL); see the file COPYING.LIB for the - actual terms. The helper programs (e.g. gcryptrnd and getrandom) - as well as the documentation are distributed under the terms of - the GNU General Public License (GPL); see the file COPYING for the - actual terms. - - This library used to be available under the GPL - this was changed - with version 1.1.7 with the rationale that there are now many free - crypto libraries available and many of them come with capabilities - similar to Libcrypt. We decided that to foster the use of - cryptography in Free Software an LGPLed library would make more - sense because it avoids problems due to license incompatibilities - between some Free Software licenses and the GPL. - - Please note that in many cases it is better for a library to be - licensed under the GPL, so that it provides an advantage for free - software projects. The Lesser GPL is so named because it does - less to protect the freedom of the users of the code that it - covers. See http://www.gnu.org/philosophy/why-not-lgpl.html for - more explanation. - -An example of the license headers of the LGPL is - -------------- - Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2006 - 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc. - - This file is part of Libgcrypt. - - Libgcrypt is free software; you can redistribute it and/or modify - it under the terms of the GNU Lesser General Public License as - published by the Free Software Foundation; either version 2.1 of - the License, or (at your option) any later version. - - Libgcrypt 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 Lesser General Public License for more details. - - You should have received a copy of the GNU Lesser General Public - License along with this program; if not, see . -------------- - -On Debian GNU/Linux systems, the complete text of the GNU Lesser -General Public License can be found in -`/usr/share/common-licenses/LGPL'; - -The documentation licensed under the GPL -------------- -Copyright @copyright{} 2000, 2002, 2003, 2004, 2006, 2007, 2008, 2009, 2011, 2012 Free Software Foundation, Inc. @* -Copyright @copyright{} 2012, 2013, 2016 2017 g10 Code GmbH - -@quotation -Permission is granted to copy, distribute and/or modify this document -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. The text of the license can be found in the -section entitled ``GNU General Public License''. -------------- - -Further details on licensing: -From upstream's LICENSES file -8X--------------------------------------------------- -Additional license notices for Libgcrypt. -*- org -*- - -This file contains the copying permission notices for various files in -the Libgcrypt distribution which are not covered by the GNU Lesser -General Public License (LGPL) or the GNU General Public License (GPL). - -These notices all require that a copy of the notice be included -in the accompanying documentation and be distributed with binary -distributions of the code, so be sure to include this file along -with any binary distributions derived from the GNU C Library. - -* BSD_3Clause - - For files: - - cipher/sha256-avx-amd64.S - - cipher/sha256-avx2-bmi2-amd64.S - - cipher/sha256-ssse3-amd64.S - - cipher/sha512-avx-amd64.S - - cipher/sha512-avx2-bmi2-amd64.S - - cipher/sha512-ssse3-amd64.S - -#+begin_quote - Copyright (c) 2012, Intel Corporation - - All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are - met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the - distribution. - - * Neither the name of the Intel Corporation nor the names of its - contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - - THIS SOFTWARE IS PROVIDED BY INTEL CORPORATION "AS IS" AND ANY - EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL INTEL CORPORATION OR - CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, - PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR - PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF - LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING - NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS - SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -#+end_quote - - - For files: - - random/jitterentropy-base.c - - random/jitterentropy.h - - random/rndjent.c (plus common Libgcrypt copyright holders) - -#+begin_quote - * Copyright Stephan Mueller , 2013 - * - * License - * ======= - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, and the entire permission notice in its entirety, - * including the disclaimer of warranties. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. The name of the author may not be used to endorse or promote - * products derived from this software without specific prior - * written permission. - * - * ALTERNATIVELY, this product may be distributed under the terms of - * the GNU General Public License, in which case the provisions of the GPL are - * required INSTEAD OF the above restrictions. (This clause is - * necessary due to a potential bad interaction between the GPL and - * the restrictions contained in a BSD-style copyright.) - * - * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED - * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, ALL OF - * WHICH ARE HEREBY DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE - * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT - * OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR - * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF - * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE - * USE OF THIS SOFTWARE, EVEN IF NOT ADVISED OF THE POSSIBILITY OF SUCH - * DAMAGE. -#+end_quote - -* X License - - For files: - - install.sh - -#+begin_quote - Copyright (C) 1994 X Consortium - - Permission is hereby granted, free of charge, to any person obtaining a copy - of this software and associated documentation files (the "Software"), to - deal in the Software without restriction, including without limitation the - rights to use, copy, modify, merge, publish, distribute, sublicense, and/or - sell copies of the Software, and to permit persons to whom the Software is - furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be included in - all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN - AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC- - TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - - Except as contained in this notice, the name of the X Consortium shall not - be used in advertising or otherwise to promote the sale, use or other deal- - ings in this Software without prior written authorization from the X Consor- - tium. -#+end_quote - -* Public domain - - For files: - - cipher/arcfour-amd64.S - -#+begin_quote - Author: Marc Bevand - Licence: I hereby disclaim the copyright on this code and place it - in the public domain. -#+end_quote - -* OCB license 1 - - For files: - - cipher/cipher-ocb.c - -#+begin_quote - OCB is covered by several patents but may be used freely by most - software. See http://web.cs.ucdavis.edu/~rogaway/ocb/license.htm . - In particular license 1 is suitable for Libgcrypt: See - http://web.cs.ucdavis.edu/~rogaway/ocb/license1.pdf for the full - license document; it basically says: - - License 1 — License for Open-Source Software Implementations of OCB - (Jan 9, 2013) - - Under this license, you are authorized to make, use, and - distribute open-source software implementations of OCB. This - license terminates for you if you sue someone over their - open-source software implementation of OCB claiming that you have - a patent covering their implementation. - - - - License for Open Source Software Implementations of OCB - January 9, 2013 - - 1 Definitions - - 1.1 “Licensor” means Phillip Rogaway. - - 1.2 “Licensed Patents” means any patent that claims priority to United - States Patent Application No. 09/918,615 entitled “Method and Apparatus - for Facilitating Efficient Authenticated Encryption,” and any utility, - divisional, provisional, continuation, continuations-in-part, reexamination, - reissue, or foreign counterpart patents that may issue with respect to the - aforesaid patent application. This includes, but is not limited to, United - States Patent No. 7,046,802; United States Patent No. 7,200,227; United - States Patent No. 7,949,129; United States Patent No. 8,321,675 ; and any - patent that issues out of United States Patent Application No. 13/669,114. - - 1.3 “Use” means any practice of any invention claimed in the Licensed Patents. - - 1.4 “Software Implementation” means any practice of any invention - claimed in the Licensed Patents that takes the form of software executing on - a user-programmable, general-purpose computer or that takes the form of a - computer-readable medium storing such software. Software Implementation does - not include, for example, application-specific integrated circuits (ASICs), - field-programmable gate arrays (FPGAs), embedded systems, or IP cores. - - 1.5 “Open Source Software” means software whose source code is published - and made available for inspection and use by anyone because either (a) the - source code is subject to a license that permits recipients to copy, modify, - and distribute the source code without payment of fees or royalties, or - (b) the source code is in the public domain, including code released for - public use through a CC0 waiver. All licenses certified by the Open Source - Initiative at opensource.org as of January 9, 2013 and all Creative Commons - licenses identified on the creativecommons.org website as of January 9, - 2013, including the Public License Fallback of the CC0 waiver, satisfy these - requirements for the purposes of this license. - - 1.6 “Open Source Software Implementation” means a Software - Implementation in which the software implicating the Licensed Patents is - Open Source Software. Open Source Software Implementation does not include - any Software Implementation in which the software implicating the Licensed - Patents is combined, so as to form a larger program, with software that is - not Open Source Software. - - 2 License Grant - - 2.1 License. Subject to your compliance with the term s of this license, - including the restriction set forth in Section 2.2, Licensor hereby - grants to you a perpetual, worldwide, non-exclusive, non-transferable, - non-sublicenseable, no-charge, royalty-free, irrevocable license to practice - any invention claimed in the Licensed Patents in any Open Source Software - Implementation. - - 2.2 Restriction. If you or your affiliates institute patent litigation - (including, but not limited to, a cross-claim or counterclaim in a lawsuit) - against any entity alleging that any Use authorized by this license - infringes another patent, then any rights granted to you under this license - automatically terminate as of the date such litigation is filed. - - 3 Disclaimer - YOUR USE OF THE LICENSED PATENTS IS AT YOUR OWN RISK AND UNLESS REQUIRED - BY APPLICABLE LAW, LICENSOR MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY - KIND CONCERNING THE LICENSED PATENTS OR ANY PRODUCT EMBODYING ANY LICENSED - PATENT, EXPRESS OR IMPLIED, STATUT ORY OR OTHERWISE, INCLUDING, WITHOUT - LIMITATION, WARRANTIES OF TITLE, MERCHANTIBILITY, FITNESS FOR A PARTICULAR - PURPOSE, OR NONINFRINGEMENT. IN NO EVENT WILL LICENSOR BE LIABLE FOR ANY - CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, - ARISING FROM OR RELATED TO ANY USE OF THE LICENSED PATENTS, INCLUDING, - WITHOUT LIMITATION, DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, PUNITIVE - OR SPECIAL DAMAGES, EVEN IF LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF - SUCH DAMAGES PRIOR TO SUCH AN OCCURRENCE. -#+end_quote -8X--------------------------------------------------- - - -On Debian GNU/Linux systems, the text of the GNU General Public License, -version 2 can be found in `/usr/share/common-licenses/GPL-2'. - - ----------------------------------------- -libgmp10 version 2:6.1.2+dfsg-4 - - -Copyright: - - GMP Debian Package - ------------------ - -This gmp package was built for Debian by - - Steve M. Robbins - Philipp Matthias Hahn - -from sources obtained at http://gmplib.org/ . - - - GMP Source Code - --------------- - -Copyright 1991, 1996, 1999, 2000, 2007 Free Software Foundation, Inc. - -This file is part of the GNU MP Library. - -The GNU MP Library is free software; you can redistribute it and/or modify -it under the terms of either: - - * the GNU Lesser General Public License as published by the Free - Software Foundation; either version 3 of the License, or (at your - option) any later version. - -or - - * 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. - -or both in parallel, as here. - -The GNU MP Library 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. - -You should have received copies of the GNU General Public License and the -GNU Lesser General Public License along with the GNU MP Library. If not, -see https://www.gnu.org/licenses/. - - -The GNU Lesser General Public License v3 text is contained in /usr/share/common-licenses/LGPL-3. -The GNU General Public License v2 text is contained in /usr/share/common-licenses/GPL-2. -The GNU General Public License v3 text is contained in /usr/share/common-licenses/GPL-3. - - - GMP Documentation - ----------------- - -The documentation is released under the GNU Free Documentation License -(GFDL) and it has cover texts. As such, it has been determined not to -meet the Debian Free Software Guidelines, and is not shipped in the -debian packages. - -The demo code in the -doc package is covered either by the LGPL, or -under the GNU General Public License /usr/share/common-licenses/GPL. -See the individual source files to determine the license under which -it falls. - - ----------------------------------------- -libgnutls30 version 3.6.7-4+deb10u5 - - -Copyright: - -This package was debianized by Ivo Timmermans on -Fri, 3 Aug 2001 10:00:42 +0200. -It was later taken over by Matthias Urlichs and is now -maintained by Andreas Metzler Eric Dorland -, James Westby - - -It was downloaded from https://www.gnupg.org/ftp/gcrypt/gnutls/ - -Upstream Authors (from AUTHORS file): ------------------------------------- - -The authors list is autogenerated from the git history; sorted by number of commits - -Nikos Mavrogiannopoulos -Simon Josefsson -Tim Rühsen -Dmitry Eremin-Solenikov -Daiki Ueno -Ludovic Courtès -Timo Schulz -Jonathan Bastien-Filiatrault -Alon Bar-Lev -Andreas Metzler -Martin Storsjo -Tim Kosse -Tom Vrancken -Daniel Kahn Gillmor -Fabian Keil -Fabio Fiorina -Stef Walter -Armin Burgmeier -Andrew McDonald -Alex Gaynor -Martin Ukrop -Jaak Ristioja -Attila Molnar -Hugo Beauzée-Luyssen -Simo Sorce -Martin Sucha -Stefan Berger -David Woodhouse -Jan Vcelak -Kevin Cernekee -Ander Juaristi -Stefan Sørensen -Adam Sampson -Alfredo Pironti -Anderson Toshiyuki Sasaki -Brad Hards -Michael Weiser -Patrick Pelletier -Rolf Eike Beer -Sjoerd Simons -Thomas Klute -Wolfgang Meyer zu Bergsten -Christian Grothoff -Daniel P. Berrange -Gustavo Zacarias -Jakub Jelen -Jiří Klimeš -Kurt Roeckx -Peter Wu -Stefan Bühler -Thierry Quemerais -Alessandro Ghedini -Alex Monk -David Caldwell -Diego Elio Pettenò -Fabrice Fontaine -Giuseppe Scrivano -Hubert Kario -Ilya Tumaykin -James Bottomley -Karl Tarbe -Ke Zhao -Mark Brand -Matthias-Christian Ott -Maya Rashish -Michał Górny -Petr Písař -Roman Bogorodskiy -Stephan Mueller -Steve Dispensa -raspa0 -Alban Crequy -Alexander Kanavin -Alexandre Bique -Andreas Schneider -Andreas Schwab -Avinash Sonawane -Bas van Schaik -Bjørn Christensen -Carolin Latze -Chen Hongzhi -Chris Barry -Colin Walters -Dan Fandrich -David Walker -David Weber -Elias Pipping -Frank Morgner -Hani Benhabiles -Ilya V. Matveychikov -Jared Wong -Jason Spafford -Jay Foad -Jeffrey Walton -Jens Lechtenboerger -Jussi Kukkonen -Lucas Fisher -Ludwig Nussel -Luis G.F -Luke Dashjr -Maks Naumov -Marcin Cieślak -Marcus Meissner -Marga Manterola -Marti Raudsepp -Matt Turner -Matt Whitlock -Micah Anderson -Michael Catanzaro -Nick Alcock -Nicolas Dufresne -Nils Maier -Olga -Philippe Proulx -Philippe Widmer -R. Andrew Bailey -Raj Raman -Rical Jasan -Rickard Bellgrim -Robert Scheck -Roberto Newmon -Rowan Thorpe -SUMIT AGGARWAL -Saurav Babu -Sebastian Dröge -Simon Arlott -Steve Lhomme -Thomas Klausner -Tobias Polzer -Tomas Hoger -Tristan Matthews -Vitezslav Cizek -Werner Koch -Yuriy M. Kaminskiy -sskaje -Łukasz Stelmach - - -The translators list is autogenerated from po file history - -Anders Jonsson -Benno Schulenberg -Felipe Castro -Francisco Javier Serrador -Jakub Bogusz -Jorma Karvonen -Mario Blättermann -Milo Casagrande -Mingye Wang (Arthur2e5) -Petr Pisar -Rafael Fontenelle -Sharuzzaman Ahmat Raslan -Stéphane Aulery -Trần Ngọc Quân -Yuri Chornoivan -Мирослав Николић ------------------------------------- - -License: The main library is licensed under GNU Lesser -General Public License (LGPL) version 2.1+, Gnutls Extra (which is currently -just the openssl wrapper library), build system, testsuite and commandline -utilities are licenced under the GNU General Public License version 3+. The -Guile bindings use the same license as the respective underlying library, -i.e. LGPLv2.1+ for the main library and GPLv3+ for Gnutls extra. - -However to be able to use and link against libgnutls a program needs to be -available under a license compatible with LGPLv3+ or GPLv2+ since GnuTLS -requires nettle which requires GMP. GMP (>= 6.0.0) is dual licensed -LGPLv3+ or GPLv2+. Starting with 3.5.7 libunistring is needed, too. It also -is dual licensed LGPLv3+ or GPLv2+ (libunistring 0.9.7 and above, earlier -version were LGPLv3+ only.) - -Copyright: --------------------- -/* -*- c -*- - * Copyright (C) 2000-2017 Free Software Foundation, Inc. - * - * Author: Nikos Mavrogiannopoulos - * - * This file is part of GnuTLS. - * - * The GnuTLS is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public License - * as published by the Free Software Foundation; either version 2.1 of - * the License, or (at your option) any later version. - * - * This library 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 - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public License - * along with this program. If not, see - * - */ --------------------- -/* - * Copyright (C) 2004-2015 Free Software Foundation, Inc. - * Copyright (c) 2002 Andrew McDonald - * - * This file is part of GnuTLS-EXTRA. - * - * GnuTLS-extra 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 3 of the License, or - * (at your option) any later version. - * - * GnuTLS-extra 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. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ --------------------- - -The documentation is distributed under the terms of the GNU Free -Documentation License (FDL): --------------------- -Copyright (C) 2001-2019 Free Software Foundation, Inc. -Copyright (C) 2001-2019 Nikos Mavrogiannopoulos - - Permission is granted to copy, distribute and/or modify this - document under the terms of the GNU Free Documentation License, - Version 1.3 or any later version published by the Free Software - Foundation; with no Invariant Sections, no Front-Cover Texts, and - no Back-Cover Texts. A copy of the license is included in the - section entitled "GNU Free Documentation License". --------------------- - --------------------- -From December 2012 onwards FSF is not the sole copyright holder of GnuTLS -anymore (See ), -the headers currently also list these authors/copyright holders:: -* Nikos Mavrogiannopoulos -* KU Leuven -* INRIA Paris-Rocquencourt -* Lucas Fisher -* Sean Buckheister -* Frank Morgner -* Bardenheuer GmbH, Munich and Bundesdruckerei GmbH, Berlin -* Adam Sampson -* Christian Grothoff -* Andrew McDonald , -copyright is not assigned to the FSF. The code is licensed under the -CRYPTOGAMS license. - --------------------- -# Copyright (c) 2011-2016, Andy Polyakov by -# All rights reserved. -# -# Redistribution and use in source and binary forms, with or without -# modification, are permitted provided that the following conditions -# are met: -# -# * Redistributions of source code must retain copyright notices, -# this list of conditions and the following disclaimer. -# -# * Redistributions in binary form must reproduce the above -# copyright notice, this list of conditions and the following -# disclaimer in the documentation and/or other materials -# provided with the distribution. -# -# * Neither the name of the Andy Polyakov nor the names of its -# copyright holder and contributors may be used to endorse or -# promote products derived from this software without specific -# prior written permission. -# -# ALTERNATIVELY, provided that this notice is retained in full, this -# product may be distributed under the terms of the GNU General Public -# License (GPL), in which case the provisions of the GPL apply INSTEAD OF -# those given above. -# -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER AND CONTRIBUTORS -# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------- - -============================================ - -lib/extras/randomart.* - - -Upstream Authors: Markus Friedl - Alexander von Gernler - -Copyright: - * Copyright (c) 2000, 2001 Markus Friedl. All rights reserved. - * Copyright (c) 2008 Alexander von Gernler. All rights reserved. -License: - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR - * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, - * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT - * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -============================================ - -lib/accelerated/x86/elf/aes-ssse3-x86.s -lib/accelerated/x86/macosx/aes-ssse3-x86.s - -Upstream Authors: Mike Hamburg (Stanford University) - -Copyright: - * Mike Hamburg (Stanford University), 2009. -License: - Public domain. - -============================================ - -lib/system/inet_pton.c - -Upstream Authors: Internet Software Consortium - -Copyright/License: - * Copyright (c) 1996,1999 by Internet Software Consortium. - * - * Permission to use, copy, modify, and distribute this software for any - * purpose with or without fee is hereby granted, provided that the above - * copyright notice and this permission notice appear in all copies. - * - * THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS - * ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES - * OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE - * CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL - * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR - * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS - * ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS - * SOFTWARE. - -============================================ - -lib/extras/hex.* -Author: Rusty Russell -Comment: http://ccodearchive.net/info/str/hex.html -License: CC0 license - Statement of Purpose - - 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"). - - 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. - - 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. - - 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: - - the right to reproduce, adapt, distribute, perform, display, communicate, and translate a Work; - moral rights retained by the original author(s) and/or performer(s); - publicity and privacy rights pertaining to a person's image or likeness depicted in a Work; - rights protecting against unfair competition in regards to a Work, subject to the limitations in paragraph 4(a), below; - rights protecting the extraction, dissemination, use and reuse of data in a Work; - 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 - other similar, equivalent or corresponding rights throughout the world based on applicable law or treaty, and any national implementations thereof. - - 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. - - 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. - - 4. Limitations and Disclaimers. - - No trademark or patent rights held by Affirmer are waived, abandoned, surrendered, licensed or otherwise affected by this document. - 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. - 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. - 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. - -============================================ - -doc/examples/tlsproxy/ -Copyright: Copyright (c) 2016 Wrymouth Innovation Ltd -License: The MIT License (MIT) - Permission is hereby granted, free of charge, to any person obtaining a - copy of this software and associated documentation files (the "Software"), - to deal in the Software without restriction, including without limitation - the rights to use, copy, modify, merge, publish, distribute, sublicense, - and/or sell copies of the Software, and to permit persons to whom the - Software is furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be included - in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL - THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR - OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, - ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR - OTHER DEALINGS IN THE SOFTWARE. - -============================================ - -tests/pkcs11/pkcs11-mock.* -Author: Jaroslav Imrich -Copyright (c) 2015 JWC s.r.o. -License - for open source projects: - * PKCS11-MOCK is available under the terms of the GNU Affero General - * Public License version 3 as published by the Free Software Foundation. - * Please see for more details. - * - for other types of projects: - * PKCS11-MOCK is available under the terms of flexible commercial license. - * Please contact JWC s.r.o. at for more details. - On Debian systems the complete text of the license can be found in - /usr/share/doc/libgnutls30/AGPLv3.license - -============================================ - -lib/unistring/* -Author: Bruno Haible -Copyright (C) 2009-2019 Free Software Foundation, Inc. -Comment: Debian package is built against libunistring-dev package. -License: LGPLv3+_or_GPLv2+ - -fuzz/gnutls_base64_decoder_fuzzer.c fuzz/gnutls_base64_encoder_fuzzer.c - fuzz/gnutls_ocsp_req_parser_fuzzer.c - fuzz/gnutls_ocsp_resp_parser_fuzzer.c fuzz/gnutls_server_fuzzer.c - fuzz/gnutls_set_trust_file_fuzzer.c -Copyright 2017 Red Hat, Inc. -Comment: On Debian systems the complete license text is available in - /usr/share/common-licenses/Apache-2.0 -License - # Licensed under the Apache License, Version 2.0 (the "License"); - # you may not use this file except in compliance with the License. - # You may obtain a copy of the License at - # - # http://www.apache.org/licenses/LICENSE-2.0 - # - # Unless required by applicable law or agreed to in writing, software - # distributed under the License is distributed on an "AS IS" BASIS, - # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - # See the License for the specific language governing permissions and - # limitations under the License. - - -fuzz/gnutls_dn_parser_fuzzer.c fuzz/gnutls_idna_parser_fuzzer.c - fuzz/gnutls_pkcs12_key_parser_fuzzer.c fuzz/gnutls_pkcs8_key_parser_fuzzer.c - fuzz/gnutls_reverse_idna_parser_fuzzer.c -Copyright 2016 Nikos Mavrogiannopoulos -Comment: On Debian systems the complete license text is available in - /usr/share/common-licenses/Apache-2.0 -License - # Licensed under the Apache License, Version 2.0 (the "License"); - # you may not use this file except in compliance with the License. - # You may obtain a copy of the License at - # - # http://www.apache.org/licenses/LICENSE-2.0 - # - # Unless required by applicable law or agreed to in writing, software - # distributed under the License is distributed on an "AS IS" BASIS, - # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - # See the License for the specific language governing permissions and - # limitations under the License. - - -fuzz/gnutls_pkcs7_parser_fuzzer.c fuzz/gnutls_private_key_parser_fuzzer.c - fuzz/gnutls_x509_parser_fuzzer.c -Copyright 2016 Google Inc. -Comment: On Debian systems the complete license text is available in - /usr/share/common-licenses/Apache-2.0 -License - # Licensed under the Apache License, Version 2.0 (the "License"); - # you may not use this file except in compliance with the License. - # You may obtain a copy of the License at - # - # http://www.apache.org/licenses/LICENSE-2.0 - # - # Unless required by applicable law or agreed to in writing, software - # distributed under the License is distributed on an "AS IS" BASIS, - # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - # See the License for the specific language governing permissions and - # limitations under the License. - - -fuzz/gnutls_client_fuzzer.c -Copyright 2016 Google Inc. - Copyright 2017 Red Hat, Inc. -Comment: On Debian systems the complete license text is available in - /usr/share/common-licenses/Apache-2.0 -License - # Licensed under the Apache License, Version 2.0 (the "License"); - # you may not use this file except in compliance with the License. - # You may obtain a copy of the License at - # - # http://www.apache.org/licenses/LICENSE-2.0 - # - # Unless required by applicable law or agreed to in writing, software - # distributed under the License is distributed on an "AS IS" BASIS, - # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - # See the License for the specific language governing permissions and - # limitations under the License. - - -fuzz/main.c -Copyright 2017 Tim Ruehsen -License - * Permission is hereby granted, free of charge, to any person obtaining a - * copy of this software and associated documentation files (the "Software"), - * to deal in the Software without restriction, including without limitation - * the rights to use, copy, modify, merge, publish, distribute, sublicense, - * and/or sell copies of the Software, and to permit persons to whom the - * Software is furnished to do so, subject to the following conditions: - * - * The above copyright notice and this permission notice shall be included in - * all copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING - * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER - * DEALINGS IN THE SOFTWARE. - - -fuzz/mem.h fuzz/psk.h fuzz/srp.h fuzz/certs.h - fuzz/gnutls_psk_server_fuzzer.c - fuzz/gnutls_psk_client_fuzzer.c fuzz/gnutls_srp_client_fuzzer.c - fuzz/gnutls_srp_server_fuzzer.c -Copyright 2017 Nikos Mavrogiannopoulos -License - * Permission is hereby granted, free of charge, to any person obtaining a - * copy of this software and associated documentation files (the "Software"), - * to deal in the Software without restriction, including without limitation - * the rights to use, copy, modify, merge, publish, distribute, sublicense, - * and/or sell copies of the Software, and to permit persons to whom the - * Software is furnished to do so, subject to the following conditions: - * - * The above copyright notice and this permission notice shall be included in - * all copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING - * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER - * DEALINGS IN THE SOFTWARE. - -lib/nettle/int/drbg-aes.h lib/nettle/int/dsa-fips.h - lib/nettle/int/dsa-keygen-fips186.c lib/nettle/int/dsa-validate.c - lib/nettle/int/provable-prime.c -Copyright 2013 Red Hat | Copyright 2013, 2014 Red Hat -License: LGPLv3+_or_GPLv2+ - - -lib/nettle/int/drbg-aes-self-test.c -Copyright 2013 Red Hat - 2008 Free Software Foundation, Inc. -License: LGPLv3+_or_GPLv2+ - - -lib/nettle/int/rsa-keygen-fips186.c -Copyright 2002 Niels Möller - Copyright 2014 Red Hat -License: LGPLv3+_or_GPLv2+ - -lib/nettle/gost/bignum-le.c lib/nettle/gost/bignum-le.h -Copyright (C) 2001 Niels Möller -License: LGPLv3+_or_GPLv2+ - -lib/nettle/gost/ecc-gost256cpa.c lib/nettle/gost/ecc-gost512a.c - lib/nettle/gost/ecc-internal.h -Copyright (C) 2013, 2014 Niels Möller -License: LGPLv3+_or_GPLv2+ - -lib/nettle/gost/ecc-gost-curve.h lib/nettle/gost/ecc-gost-hash.c -Copyright (C) 2013 Niels Möller -License: LGPLv3+_or_GPLv2+ - -lib/nettle/gost/ecc-gostdsa-sign.c lib/nettle/gost/ecc-gostdsa-verify.c -Copyright (C) 2015 Dmitry Eremin-Solenikov - Copyright (C) 2013, 2014 Niels Möller -License: LGPLv3+_or_GPLv2+ - -lib/nettle/gost/gmp-glue.h -Copyright (C) 2013 Niels Möller - Copyright (C) 2013 Red Hat -License: LGPLv3+_or_GPLv2+ - -lib/nettle/gost/gost28147.h -Copyright (C) 2015 Dmitry Eremin-Solenikov - Copyright (C) 2012 Nikos Mavrogiannopoulos, Niels Möller -License: LGPLv3+_or_GPLv2+ - -lib/nettle/gost/gostdsa.h lib/nettle/gost/gostdsa-sign.c - lib/nettle/gost/gostdsa-verify.c -Copyright (C) 2015 Dmity Eremin-Solenikov - Copyright (C) 2013 Niels Möller -License: LGPLv3+_or_GPLv2+ - -lib/nettle/gost/gosthash94.h lib/nettle/gost/gosthash94-meta.c - lib/nettle/gost/streebog-meta.c -Copyright (C) 2012 Nikos Mavrogiannopoulos, Niels Möller -License: LGPLv3+_or_GPLv2+ - -lib/nettle/gost/hmac-gost.h -Copyright (C) 2001, 2002 Niels Möller -License: LGPLv3+_or_GPLv2+ - -lib/nettle/gost/hmac-gosthash94.c lib/nettle/gost/hmac-streebog.c -Copyright (C) 2016 Dmitry Eremin-Solenikov -License: LGPLv3+_or_GPLv2+ - -lib/nettle/gost/nettle-internal.h -Copyright (C) 2002, 2014 Niels Möller -License: LGPLv3+_or_GPLv2+ - -lib/nettle/gost/nettle-write.h -Copyright (C) 2010 Niels Möller -License: LGPLv3+_or_GPLv2+ - -lib/nettle/gost/pbkdf2-gost.h -Copyright (C) 2012 Simon Josefsson -License: LGPLv3+_or_GPLv2+ - -lib/nettle/gost/pbkdf2-hmac-gosthash94.c lib/nettle/gost/pbkdf2-hmac-streebog.c -Copyright (C) 2016 Dmitry Eremin-Solenikov - Copyright (C) 2012 Simon Josefsson -License: LGPLv3+_or_GPLv2+ - -lib/nettle/gost/streebog.c -Copyright (C) 2013-2015 Dmitry Eremin-Solenikov - Based on my code in libgcrypt. -License: LGPLv3+_or_GPLv2+ - -lib/nettle/gost/streebog.h -Copyright (C) 2015 Dmitry Eremin-Solenikov -License: LGPLv3+_or_GPLv2+ - -lib/nettle/backport/cfb8.c lib/nettle/backport/cfb8.h -Copyright (C) 2015, 2017 Dmitry Eremin-Solenikov - Copyright (C) 2001, 2011 Niels Möller -License: LGPLv3+_or_GPLv2+ - -lib/nettle/backport/cmac.c -Copyright (C) Stefan Metzmacher 2012 - Copyright (C) Jeremy Allison 2012 - Copyright (C) Michael Adam 2012 - Copyright (C) 2017, Red Hat Inc. -License: LGPLv3+_or_GPLv2+ - -lib/nettle/backport/cmac.h -Copyright (C) 2017 Red Hat, Inc. -License: LGPLv3+_or_GPLv2+ - -lib/nettle/gost/gostdsa-mask.c -Copyright (C) 2018 Dmitry Eremin-Solenikov -License: LGPLv3+_or_GPLv2+ - -lib/nettle/gost/gost28147.c -Copyright: 2015-2015 Dmitry Eremin-Solenikov - Copyright: 2009-2012 Aleksey Kravchenko -License: - based on Russian standard GOST 28147-89 - * For English description, check RFC 5830. - * S-Boxes are expanded from the tables defined in RFC4357: - * https://tools.ietf.org/html/rfc4357 - * - * Permission is hereby granted, free of charge, to any person obtaining a - * copy of this software and associated documentation files (the - * "Software"), to deal in the Software without restriction, including - * without limitation the rights to use, copy, modify, merge, publish, - * distribute, sublicense, and/or sell copies of the Software, and to - * permit persons to whom the Software is furnished to do so, subject to - * the following conditions: - * - * The above copyright notice and this permission notice shall be included - * in all copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS - * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. - * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY - * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, - * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE - * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -lib/nettle/gost/gosthash94.c -Copyright: 2009-2012 Aleksey Kravchenko - * based on the Russian Standard GOST R 34.11-94. - * English description in RFC 5831. - * See also RFC 4357. - * - * Permission is hereby granted, free of charge, to any person obtaining a - * copy of this software and associated documentation files (the - * "Software"), to deal in the Software without restriction, including - * without limitation the rights to use, copy, modify, merge, publish, - * distribute, sublicense, and/or sell copies of the Software, and to - * permit persons to whom the Software is furnished to do so, subject to - * the following conditions: - * - * The above copyright notice and this permission notice shall be included - * in all copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS - * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. - * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY - * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, - * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE - * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - - -lib/nettle/rnd-fuzzer.c -Copyright 2017 Red Hat - Copyright 1995-2017 Free Software Foundation, Inc. -License - * This file is part of the GNU C Library. - * Contributed by Ulrich Drepper , August 1995. - * - * This file is part of GnuTLS. - * - * Libgcrypt is free software; you can redistribute it and/or modify - * it under the terms of the GNU Lesser General Public License as - * published by the Free Software Foundation; either version 2.1 of - * the License, or (at your option) any later version. - * - * Libgcrypt 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 Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this program; if not, see . - -License: LGPLv3+_or_GPLv2+ - * This program is free software: you can redistribute it and/or - * modify it under the terms of either: - * - * * the GNU Lesser General Public License as published by the Free - * Software Foundation; either version 3 of the License, or (at your - * option) any later version. - * - * or - * - * * 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. - * - * or both in parallel, as here. - * - * 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. - * - * You should have received copies of the GNU General Public License and - * the GNU Lesser General Public License along with this program. If - * not, see http://www.gnu.org/licenses/. - -Files: tests/resume-lifetime.c -License: GPLv3+ -Copyright: 2016-2018 Red Hat, Inc - -Files: tests/no-extensions.c -License: GPLv3+ -Copyright: 2019 Red Hat, Inc - -Files: tests/resume-with-record-size-limit.c -License: GPLv3+ -Copyright: 2004-2016 Free Software Foundation, Inc. - 2013 Adam Sampson - 2016-2019 Red Hat, Inc. - - ----------------------------------------- -libgpg-error0 version 1.35-1 - - -Copyright: - -Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ -Upstream-Name: libgpg-error -Upstream-Contact: gnupg-devel@gnupg.org -Source: https://gnupg.org/ftp/gcrypt/libgpg-error/ - -Files: * -Copyright: 2001-2004, 2010, 2012-2018, g10 Code GmbH -License: LGPL-2.1+ - -Files: src/b64dec.c -Copyright: 2008, 2011 Free Software Foundation, Inc. - 2008, 2011, 2016 g10 Code GmbH -License: LGPL-2.1+ - -Files: src/estream-printf.h src/estream-printf.c src/estream.c -Copyright: 2004-2012, 2014-2017 g10 Code GmbH -License: LGPL-2.1+ or BSD-3-clause - -Files: src/w32-estream.c -Copyright: 2000 Werner Koch (dd9jn) - 2001, 2002, 2003, 2004, 2007, 2010, 2016 g10 Code GmbH -License: LGPL-2.1+ - -Files: src/gettext.h -Copyright: 1995-1998, 2000-2002 Free Software Foundation, Inc. -License: LGPL-2.1+ - -Files: src/gpg-error-config.in -Copyright: 1999, 2002, 2003 Free Software Foundation, Inc. -License: g10-permissive - -Files: src/mkheader.c -Copyright: 2010 Free Software Foundation, Inc. - 2014 g10 Code GmbH -License: g10-permissive - -Files: src/posix-lock.c -Copyright: 2005-2009 Free Software Foundation, Inc. - 2014 g10 Code GmbH -License: LGPL-2.1+ - -Files: src/w32-gettext.c -Copyright: 1995, 1996, 1997, 1999, 2005, 2007, 2008, 2010 Free Software Foundation, Inc. -License: LGPL-2.1+ - -Files: doc/yat2m.c -Copyright: 2005, 2013, 2015, 2016 g10 Code GmbH - 2006, 2008, 2011 Free Software Foundation, Inc. -License: GPL-3+ - -Files: potomo -Copyright: 2008 g10 Code GmbH - 2010 Free Software Foundation, Inc. -License: g10-permissive - -License: g10-permissive - This file is free software; as a special exception the author gives - unlimited permission to copy and/or distribute it, with or without - modifications, as long as this notice is preserved. - . - This file is distributed in the hope that it will be useful, but - WITHOUT ANY WARRANTY, to the extent permitted by law; without even the - implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. - -License: LGPL-2.1+ - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU Lesser General Public License as - published by the Free Software Foundation; either version 2.1 - of the License, or (at your option) any later version. - . - 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 Lesser General Public License for more details. - . - You should have received a copy of the GNU Lesser General Public - License along with this program; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. - . - On Debian systems, the complete text of the GNU Lesser General Public License - version 2.1 can be found in /usr/share/common-licenses/LGPL-2.1. - -License: GPL-3+ - 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 3 of the License, or - (at your option) any later version. - . - 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. - . - You should have received a copy of the GNU General Public License - along with this program; if not, see . - . - On Debian systems, the complete text of the GNU General Public License - version 3 can be found in /usr/share/common-licenses/GPL-3. - -License: BSD-3-clause - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - 1. Redistributions of source code must retain the above copyright - notice, and the entire permission notice in its entirety, - including the disclaimer of warranties. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - 3. The name of the author may not be used to endorse or promote - products derived from this software without specific prior - written permission. - . - THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, - INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR - SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, - STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED - OF THE POSSIBILITY OF SUCH DAMAGE. - - ----------------------------------------- -libhogweed4 version 3.4.1-1 - - -Copyright: - -Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ -Upstream-Name: Nettle -Upstream-Contact: Niels Möller -Source: http://www.lysator.liu.se/~nisse/nettle/ -Copyright: © 2001-2011 Niels Möller - Some parts are Copyright © the Free Software Foundation and various - people. See below and source code comments for details. -License: LGPL-2.1+ -Comment: - Nettle is distributed under the GNU Lesser General Public License - (LGPL). A few of the individual files are in the public domain. To - find the current status of particular files, you have to read the - copyright notices at the top of the files. - . - A list of the supported algorithms, their origins and licenses (from - the manual): - . - AES - The implementation of the AES cipher (also known as rijndael) is - written by Rafael Sevilla. Assembler for x86 by Rafael Sevilla and - Niels Möller, Sparc assembler by Niels Möller. Released under the - LGPL. - . - ARCFOUR - The implementation of the ARCFOUR (also known as RC4) cipher is - written by Niels Möller. Released under the LGPL. - . - ARCTWO - The implementation of the ARCTWO (also known as RC2) cipher is - written by Nikos Mavroyanopoulos and modified by Werner Koch and - Simon Josefsson. Released under the LGPL. - . - BLOWFISH - The implementation of the BLOWFISH cipher is written by Werner - Koch, copyright owned by the Free Software Foundation. Also hacked - by Simon Josefsson and Niels Möller. Released under the LGPL. - . - CAMELLIA - The C implementation is by Nippon Telegraph and Telephone - Corporation (NTT), heavily modified by Niels Möller. Assembler for - x86 and x86_64 by Niels Möller. Released under the LGPL. - . - CAST128 - The implementation of the CAST128 cipher is written by Steve Reid. - Released into the public domain. - . - DES - The implementation of the DES cipher is written by Dana L. How, and - released under the LGPL. - . - MD2 - The implementation of MD2 is written by Andrew Kuchling, and hacked - some by Andreas Sigfridsson and Niels Möller. Python Cryptography - Toolkit license (essentially public domain). - . - MD4 - This is almost the same code as for MD5 below, with modifications - by Marcus Comstedt. Released into the public domain. - . - MD5 - The implementation of the MD5 message digest is written by Colin - Plumb. It has been hacked some more by Andrew Kuchling and Niels - Möller. Released into the public domain. - . - SERPENT - The implementation of the SERPENT is based on the code in - libgcrypt, copyright owned by the Free Software Foundation. - Adapted to Nettle by Simon Josefsson and heavily modified by - Niels Möller. Assembly for x86_64 by Niels Möller. Released under - the LGPL. - . - SHA1 - The C implementation of the SHA1 message digest is written by Peter - Gutmann, and hacked some more by Andrew Kuchling and Niels Möller. - Released into the public domain. Assembler for x86 by Niels Möller, - released under the LGPL. - . - SHA224, SHA256, SHA384, and SHA512 - Written by Niels Möller, using Peter Gutmann's SHA1 code as a - model. Released under the LGPL. - . - TWOFISH - The implementation of the TWOFISH cipher is written by Ruud de - Rooij. Released under the LGPL. - . - RSA - Written by Niels Möller, released under the LGPL. Uses the GMP - library for bignum operations. - . - DSA - Written by Niels Möller, released under the LGPL. Uses the GMP - library for bignum operations. - -Files: * -Copyright: © 2001-2011 Niels Möller -License: LGPL-2.1+ - -Files: aes-set-* -Copyright: © 2000, 2001, 2002 Rafael R. Sevilla, Niels Möller -License: LGPL-2.1+ - -Files: arctwo* -Copyright: © 2003 Nikos Mavroyanopoulos - © 2004 Simon Josefsson - © 2004 Free Software Foundation, Inc. - © 2002, 2004 Niels Möller -License: LGPL-2.1+ - -Files: base64.h base64-meta.c -Copyright: © 2002 Dan Egnor - © 2002 Niels Möller -License: LGPL-2.1+ - -Files: blowfish.c -Copyright: © 1998, 2001, 2002, 2003 Free Software Foundation, Inc. - © 2010 Simon Josefsson -License: LGPL-2.1+ - -Files: blowfish.h -Copyright: © 1998, 2001 Free Software Foundation, Inc. - © 1998, 2001 Ray Dassen - © 1998, 2001 Niels Möller -License: LGPL-2.1+ - -Files: camellia-table.c camellia-crypt-internal.c -Copyright: © 2006, 2007 NTT (Nippon Telegraph and Telephone Corporation) - © 2010 Niels Möller -License: LGPL-2.1+ - -Files: der2dsa.c -Copyright: © 2005, 2009 Niels Möller - © 2009 Magnus Holmgren -License: LGPL-2.1+ - -Files: desCode.h descode.README desdata.c desinfo.c -Copyright: © 2002 Dana L. How -License: LGPL-2+ - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU Library General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. - . - 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 Library General Public License for more details. - . - You should have received a copy of the GNU Library General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. - . - On Debian GNU/Linux systems, the complete text of the GNU Library - General Public License, version 2, can be found in - /usr/share/common-licenses/LGPL-2. - -Files: des.c des.h -Copyright: © 1992 Dana L. How - © 1997, 2001 Niels Möller -License: LGPL-2.1+ - -Files: gcm.c gcm.h -Copyright: © 2011 Katholieke Universiteit Leuven - © 2011 Niels Möller -License: LGPL-2.1+ - -Files: md2.c -Copyright: © ? Andrew Kuchling - © 2003 Andreas Sigfridsson - © 2003 Niels Möller -License: LGPL-2.1+ - -Files: md4.c -Copyright: © 2003 Marcus Comstedt - © 2003 Niels Möller -License: LGPL-2.1+ - -Files: md5.c md5-compress.c -Copyright: © Colin Plumb, Andrew Kuchling - © 2001 Niels Möller -License: LGPL-2.1+ - -Files: memxor.c -Copyright: © 1991,1993, 1995 Free Software Foundation, Inc. - © 2010 Niels Möller -License: LGPL-2.1+ - -Files: ripemd160.c ripemd160-compress.c -Copyright: © 1998, 2001, 2002, 2003 Free Software Foundation, Inc. -License: LGPL-2.1+ - -Files: ripemd160-meta.c ripemd160.h -Copyright: © 2011 Andres Mejia -License: LGPL-2.1+ - -Files: serpent-encrypt.c serpent-decrypt.c serpent-set-key.c -Copyright: © 1998 Ross Anderson, Eli Biham, Lars Knudsen - © 2003, 2004, 2005 Free Software Foundation, Inc. - © 2010, 2011 Simon Josefsson - © 2011 Niels Möller -License: LGPL-2.1+ - -Files: sha* -Copyright: © 2001, 2004 Peter Gutmann, Andrew Kuchling, Niels Möller -License: LGPL-2.1+ - -Files: twofish* -Copyright: © 1999 Ruud de Rooij - © 1999 J.H.M. Dassen (Ray) - © 2001 Niels Möller -License: LGPL-2.1+ - -Files: dsa2sexp.c -Copyright: © 2002, 2009 Niels Möller - © 2009 Magnus Holmgren -License: LGPL-2.1+ - -Files: testsuite/des-compat-test.c -Copyright: © 1995-1997 Eric Young (eay@cryptsoft.com) -License: other - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - 1. Redistributions of source code must retain the copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - 3. All advertising materials mentioning features or use of this software - must display the following acknowledgement: - "This product includes cryptographic software written by - Eric Young (eay@cryptsoft.com)" - The word 'cryptographic' can be left out if the rouines from the library - being used are not cryptographic related :-). - 4. If you include any Windows specific code (or a derivative thereof) from - the apps directory (application code) you must include an acknowledgement: - "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" - . - THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND - ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -Files: tools/pkcs1-conv.c -Copyright: © 2005, 2009 Niels Möller - © 2009 Magnus Holmgren -License: LGPL-2.1+ - -Files: x86*/aes-*-internal.asm -Copyright: © 2001, 2002, 2005, 2008 Rafael R. Sevilla - © 2001, 2002, 2005, 2008 Niels Möller -License: LGPL-2.1+ - -Files: tools/getopt* -Copyright: © 1987-2001 Free Software Foundation, Inc. -License: GPL-2+ - -Files: config.guess config.sub -Copyright: © 1992-2003 Free Software Foundation, Inc. -License: GPL-2+ with Autoconf exception - As a special exception to the GNU General Public License, if you - distribute this file as part of a program that contains a - configuration script generated by Autoconf, you may include it under - the same distribution terms that you use for the rest of that program. - -Files: debian/* -Copyright: none -License: public-domain - I believe that most files in debian/ hardly contains any creative - expression eligible for copyright. - -Files: debian/sexp-conv.1 -Copyright: © 2002 Timshel Knoll - © 2007 Magnus Holmgren -License: GPL-2 - 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 dated June. 1991. - . - 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. - . - 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. - . - On Debian GNU/Linux systems, the complete text of the GNU General - Public License, version 2, can be found in - /usr/share/common-licenses/GPL-2. -Comment: - This manpage was copied from the lsh-utils package. Timshel didn't - explicitly select a license for his packaging work, but I think that - it can be considered released under the same license as LSH itself. - -Files: debian/pkcs1-conv.1 debian/nettle-lfib-stream.1 -Copyright: © 2007 Magnus Holmgren -License: GAP - Copying and distribution of this file, with or without modification, - are permitted in any medium without royalty provided the copyright - notice and this notice are preserved. - -License: LGPL-2.1+ - The nettle library is free software; you can redistribute it and/or modify - it under the terms of the GNU Lesser General Public License as published by - the Free Software Foundation; either version 2.1 of the License, or (at your - option) any later version. - . - The nettle library 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 Lesser General Public - License for more details. - . - You should have received a copy of the GNU Lesser General Public - License along with this library; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA - . - On Debian GNU/Linux systems, the complete text of the newest version - of the GNU Lesser General Public License can be found in - /usr/share/common-licenses/LGPL. - -License: GPL-2+ - 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. - . - 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. - . - 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. - . - On Debian GNU/Linux systems, the complete text of the newest version - of the GNU General Public License can be found in - /usr/share/common-licenses/GPL. - - ----------------------------------------- -libidn2-0 version 2.0.5-1+deb10u1 - - -Copyright: - -Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ -Upstream-Name: Libidn2 -Upstream-Contact: Simon Josefsson -Source: https://www.gnu.org/software/libidn/#libidn2 - -Files: * -Copyright: Copyright (C) 2011-2014 Simon Josefsson -License: GPL-3+ - -Files: *.c *.h -Copyright: Copyright (C) 2011-2014 Simon Josefsson -License: LGPL-3+ or GPL-2+ - -Files: build-aux/* lib/* GNUmakefile maint.mk -Copyright: Copyright (C) 2001-2011 Free Software Foundation, Inc. -License: GPL-3+ - -Files: doc/gdoc -Copyright: Copyright (c) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Simon Josefsson - Copyright (c) 2001, 2002 Nikos Mavrogiannopoulos - Copyright (c) 1998 Michael Zucchi -License: GPL-3+ - -Files: lib/IdnaMappingTable.txt lib/DerivedNormalizationProps.txt tests/IdnaTest.txt -Copyright: Copyright (c) 1991-2010 Unicode, Inc. -License: Unicode - -License: GPL-3+ - 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 3 of the License, or - (at your option) any later version. - . - 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. - . - You should have received a copy of the GNU General Public License - along with this program. If not, see . - . - On Debian GNU/Linux systems, the complete text of the GNU General Public - License version 3 can be found in /usr/share/common-licenses/GPL-3. - -License: GPL-2+ - 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. - . - 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. - . - You should have received a copy of the GNU General Public License - along with this program. If not, see . - . - On Debian GNU/Linux systems, the complete text of the GNU General Public - License version 2 can be found in /usr/share/common-licenses/GPL-2. - -License: LGPL-3+ - This program is free software: you can redistribute it and/or modify - it under the terms of the GNU Lesser General Public License as published - by the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - . - 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. - . - You should have received a copy of the GNU Lesser General Public License - along with this program. If not, see . - . - On Debian GNU/Linux systems, the complete text of the GNU Lesser General - Public License version 3 can be found in /usr/share/common-licenses/LGPL-3. - -License: Unicode - For terms of use, see http://www.unicode.org/terms_of_use.html - Copyright © 1991-2011 Unicode, Inc. All rights reserved. Distributed - under the Terms of Use in http://www.unicode.org/copyright.html. - . - Permission is hereby granted, free of charge, to any person obtaining - a copy of the Unicode data files and any associated documentation - (the "Data Files") or Unicode software and any associated - documentation (the "Software") to deal in the Data Files or Software - without restriction, including without limitation the rights to use, - copy, modify, merge, publish, distribute, and/or sell copies of the - Data Files or Software, and to permit persons to whom the Data Files - or Software are furnished to do so, provided that (a) the above - copyright notice(s) and this permission notice appear with all copies - of the Data Files or Software, (b) both the above copyright notice(s) - and this permission notice appear in associated documentation, and - (c) there is clear notice in each modified Data File or in the - Software as well as in the documentation associated with the Data - File(s) or Software that the data or software has been modified. - . - THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF - ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE - WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE - COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY - CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY - DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, - WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS - ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE - OF THE DATA FILES OR SOFTWARE. - . - Except as contained in this notice, the name of a copyright holder - shall not be used in advertising or otherwise to promote the sale, - use or other dealings in these Data Files or Software without prior - written authorization of the copyright holder. - - ----------------------------------------- -liblz4-1 version 1.8.3-1 - - -Copyright: - -Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ -Upstream-Name: lz4 -Source: https://github.com/Cyan4973/lz4 - -Files: * -Copyright: Copyright (C) 2011-2017, Yann Collet. -License: BSD-2-clause - -Files: lib/* -Copyright: Copyright (C) 2011-2017, Yann Collet. -License: BSD-2-clause - -Files: lib/liblz4.pc.in -Copyright: Copyright (C) 2011-2014, Yann Collet. -License: BSD-2-clause - -Files: lib/lz4frame.c - lib/lz4frame_static.h - lib/xxhash.c - lib/xxhash.h -Copyright: Copyright (C) 2011-2016, Yann Collet. -License: BSD-2-clause - -Files: programs/* -Copyright: Copyright (C) 2011-2016, Yann Collet. -License: GPL-2+ - -Files: programs/lz4io.c -Copyright: Copyright (C) 2011-2017, Yann Collet. -License: GPL-2+ - -Files: programs/platform.h -Copyright: Copyright (C) 2016 -present, Przemyslaw Skibinski, Yann Collet -License: GPL-2+ - -Files: programs/util.h -Copyright: Copyright (C) 2016 -present, Przemyslaw Skibinski, Yann Collet -License: GPL-2+ - -Files: ./examples/printVersion.c -Copyright: Takayuki Matsuoka & Yann Collet -License: GPL-2 - -Files: ./examples/blockStreaming_lineByLine.c - ./examples/blockStreaming_doubleBuffer.c -Copyright: Takayuki Matsuoka -License: GPL-2 - -Files: ./examples/HCStreaming_ringBuffer.c - ./examples/blockStreaming_ringBuffer.c -Copyright: Yann Collet -License: GPL-2 - -Files: ./examples/compress_functions.c - ./examples/simple_buffer.c -Copyright: Kyle Harper -License: BSD-2-clause - - -Files: debian/* -Copyright: 2013 Nobuhiro Iwamatsu -License: GPL-2+ - -License: GPL-2 - 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 dated June, 1991. - . - On Debian systems, the complete text of version 2 of the GNU General - Public License can be found in '/usr/share/common-licenses/GPL-2'. - -License: GPL-2+ - 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 dated June, 1991, or (at - your option) any later version. - . - On Debian systems, the complete text of version 2 of the GNU General - Public License can be found in '/usr/share/common-licenses/GPL-2'. - -License: BSD-2-clause - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are - met: - . - * Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. - . - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, - THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS - BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT - OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - ----------------------------------------- -liblzma5 version 5.2.4-1 - - -Copyright: - -Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ -Upstream-Name: XZ Utils -Upstream-Contact: - Lasse Collin - https://tukaani.org/xz/lists.html -Source: - https://tukaani.org/xz - https://git.tukaani.org/xz.git -Comment: - XZ Utils is developed and maintained upstream by Lasse Collin. Major - portions are based on code by other authors; see AUTHORS for details. - Most of the source has been put into the public domain, but some files - have not (details below). - . - This file describes the source package. The binary packages contain - some files derived from other works: for example, images in the API - documentation come from Doxygen. -License: - Different licenses apply to different files in this package. Here - is a rough summary of which licenses apply to which parts of this - package (but check the individual files to be sure!): - . - - liblzma is in the public domain. - . - - xz, xzdec, and lzmadec command line tools are in the public - domain unless GNU getopt_long had to be compiled and linked - in from the lib directory. The getopt_long code is under - GNU LGPLv2.1+. - . - - The scripts to grep, diff, and view compressed files have been - adapted from gzip. These scripts and their documentation are - under GNU GPLv2+. - . - - All the documentation in the doc directory and most of the - XZ Utils specific documentation files in other directories - are in the public domain. - . - - Translated messages are in the public domain. - . - - The build system contains public domain files, and files that - are under GNU GPLv2+ or GNU GPLv3+. None of these files end up - in the binaries being built. - . - - Test files and test code in the tests directory, and debugging - utilities in the debug directory are in the public domain. - . - - The extra directory may contain public domain files, and files - that are under various free software licenses. - . - You can do whatever you want with the files that have been put into - the public domain. If you find public domain legally problematic, - take the previous sentence as a license grant. If you still find - the lack of copyright legally problematic, you have too many - lawyers. - . - As usual, this software is provided "as is", without any warranty. - . - If you copy significant amounts of public domain code from XZ Utils - into your project, acknowledging this somewhere in your software is - polite (especially if it is proprietary, non-free software), but - naturally it is not legally required. Here is an example of a good - notice to put into "about box" or into documentation: - . - This software includes code from XZ Utils . - . - The following license texts are included in the following files: - - COPYING.LGPLv2.1: GNU Lesser General Public License version 2.1 - - COPYING.GPLv2: GNU General Public License version 2 - - COPYING.GPLv3: GNU General Public License version 3 - . - Note that the toolchain (compiler, linker etc.) may add some code - pieces that are copyrighted. Thus, it is possible that e.g. liblzma - binary wouldn't actually be in the public domain in its entirety - even though it contains no copyrighted code from the XZ Utils source - package. - . - If you have questions, don't hesitate to ask the author(s) for more - information. - -Files: * -Copyright: 2006-2018, Lasse Collin - 1999-2008, Igor Pavlov - 2006, Ville Koskinen - 1998, Steve Reid - 2000, Wei Dai - 2003, Kevin Springle - 2009, Jonathan Nieder - 2010, Anders F Björklund -License: PD - This file has been put in the public domain. - You can do whatever you want with this file. -Comment: - From: Lasse Collin - To: Jonathan Nieder - Subject: Re: XZ utils for Debian - Date: Sun, 19 Jul 2009 13:28:23 +0300 - Message-Id: <200907191328.23816.lasse.collin@tukaani.org> - . - [...] - . - > AUTHORS, ChangeLog, COPYING, README, THANKS, TODO, - > dos/README, windows/README - . - COPYING says that most docs are in the public domain. Maybe that's not - clear enough, but on the other hand it looks a bit stupid to put - copyright information in tiny and relatively small docs like README. - . - I don't dare to say that _all_ XZ Utils specific docs are in the public - domain unless otherwise mentioned in the file. I'm including PDF files - generated by groff + ps2pdf, and some day I might include Doxygen- - generated HTML docs too. Those don't include any copyright notices, but - it seems likely that groff + ps2pdf or at least Doxygen put some - copyrighted content into the generated files. - -Files: INSTALL NEWS PACKAGERS - windows/README-Windows.txt - windows/INSTALL-MinGW.txt -Copyright: 2009-2010, Lasse Collin -License: probably-PD - See the note on AUTHORS, README, and so on above. - -Files: src/scripts/* lib/* extra/scanlzma/scanlzma.c -Copyright: © 1993, Jean-loup Gailly - © 1989-1994, 1996-1999, 2001-2007, Free Software Foundation, Inc. - © 2006 Timo Lindfors - 2005, Charles Levert - 2005, 2009, Lasse Collin - 2009, Andrew Dudman -Other-Authors: Paul Eggert, Ulrich Drepper -License: GPL-2+ - -Files: src/scripts/Makefile.am src/scripts/xzless.1 -Copyright: 2009, Andrew Dudman - 2009, Lasse Collin -License: PD - This file has been put in the public domain. - You can do whatever you want with this file. - -Files: doc/examples/xz_pipe_comp.c doc/examples/xz_pipe_decomp.c -Copyright: 2010, Daniel Mealha Cabrita -License: PD - Not copyrighted -- provided to the public domain. - -Files: lib/getopt.c lib/getopt1.c lib/getopt.in.h -Copyright: © 1987-2007 Free Software Foundation, Inc. -Other-Authors: Ulrich Drepper -License: LGPL-2.1+ - -Files: m4/getopt.m4 m4/posix-shell.m4 -Copyright: © 2002-2006, 2008 Free Software Foundation, Inc. - © 2007-2008 Free Software Foundation, Inc. -Other-Authors: Bruno Haible, Paul Eggert -License: permissive-fsf - -Files: m4/acx_pthread.m4 -Copyright: © 2008, Steven G. Johnson -License: Autoconf - -files: m4/ax_check_capsicum.m4 -Copyright: © 2014, Google Inc. - © 2015, Lasse Collin -License: permissive-nowarranty - -Files: Doxyfile.in -Copyright: © 1997-2007 by Dimitri van Heesch -Origin: Doxygen 1.4.7 -License: GPL-2 - -Files: src/liblzma/check/crc32_table_?e.h - src/liblzma/check/crc64_table_?e.h - src/liblzma/lzma/fastpos_table.c - src/liblzma/rangecoder/price_table.c -Copyright: none, automatically generated data -Generated-With: - src/liblzma/check/crc32_tablegen.c - src/liblzma/check/crc64_tablegen.c - src/liblzma/lzma/fastpos_tablegen.c - src/liblzma/rangecoder/price_tablegen.c -License: none - No copyright to license. - -Files: .gitignore m4/.gitignore po/.gitignore po/LINGUAS po/POTFILES.in -Copyright: none; these are just short lists. -License: none - No copyright to license. - -Files: tests/compress_prepared_bcj_* -Copyright: 2008-2009, Lasse Collin -Source-Code: tests/bcj_test.c -License: PD - This file has been put into the public domain. - You can do whatever you want with this file. -Comment: - changelog.gz (commit 975d8fd) explains: - . - Recreated the BCJ test files for x86 and SPARC. The old files - were linked with crt*.o, which are copyrighted, and thus the - old test files were not in the public domain as a whole. They - are freely distributable though, but it is better to be careful - and avoid including any copyrighted pieces in the test files. - The new files are just compiled and assembled object files, - and thus don't contain any copyrighted code. - -Files: po/cs.po po/de.po po/fr.po -Copyright: 2010, Marek Černocký - 2010, Andre Noll - 2011, Adrien Nader -License: PD - This file is put in the public domain. - -Files: po/it.po po/pl.po -Copyright: 2009, 2010, Gruppo traduzione italiano di Ubuntu-it - 2010, Lorenzo De Liso - 2009, 2010, 2011, Milo Casagrande - 2011, Jakub Bogusz -License: PD - This file is in the public domain - -Files: INSTALL.generic -Copyright: © 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004, 2005, - 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc. -License: permissive-nowarranty - -Files: dos/config.h -Copyright: © 1992, 1993, 1994, 1999, 2000, 2001, 2002, 2005 - Free Software Foundation, Inc. - 2007-2010, Lasse Collin -Other-Authors: Roland McGrath, Akim Demaille, Paul Eggert, - David Mackenzie, Bruno Haible, and many others. -Origin: configure.ac from XZ Utils, - visibility.m4 serial 1 (gettext-0.15), - Autoconf 2.52g -License: config-h - configure.ac: - . - # Author: Lasse Collin - # - # This file has been put into the public domain. - # You can do whatever you want with this file. - . - visibility.m4: - . - dnl Copyright (C) 2005 Free Software Foundation, Inc. - dnl This file is free software; the Free Software Foundation - dnl gives unlimited permission to copy and/or distribute it, - dnl with or without modifications, as long as this notice is preserved. - . - dnl From Bruno Haible. - . - comments from Autoconf 2.52g: - . - # Copyright 1992, 1993, 1994, 1999, 2000, 2001, 2002 - # Free Software Foundation, Inc. - . - [...] - . - # As a special exception, the Free Software Foundation gives unlimited - # permission to copy, distribute and modify the configure scripts that - # are the output of Autoconf. You need not follow the terms of the GNU - # General Public License when using or distributing such scripts, even - # though portions of the text of Autoconf appear in them. The GNU - # General Public License (GPL) does govern all other use of the material - # that constitutes the Autoconf program. - . - On Debian systems, the complete text of the GNU General Public - License version 2 can be found in ‘/usr/share/common-licenses/GPL-2’. - dos/config.h was generated with autoheader, which tells Autoconf to - output a script to generate a config.h file and then runs it. - -Files: po/Makevars -Origin: gettext-runtime/po/Makevars (gettext-0.12) -Copyright: © 2003 Free Software Foundation, Inc. -Authors: Bruno Haible -License: LGPL-2.1+ - The gettext-runtime package is under the LGPL, see files intl/COPYING.LIB-2.0 - and intl/COPYING.LIB-2.1. - . - On Debian systems, the complete text of intl/COPYING.LIB-2.0 from - gettext-runtime 0.12 can be found in ‘/usr/share/common-licenses/LGPL-2’ - and the text of intl/COPYING.LIB-2.1 can be found in - ‘/usr/share/common-licenses/LGPL-2.1’. - . - po/Makevars consists mostly of helpful comments and does not contain a - copyright and license notice. - -Files: COPYING.GPLv2 COPYING.GPLv3 COPYING.LGPLv2.1 -Copyright: © 1989, 1991, 1999, 2007 Free Software Foundation, Inc. -License: noderivs - Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed. - -Files: debian/* -Copyright: 2009-2012, Jonathan Nieder -License: PD-debian - The Debian packaging files are in the public domain. - You may freely use, modify, distribute, and relicense them. - -License: LGPL-2.1+ - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU Lesser General Public License as published by - the Free Software Foundation; either version 2.1, or (at your option) - any later version. - . - 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 Lesser General Public License for more details. - . - You should have received a copy of the GNU Lesser 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. - . - On Debian systems, the complete text of the GNU Lesser General Public - License version 2.1 can be found in ‘/usr/share/common-licenses/LGPL-2.1’. - -License: GPL-2 - Permission to use, copy, modify, and distribute this software and its - documentation under the terms of the GNU General Public License is - hereby granted. No representations are made about the suitability of - this software for any purpose. It is provided "as is" without express - or implied warranty. See the GNU General Public License for more - details. - . - Documents produced by doxygen are derivative works derived from the - input used in their production; they are not affected by this license. - . - On Debian systems, the complete text of the version of the GNU General - Public License distributed with Doxygen can be found in - ‘/usr/share/common-licenses/GPL-2’. - -License: GPL-2+ - 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, or (at your option) - any later version. - . - 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. - . - 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. - . - On Debian systems, the complete text of the GNU General Public License - version 2 can be found in ‘/usr/share/common-licenses/GPL-2’. - -License: Autoconf - 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 3 of the License, or (at your - option) any later version. - . - 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. - . - You should have received a copy of the GNU General Public License along - with this program. If not, see . - . - As a special exception, the respective Autoconf Macro's copyright owner - gives unlimited permission to copy, distribute and modify the configure - scripts that are the output of Autoconf when processing the Macro. You - need not follow the terms of the GNU General Public License when using - or distributing such scripts, even though portions of the text of the - Macro appear in them. The GNU General Public License (GPL) does govern - all other use of the material that constitutes the Autoconf Macro. - . - This special exception to the GPL applies to versions of the Autoconf - Macro released by the Autoconf Archive. When you make and distribute a - modified version of the Autoconf Macro, you may extend this special - exception to the GPL to apply to your modified version as well. - . - On Debian systems, the complete text of the GNU General Public - License version 3 can be found in ‘/usr/share/common-licenses/GPL-3’. - -License: permissive-fsf - This file is free software; the Free Software Foundation - gives unlimited permission to copy and/or distribute it, - with or without modifications, as long as this notice is preserved. - -License: permissive-nowarranty - Copying and distribution of this file, with or without modification, - are permitted in any medium without royalty provided the copyright - notice and this notice are preserved. This file is offered as-is, - without warranty of any kind. - - ----------------------------------------- -libmount1 version 2.33.1-0.1 - - -Copyright: - -Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ -Upstream-Name: util-linux -Upstream-Contact: util-linux@vger.kernel.org -Source: https://www.kernel.org/pub/linux/utils/util-linux/ - -Files: * -Copyright: Michal Luscon - 1986 Gary S. Brown - 1990 Gordon Irlam (gordoni@cs.ua.oz.au) - 1991, 1992 Linus Torvalds - 1991-2004 Miquel van Smoorenburg - 1992 A. V. Le Blanc (LeBlanc@mcc.ac.uk) - 1992-1997 Michael K. Johnson, johnsonm@redhat.com - 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, - 2003, 2004, 2005, 2008 Theodore Ts'o - 1994 Kevin E. Martin (martin@cs.unc.edu) - 1994 Salvatore Valente - 1994,1996 Alessandro Rubini (rubini@ipvvis.unipv.it) - 1994-2005 Jeff Tranter (tranter@pobox.com) - 1995, 1999, 2000 Andries E. Brouwer - 1997-2005 Frodo Looijaard - 1998 Danek Duvall - 1999 Andreas Dilger - 1999-2002 Transmeta Corporation - 1999, 2000, 2002-2009, 2010, 2011, 2012, 2014 Red Hat, Inc. - 2000 Werner Almesberger - 2004-2006 Michael Holzt, kju -at- fqdn.org - 2005 Adrian Bunk - 2007-2014 Karel Zak - 2007, 2011 SuSE LINUX Products GmbH - 2008 Cai Qian - 2008 Hayden A. James (hayden.james@gmail.com) - 2008 James Youngman - 2008 Roy Peled, the.roy.peled -at- gmail.com - 2009 Mikhail Gusarov - 2010, 2011, 2012 Davidlohr Bueso - 2010 Jason Borden A - 2010 Hajime Taira - 2010 Masatake Yamato - 2011 IBM Corp. - 2012 Andy Lutomirski - 2012 Lennart Poettering - 2012 Sami Kerola - 2012 Cody Maloney - 2012 Werner Fink - 2013,2014 Ondrej Oprala -License: GPL-2+ - -Files: schedutils/ionice.c -Copyright: 2005 Jens Axboe -License: GPL-2 - -Files: schedutils/chrt.c - schedutils/taskset.c -Copyright: 2004 Robert Love - 2010 Karel Zak -License: GPL-2 - -Files: disk-utils/raw.c -Copyright: 1999, 2000, Red Hat Software -License: GPL-2 - -Files: sys-utils/nsenter.c -Copyright: 2012-2013 Eric Biederman -License: GPL-2 - -Files: disk-utils/mkfs.minix.c - disk-utils/mkswap.c -Copyright: 1991, 1992 Linus Torvalds -License: GPL-2 - -Files: lib/at.c - lib/blkdev.c - lib/loopdev.c - lib/sysfs.c - lib/ttyutils.c - lib/xgetpass.c - misc-utils/mcookie.c - sys-utils/setsid.c - text-utils/line.c -Copyright: n/a -License: public-domain - -Files: login-utils/vipw.c - misc-utils/cal.c - misc-utils/kill.c - misc-utils/logger.c - misc-utils/look.c - misc-utils/whereis.c - sys-utils/renice.c - term-utils/mesg.c - term-utils/script.c - term-utils/ttymsg.c - term-utils/wall.c - term-utils/write.c - text-utils/col.c - text-utils/colcrt.c - text-utils/colrm.c - text-utils/column.c - text-utils/hexdump.c - text-utils/hexdump.h - text-utils/hexdump-conv.c - text-utils/hexdump-display.c - text-utils/hexdump-parse.c - text-utils/rev.c - text-utils/ul.c -Copyright: 1980, 1983, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994 - The Regents of the University of California - 2014 Sami Kerola - 2014 Karel Zak -License: BSD-4-clause - -Files: text-utils/tailf.c -Copyright: 1996, 2003 Rickard E. Faith (faith@acm.org) -License: MIT - -Files: sys-utils/flock.c -Copyright: 2003-2005 H. Peter Anvin -License: MIT - -Files: text-utils/pg.c -Copyright: 2000-2001 Gunnar Ritter -License: BSD-2-clause - -Files: login-utils/last-deprecated.c -Copyright: 1987 Regents of the University of California -License: BSD-2-clause - -Files: login-utils/login.c -Copyright: 1980, 1987, 1988 The Regents of the University of California. - 2011 Karel Zak -License: BSD-2-clause - -Files: login-utils/logindefs.c -Copyright: 2003, 2004, 2005 Thorsten Kukuk -License: BSD-3-clause - -Files: libuuid/* - libuuid/src/* - libuuid/man/* -Copyright: 1996, 1997, 1998, 1999, 2007 Theodore Ts'o. - 1999 Andreas Dilger (adilger@enel.ucalgary.ca) -License: BSD-3-clause - -Files: lib/procutils.c - include/xalloc.h -Copyright: 2010, 2011 Davidlohr Bueso -License: LGPL-2+ - -Files: */colors.* -Copyright: 2012 Ondrej Oprala - 2012-2014 Karel Zak -License: LGPL-2+ - -Files: login-utils/setpwnam.h - login-utils/setpwnam.c -Copyright: 1994 Martin Schulze - 1994 Salvatore Valente -License: LGPL-2+ - -Files: libfdisk/* - libfdisk/src/* -Copyright: 2007-2013 Karel Zak - 2012 Davidlohr Bueso -License: LGPL-2.1+ - -Files: lib/cpuset.c - */match.* - lib/canonicalize.c - include/at.h -Copyright: 2008-2009, 2010, 2011, 2012 Karel Zak -License: LGPL-2.1+ - -Files: */mbsalign.* -Copyright: 2009-2010 Free Software Foundation, Inc. - 2010-2013 Karel Zak -License: LGPL-2.1+ - -Files: */readutmp.* -Copyright: 1992-2007, 2009-2014 Free Software Foundation, Inc. -License: GPL-3+ - -Files: */timeutils.* -Copyright: 2010 Lennart Poettering -License: LGPL-2.1+ - -Files: include/list.h -Copyright: 2008 Karel Zak - 1999-2008 by Theodore Ts'o -License: LGPL - -Files: libblkid/* - libblkid/src/* - libblkid/samples/* - libblkid/src/partitions/* - libblkid/src/superblocks/* - libblkid/src/topology/* -Copyright: 1999, 2001 Andries Brouwer - 1995, 1995, 1996, 1997, 1999, 2000, 2001, 2002, 2003, 2004 - Theodore Ts'o. - 2001 Andreas Dilger (adilger@turbolinux.com) - 2004-2008 Kay Sievers - 2008-2013 Karel Zak - 2009 Bastian Friedrich - 2009 Corentin Chary - 2009 Mike Hommey - 2009 Red Hat, Inc. - 2009-2010 Andreas Dilger - 2010 Andrew Nayenko - 2010 Jeroen Oortwijn - 2010 Jiro SEKIBA - 2011 Philipp Marek - 2012 Milan Broz - 2013 Alejandro Martinez Ruiz - 2013 Eric Sandeen - 2013 Rolf Fokkens - 2013 Zeeshan Ali (Khattak) -License: LGPL-2.1+ - -Files: include/cpuset.h - lib/randutils.c -Copyright: *unknown* -License: LGPL - -Files: misc-utils/blkid.c -Copyright: 2001 Andreas Dilger -License: LGPL - -Files: libmount/* - libmount/src/* -Copyright: 2008-2012 Karel Zak -License: LGPL-2.1+ - -Files: libmount/python/* -Copyright: 2013, Red Hat, Inc. -License: LGPL-3+ - -Files: libsmartcols/* -Copyright: 2009-2014 Karel Zak - 2014 Ondrej Oprala -License: LGPL - -Files: debian/* -Copyright: Guy Maor - Sean 'Shaleh' Perry - Adrian Bunk - LaMont Jones - 2014 Andreas Henriksson -License: GPL-2+ - - -License: public-domain - The files tagged with this license contains the following paragraphs: - . - No copyright is claimed. This code is in the public domain; do with - it what you wish. - . - Written by Karel Zak - -License: GPL-2 - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License, v2, as - published by the Free Software Foundation - . - 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. - . - 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. - . - On Debian systems, the complete text of the GNU General Public - License version 2 can be found in `/usr/share/common-licenses/GPL-2'. - -License: GPL-2+ - 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. - . - 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. - . - 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. - . - On Debian systems, the complete text of the GNU General Public - License version 2 can be found in `/usr/share/common-licenses/GPL-2'. - -License: GPL-3+ - 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 3 of the License, or - (at your option) any later version. - . - 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. - . - You should have received a copy of the GNU General Public License - along with this program. If not, see . - . - On Debian systems, the complete text of the GNU General Public - License version 3 can be found in `/usr/share/common-licenses/GPL-3'. - -License: BSD-2-clause - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - -License: BSD-3-clause - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are met: - . - 1) Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. - . - 2) Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. - . - 3) Neither the name of the ORGANIZATION nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - . - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE - LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - POSSIBILITY OF SUCH DAMAGE. - -License: BSD-4-clause - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - 3. All advertising materials mentioning features or use of this software - must display the following acknowledgement: - This product includes software developed by the University of - California, Berkeley and its contributors. - 4. Neither the name of the University nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - . - THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND - ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -License: LGPL - This file may be redistributed under the terms of the - GNU Lesser General Public License. - . - On Debian systems, the complete text of the GNU Lesser General Public - License can be found in ‘/usr/share/common-licenses/LGPL’. - -License: LGPL-2+ - This program is free software: you can redistribute it and/or modify - it under the terms of the GNU Lesser General Public License as published by - the Free Software Foundation, either version 2 of the License, or - (at your option) any later version. - . - 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 Lesser General Public License for more details. - . - You should have received a copy of the GNU Lesser General Public License - along with this program. If not, see . - . - The complete text of the GNU Lesser General Public License - can be found in /usr/share/common-licenses/LGPL-2 file. - -License: LGPL-2.1+ - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU Lesser General Public License as published by - the Free Software Foundation; either version 2.1, or (at your option) - any later version. - . - 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 Lesser General Public License for more details. - . - You should have received a copy of the GNU Lesser 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. - . - On Debian systems, the complete text of the GNU Lesser General Public - License version 2.1 can be found in ‘/usr/share/common-licenses/LGPL-2.1’. - -License: LGPL-3+ - This package is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 3 of the License, or (at your option) any later version. - . - This package 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 - Lesser General Public License for more details. - . - You should have received a copy of the GNU General Public License - along with this program. If not, see . - . - On Debian systems, the complete text of the GNU Lesser General - Public License can be found in "/usr/share/common-licenses/LGPL-3". - -License: MIT - Permission is hereby granted, free of charge, to any person - obtaining a copy of this software and associated documentation files - (the "Software"), to deal in the Software without restriction, - including without limitation the rights to use, copy, modify, merge, - publish, distribute, sublicense, and/or sell copies of the Software, - and to permit persons to whom the Software is furnished to do so, - subject to the following conditions: - . - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - . - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS - BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN - ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN - CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - SOFTWARE. - - - ----------------------------------------- -libncursesw6 version 6.1+20181013-2+deb10u2 - - -Copyright: - -This is the Debian prepackaged version of the ncurses -library and terminfo utilities. ncurses/terminfo was originally written -by Pavel Curtis and Zeyd M. Ben-Halim , and is -currently held by the Free Software Foundation. - -This package was put together by Vaidhyanathan G Mayilrangam - and Joel Klecker , using sources -obtained from ftp://ftp.gnu.org/gnu/ncurses/ncurses-5.0.tar.gz. -Current versions of the ncurses sources are found at -ftp://invisible-island.net/ncurses/. - -It is based somewhat on work done by Bruce Perens , -David Engel . Michael Alan Dorman -, Richard Braakman , James Troup -, J.H.M. Dassen (Ray) -, and Galen Hazelwood -over various years. - - -Copyright (c) 1998-2018 Free Software Foundation, Inc. -Copyright © 2001 by Pradeep Padala - -Permission is hereby granted, free of charge, to any person obtaining a -copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, distribute with modifications, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS -OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR -THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -Except as contained in this notice, the name(s) of the above copyright -holders shall not be used in advertising or otherwise to promote the -sale, use or other dealings in this Software without prior written -authorization. - - -Copyright (C) 1994 X Consortium - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to -deal in the Software without restriction, including without limitation the -rights to use, copy, modify, merge, publish, distribute, sublicense, and/or -sell copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN -AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC- -TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -Except as contained in this notice, the name of the X Consortium shall not -be used in advertising or otherwise to promote the sale, use or other deal- -ings in this Software without prior written authorization from the X Consor- -tium. - - -Copyright (c) 1980, 1991, 1992, 1993 - The Regents of the University of California. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. -3. Neither the name of the University nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS -OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY -OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF -SUCH DAMAGE. - - -Copyright 1996-2018 by Thomas E. Dickey - - All Rights Reserved - -Permission is hereby granted, free of charge, to any person obtaining a -copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS -OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -IN NO EVENT SHALL THE ABOVE LISTED COPYRIGHT HOLDER(S) BE LIABLE FOR ANY -CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, -TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE -SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -Except as contained in this notice, the name(s) of the above copyright -holders shall not be used in advertising or otherwise to promote the -sale, use or other dealings in this Software without prior written -authorization. - - ----------------------------------------- -libnettle6 version 3.4.1-1 - - -Copyright: - -Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ -Upstream-Name: Nettle -Upstream-Contact: Niels Möller -Source: http://www.lysator.liu.se/~nisse/nettle/ -Copyright: © 2001-2011 Niels Möller - Some parts are Copyright © the Free Software Foundation and various - people. See below and source code comments for details. -License: LGPL-2.1+ -Comment: - Nettle is distributed under the GNU Lesser General Public License - (LGPL). A few of the individual files are in the public domain. To - find the current status of particular files, you have to read the - copyright notices at the top of the files. - . - A list of the supported algorithms, their origins and licenses (from - the manual): - . - AES - The implementation of the AES cipher (also known as rijndael) is - written by Rafael Sevilla. Assembler for x86 by Rafael Sevilla and - Niels Möller, Sparc assembler by Niels Möller. Released under the - LGPL. - . - ARCFOUR - The implementation of the ARCFOUR (also known as RC4) cipher is - written by Niels Möller. Released under the LGPL. - . - ARCTWO - The implementation of the ARCTWO (also known as RC2) cipher is - written by Nikos Mavroyanopoulos and modified by Werner Koch and - Simon Josefsson. Released under the LGPL. - . - BLOWFISH - The implementation of the BLOWFISH cipher is written by Werner - Koch, copyright owned by the Free Software Foundation. Also hacked - by Simon Josefsson and Niels Möller. Released under the LGPL. - . - CAMELLIA - The C implementation is by Nippon Telegraph and Telephone - Corporation (NTT), heavily modified by Niels Möller. Assembler for - x86 and x86_64 by Niels Möller. Released under the LGPL. - . - CAST128 - The implementation of the CAST128 cipher is written by Steve Reid. - Released into the public domain. - . - DES - The implementation of the DES cipher is written by Dana L. How, and - released under the LGPL. - . - MD2 - The implementation of MD2 is written by Andrew Kuchling, and hacked - some by Andreas Sigfridsson and Niels Möller. Python Cryptography - Toolkit license (essentially public domain). - . - MD4 - This is almost the same code as for MD5 below, with modifications - by Marcus Comstedt. Released into the public domain. - . - MD5 - The implementation of the MD5 message digest is written by Colin - Plumb. It has been hacked some more by Andrew Kuchling and Niels - Möller. Released into the public domain. - . - SERPENT - The implementation of the SERPENT is based on the code in - libgcrypt, copyright owned by the Free Software Foundation. - Adapted to Nettle by Simon Josefsson and heavily modified by - Niels Möller. Assembly for x86_64 by Niels Möller. Released under - the LGPL. - . - SHA1 - The C implementation of the SHA1 message digest is written by Peter - Gutmann, and hacked some more by Andrew Kuchling and Niels Möller. - Released into the public domain. Assembler for x86 by Niels Möller, - released under the LGPL. - . - SHA224, SHA256, SHA384, and SHA512 - Written by Niels Möller, using Peter Gutmann's SHA1 code as a - model. Released under the LGPL. - . - TWOFISH - The implementation of the TWOFISH cipher is written by Ruud de - Rooij. Released under the LGPL. - . - RSA - Written by Niels Möller, released under the LGPL. Uses the GMP - library for bignum operations. - . - DSA - Written by Niels Möller, released under the LGPL. Uses the GMP - library for bignum operations. - -Files: * -Copyright: © 2001-2011 Niels Möller -License: LGPL-2.1+ - -Files: aes-set-* -Copyright: © 2000, 2001, 2002 Rafael R. Sevilla, Niels Möller -License: LGPL-2.1+ - -Files: arctwo* -Copyright: © 2003 Nikos Mavroyanopoulos - © 2004 Simon Josefsson - © 2004 Free Software Foundation, Inc. - © 2002, 2004 Niels Möller -License: LGPL-2.1+ - -Files: base64.h base64-meta.c -Copyright: © 2002 Dan Egnor - © 2002 Niels Möller -License: LGPL-2.1+ - -Files: blowfish.c -Copyright: © 1998, 2001, 2002, 2003 Free Software Foundation, Inc. - © 2010 Simon Josefsson -License: LGPL-2.1+ - -Files: blowfish.h -Copyright: © 1998, 2001 Free Software Foundation, Inc. - © 1998, 2001 Ray Dassen - © 1998, 2001 Niels Möller -License: LGPL-2.1+ - -Files: camellia-table.c camellia-crypt-internal.c -Copyright: © 2006, 2007 NTT (Nippon Telegraph and Telephone Corporation) - © 2010 Niels Möller -License: LGPL-2.1+ - -Files: der2dsa.c -Copyright: © 2005, 2009 Niels Möller - © 2009 Magnus Holmgren -License: LGPL-2.1+ - -Files: desCode.h descode.README desdata.c desinfo.c -Copyright: © 2002 Dana L. How -License: LGPL-2+ - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU Library General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. - . - 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 Library General Public License for more details. - . - You should have received a copy of the GNU Library General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. - . - On Debian GNU/Linux systems, the complete text of the GNU Library - General Public License, version 2, can be found in - /usr/share/common-licenses/LGPL-2. - -Files: des.c des.h -Copyright: © 1992 Dana L. How - © 1997, 2001 Niels Möller -License: LGPL-2.1+ - -Files: gcm.c gcm.h -Copyright: © 2011 Katholieke Universiteit Leuven - © 2011 Niels Möller -License: LGPL-2.1+ - -Files: md2.c -Copyright: © ? Andrew Kuchling - © 2003 Andreas Sigfridsson - © 2003 Niels Möller -License: LGPL-2.1+ - -Files: md4.c -Copyright: © 2003 Marcus Comstedt - © 2003 Niels Möller -License: LGPL-2.1+ - -Files: md5.c md5-compress.c -Copyright: © Colin Plumb, Andrew Kuchling - © 2001 Niels Möller -License: LGPL-2.1+ - -Files: memxor.c -Copyright: © 1991,1993, 1995 Free Software Foundation, Inc. - © 2010 Niels Möller -License: LGPL-2.1+ - -Files: ripemd160.c ripemd160-compress.c -Copyright: © 1998, 2001, 2002, 2003 Free Software Foundation, Inc. -License: LGPL-2.1+ - -Files: ripemd160-meta.c ripemd160.h -Copyright: © 2011 Andres Mejia -License: LGPL-2.1+ - -Files: serpent-encrypt.c serpent-decrypt.c serpent-set-key.c -Copyright: © 1998 Ross Anderson, Eli Biham, Lars Knudsen - © 2003, 2004, 2005 Free Software Foundation, Inc. - © 2010, 2011 Simon Josefsson - © 2011 Niels Möller -License: LGPL-2.1+ - -Files: sha* -Copyright: © 2001, 2004 Peter Gutmann, Andrew Kuchling, Niels Möller -License: LGPL-2.1+ - -Files: twofish* -Copyright: © 1999 Ruud de Rooij - © 1999 J.H.M. Dassen (Ray) - © 2001 Niels Möller -License: LGPL-2.1+ - -Files: dsa2sexp.c -Copyright: © 2002, 2009 Niels Möller - © 2009 Magnus Holmgren -License: LGPL-2.1+ - -Files: testsuite/des-compat-test.c -Copyright: © 1995-1997 Eric Young (eay@cryptsoft.com) -License: other - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - 1. Redistributions of source code must retain the copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - 3. All advertising materials mentioning features or use of this software - must display the following acknowledgement: - "This product includes cryptographic software written by - Eric Young (eay@cryptsoft.com)" - The word 'cryptographic' can be left out if the rouines from the library - being used are not cryptographic related :-). - 4. If you include any Windows specific code (or a derivative thereof) from - the apps directory (application code) you must include an acknowledgement: - "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" - . - THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND - ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -Files: tools/pkcs1-conv.c -Copyright: © 2005, 2009 Niels Möller - © 2009 Magnus Holmgren -License: LGPL-2.1+ - -Files: x86*/aes-*-internal.asm -Copyright: © 2001, 2002, 2005, 2008 Rafael R. Sevilla - © 2001, 2002, 2005, 2008 Niels Möller -License: LGPL-2.1+ - -Files: tools/getopt* -Copyright: © 1987-2001 Free Software Foundation, Inc. -License: GPL-2+ - -Files: config.guess config.sub -Copyright: © 1992-2003 Free Software Foundation, Inc. -License: GPL-2+ with Autoconf exception - As a special exception to the GNU General Public License, if you - distribute this file as part of a program that contains a - configuration script generated by Autoconf, you may include it under - the same distribution terms that you use for the rest of that program. - -Files: debian/* -Copyright: none -License: public-domain - I believe that most files in debian/ hardly contains any creative - expression eligible for copyright. - -Files: debian/sexp-conv.1 -Copyright: © 2002 Timshel Knoll - © 2007 Magnus Holmgren -License: GPL-2 - 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 dated June. 1991. - . - 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. - . - 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. - . - On Debian GNU/Linux systems, the complete text of the GNU General - Public License, version 2, can be found in - /usr/share/common-licenses/GPL-2. -Comment: - This manpage was copied from the lsh-utils package. Timshel didn't - explicitly select a license for his packaging work, but I think that - it can be considered released under the same license as LSH itself. - -Files: debian/pkcs1-conv.1 debian/nettle-lfib-stream.1 -Copyright: © 2007 Magnus Holmgren -License: GAP - Copying and distribution of this file, with or without modification, - are permitted in any medium without royalty provided the copyright - notice and this notice are preserved. - -License: LGPL-2.1+ - The nettle library is free software; you can redistribute it and/or modify - it under the terms of the GNU Lesser General Public License as published by - the Free Software Foundation; either version 2.1 of the License, or (at your - option) any later version. - . - The nettle library 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 Lesser General Public - License for more details. - . - You should have received a copy of the GNU Lesser General Public - License along with this library; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA - . - On Debian GNU/Linux systems, the complete text of the newest version - of the GNU Lesser General Public License can be found in - /usr/share/common-licenses/LGPL. - -License: GPL-2+ - 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. - . - 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. - . - 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. - . - On Debian GNU/Linux systems, the complete text of the newest version - of the GNU General Public License can be found in - /usr/share/common-licenses/GPL. - - ----------------------------------------- -libp11-kit0 version 0.23.15-2 - - -Copyright: - -Format: http://dep.debian.net/deps/dep5 -Upstream-Name: p11-kit -Source: https://p11-glue.github.io/p11-glue/p11-kit.html - -Files: * -Copyright: 2011 Collabora Ltd. -License: BSD-3-Clause - -Files: p11-kit/conf.* p11-kit/proxy.c - common/dict.c common/dict.h -Copyright: 2011 Collabora Ltd. - 2004 Stefan Walter -License: BSD-3-Clause - -Files: p11-kit/modules.c - common/dict.c common/dict.h -Copyright: 2008 Stefan Walter - 2011 Collabora Ltd. - 2017 Red Hat, Inc. -License: BSD-3-Clause - -Files: common/buffer.c common/buffer.h -Copyright: 2007, 2012 Stefan Walter - 2013 Red Hat Inc. -License: BSD-3-Clause - -Files: common/library.c common/library.h common/message.c - p11-kit/client-init.c p11-kit/proxy-init.c common/init.h -Copyright: 2011 Collabora Ltd. - 2012 Stef Walter -License: BSD-3-Clause - -Files: common/url.c common/url.h -Copyright: 2011 Collabora Ltd. - 2013 Red Hat Inc. -License: BSD-3-Clause - -Files: p11-kit/log.c -Copyright: 2007, Stefan Walter - 2013, Red Hat Inc. -License: BSD-3-Clause - -Files: common/pkcs11.h -Copyright: 2006, 2007 g10 Code GmbH - 2006 Andreas Jellinghaus - Copyright 2017 Red Hat, Inc. -License: permissive-like-automake-output - This file is free software; as a special exception the author gives - unlimited permission to copy and/or distribute it, with or without - modifications, as long as this notice is preserved. - . - This file is distributed in the hope that it will be useful, but - WITHOUT ANY WARRANTY, to the extent permitted by law; without even - the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR - PURPOSE. */ - -Files: common/argv.c common/argv.h common/hash.h - trust/oid.c trust/oid.h - trust/pem.c trust/pem.h common/argv.c common/argv.h common/pkcs11x.h - common/pkcs11i.h - common/test-constants.c common/test-hash.c - p11-kit/pkcs11.h p11-kit/test-managed.c - trust/builder.c trust/builder.h trust/digest.h trust/module.c - trust/module.h trust/module-init.c trust/pem.c - trust/pem.h trust/oid.c trust/oid.h trust/parser.h - trust/session.c trust/session.h trust/frob-cert.c - trust/frob-eku.c trust/frob-token.c - trust/test-digest.c trust/test-enumerate.c - trust/test-index.c trust/test-module.c trust/test-oid.c - trust/test-parser.c trust/test-pem.c trust/test-token.c - trust/token.c trust/token.h trust/test-trust.c - trust/test-trust.h trust/x509.c trust/x509.h p11-kit/frob-setuid.c -Copyright: 2012 Red Hat Inc. -License: BSD-3-Clause - -Files: common/attrs.c common/attrs.h -Copyright: 2012, Redhat Inc. - 2011, Collabora Ltd. -License: BSD-3-Clause - - -Files: common/test-attrs.c common/test-buffer.c - trust/frob-ku.c trust/frob-oid.c trust/test-asn1.c -Copyright: 2012, Redhat Inc. -License: BSD-3-Clause - - -Files: p11-kit/test-modules.c -Copyright: 2012, 2015, 2016 Red Hat Inc -License: BSD-3-Clause - - -Files: common/constants.c common/constants.h common/test.c - common/test.h common/test-compat.c common/test-tests.c - common/tool.h p11-kit/deprecated.h - p11-kit/docs.h p11-kit/log.h p11-kit/modules.h p11-kit/proxy.h - p11-kit/test-log.c trust/anchor.c trust/anchor.h - trust/enumerate.c trust/enumerate.h trust/extract.c - trust/extract-cer.c trust/extract.h - trust/extract-openssl.c trust/extract-pem.c trust/index.c - trust/index.h trust/list.c trust/list.h trust/persist.c - trust/persist.h trust/save.c trust/save.h trust/frob-bc.c - trust/frob-ext.c trust/frob-pow.c - trust/test-base64.c - trust/test-builder.c trust/test-save.c - trust/test-utf8.c trust/test-x509.c - trust/types.h trust/utf8.c trust/utf8.h -Copyright: 2013, Redhat Inc. -License: BSD-3-Clause - -Files: p11-kit/remote.h common/frob-getenv.c - common/unix-peer.h -Copyright: 2014 Red Hat Inc. -License: BSD-3-Clause - - -Files: p11-kit/server.c - common/unix-peer.h -Copyright: 2014 Red Hat Inc. -License: BSD-3-Clause -Comment: make_private_security_descriptor() and the helper functions were - * copied from putty/windows/winsecur.c in the PuTTY source code as of - * git commit 12bd5a6c722152aa27f24598785593e72b3284ea. - * - * PuTTY is copyright 1997-2017 Simon Tatham. - * - * Portions copyright Robert de Bath, Joris van Rantwijk, Delian - * Delchev, Andreas Schultz, Jeroen Massar, Wez Furlong, Nicolas Barry, - * Justin Bradford, Ben Harris, Malcolm Smith, Ahmad Khalifa, Markus - * Kuhn, Colin Watson, Christopher Staite, and CORE SDI S.A. - * - * Permission is hereby granted, free of charge, to any person - * obtaining a copy of this software and associated documentation files - * (the "Software"), to deal in the Software without restriction, - * including without limitation the rights to use, copy, modify, merge, - * publish, distribute, sublicense, and/or sell copies of the Software, - * and to permit persons to whom the Software is furnished to do so, - * subject to the following conditions: - * - * The above copyright notice and this permission notice shall be - * included in all copies or substantial portions of the Software. - - -Files: p11-kit/remote.c -Copyright: 2014,2016 Red Hat Inc. -License: BSD-3-Clause - - -Files: p11-kit/test-mock.c -Copyright: 2012 Stefan Walter - 2012-2013 Red Hat Inc. -License: BSD-3-Clause - -Files: p11-kit/test-virtual.c -Copyright: 2012 Stefan Walter - 2012 Red Hat Inc. -License: BSD-3-Clause - - -Files: p11-kit/test-transport.c -Copyright: 2012 Stefan Walter - 2012-2017 Red Hat Inc. -License: BSD-3-Clause - - -Files: p11-kit/test-rpc.c -Copyright: 2012 Stefan Walter - Copyright (C) 2012-2017 Red Hat Inc. -License: BSD-3-Clause - - -Files: common/runtime.* common/test-runtime.c p11-kit/test-server.* - trust/extract-edk2.c -Copyright: (C) 2018 Red Hat Inc. -License: BSD-3-Clause - -Files: p11-kit/mock-module-ep5.c -Copyright: 2012 Stefan Walter - 2018 Red Hat Inc. -License: BSD-3-Clause - -Files: trust/test-edk2.c -Copyright: 2011, Collabora Ltd. - 2018 Red Hat Inc. -License: BSD-3-Clause - -Files: trust/extract-jks.c trust/test-jks.c -Copyright: 2019, Red Hat Inc. -License: BSD-3-Clause - -Files: p11-kit/rpc-transport.c -Copyright: 2012 Stefan Walter - 2013 Red Hat Inc. -License: BSD-3-Clause - -Files: p11-kit/test-deprecated.c -Copyright: 2011, Collabora Ltd. - 2012 Red Hat Inc. -License: BSD-3-Clause - -Files: p11-kit/virtual.c trust/asn1.c trust/asn1.h p11-kit/rpc-client.c - p11-kit/rpc-message.c p11-kit/rpc-message.h p11-kit/rpc-server.c -Copyright: 2008 Stefan Walter - 2012 Red Hat Inc. -License: BSD-3-Clause - -Files: p11-kit/rpc.h -Copyright: 2012-2013 Stefan Walter -License: BSD-3-Clause - -Files: trust/digest.c trust/digest.c common/hash.c -Copyright: 2004, 2005, 2007, 2011 Internet Systems Consortium, Inc. ("ISC") - 2000, 2001, 2003 Internet Software Consortium. -License: ISC - Permission to use, copy, modify, and/or distribute this software for any - purpose with or without fee is hereby granted, provided that the above - copyright notice and this permission notice appear in all copies. - . - THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH - REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY - AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, - INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM - LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE - OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR - PERFORMANCE OF THIS SOFTWARE. - - -Files: trust/base64.c trust/base64.h -Copyright: 1996, 1998 by Internet Software Consortium - Portions Copyright (c) 1995 by International Business Machines, Inc. -License: ISC+IBM - Copyright (c) 1996, 1998 by Internet Software Consortium. - . - Permission to use, copy, modify, and distribute this software for any - purpose with or without fee is hereby granted, provided that the above - copyright notice and this permission notice appear in all copies. - . - THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS - ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE - CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL - DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR - PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS - ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS - SOFTWARE. - . - . - Portions Copyright (c) 1995 by International Business Machines, Inc. - . - International Business Machines, Inc. (hereinafter called IBM) grants - permission under its copyrights to use, copy, modify, and distribute this - Software with or without fee, provided that the above copyright notice and - all paragraphs of this notice appear in all copies, and that the name of IBM - not be used in connection with the marketing of any product incorporating - the Software or modifications thereof, without specific, written prior - permission. - . - To the extent it has a right to do so, IBM grants an immunity from suit - under its patents, if any, for the use, sale or manufacture of products to - the extent that such products are used for performing Domain Name System - dynamic updates in TCP/IP networks by means of the Software. No immunity is - granted for any product per se or for any other function of any product. - . - THE SOFTWARE IS PROVIDED "AS IS", AND IBM DISCLAIMS ALL WARRANTIES, - INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A - PARTICULAR PURPOSE. IN NO EVENT SHALL IBM BE LIABLE FOR ANY SPECIAL, - DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER ARISING - OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE, EVEN - IF IBM IS APPRISED OF THE POSSIBILITY OF SUCH DAMAGES. - -Files: common/lexer.c common/lexer.h common/path.c -Copyright: 2005 Stefan Walter - 2011 Collabora Ltd. - 2013 Red Hat Inc. -License: BSD-3-Clause - -Files: common/compat.c -Copyright: Copyright (c) 2011 Collabora Ltd. - Portions of this file are covered by the following copyright: - Copyright (c) 2001 Mike Barcroft - Copyright (c) 1990, 1993 - Copyright (c) 1987, 1993 - The Regents of the University of California. -Comment: This code is derived from software contributed to Berkeley by - Chris Torek. -License: BSD-3-Clause - -Files: common/mock.h common/path.h common/frob-getauxval.c - common/test-lexer.c common/test-message.c - common/test-path.c common/test-url.c - p11-kit/test-proxy.c p11-kit/virtual.h p11-kit/test-util.c - trust/frob-nss-trust.c trust/test-parser.c - trust/test-persist.c p11-kit/client.h -Copyright: 2013 Red Hat Inc. -License: BSD-3-Clause - - -Files: p11-kit/iter.c p11-kit/iter.h p11-kit/test-iter.c p11-kit/iter.gnu.c -Copyright: 2013,2016 Red Hat Inc. -License: BSD-3-Clause - - -Files: p11-kit/client.c p11-kit/filter.c p11-kit/filter.h - p11-kit/test-filter.c p11-kit/virtual-fixed.h -Copyright: 2016 Red Hat Inc. -License: BSD-3-Clause - - -Files: common/test-argv.c -Copyright: 2017 Red Hat Inc. -License: BSD-3-Clause - - -Files: p11-kit/mock-module-ep.c p11-kit/test-progname.c - p11-kit/mock-module-ep3.c p11-kit/mock-module-ep4.c -Copyright: 2012 Stefan Walter -License: BSD-3-Clause - - -Files: common/unix-peer.c -Copyright: 2013 Nikos Mavrogiannopoulos -License: BSD-3-Clause - - -Files: debian/* -Copyright: 2011 Chris Coulson - 2011-2013 Andreas Metzler -License: BSD-3-Clause - - -Files: po/de.po -Copyright: 2011 Chris Leick -Comment: This file is distributed under the same license as the - debian files of the p11-kit package. -License: BSD-3-Clause - -Files: po/fi.po -Copyright: 2012 Rosetta Contributors and Canonical Ltd 2012 - Eerik Uusi-Illikainen https://launchpad.net/~ekiuusi-4, 2012 - Timo Jyrinki , 2012 -License: same-as-rest-of-p11kit - This file is distributed under the same license as the p11-kit - package. - - -License: BSD-3-Clause - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - 3. Neither the name of the University nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - . - THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND - ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - - ----------------------------------------- -libpam-modules version 1.3.1-5 - - -Copyright: - -This package was debianized by J.H.M. Dassen (Ray) jdassen@debian.org on -Wed, 23 Sep 1998 20:29:32 +0200. - -It was downloaded from ftp://ftp.kernel.org/pub/linux/libs/pam/pre/ - -Copyright (C) 1994, 1995, 1996 Olaf Kirch, -Copyright (C) 1995 Wietse Venema -Copyright (C) 1995, 2001-2008 Red Hat, Inc. -Copyright (C) 1996-1999, 2000-2003, 2005 Andrew G. Morgan -Copyright (C) 1996, 1997, 1999 Cristian Gafton -Copyright (C) 1996, 1999 Theodore Ts'o -Copyright (C) 1996 Alexander O. Yuriev -Copyright (C) 1996 Elliot Lee -Copyright (C) 1997 Philip W. Dalrymple -Copyright (C) 1999 Jan Rękorajski -Copyright (C) 1999 Ben Collins -Copyright (C) 2000-2001, 2003, 2005, 2007 Steve Langasek -Copyright (C) 2003, 2005 IBM Corporation -Copyright (C) 2003, 2006 SuSE Linux AG. -Copyright (C) 2003 Nalin Dahyabhai -Copyright (C) 2005-2008 Thorsten Kukuk -Copyright (C) 2005 Darren Tucker - - -Unless otherwise *explicitly* stated the following text describes the -licensed conditions under which the contents of this Linux-PAM release -may be distributed: - -------------------------------------------------------------------------- -Redistribution and use in source and binary forms of Linux-PAM, with -or without modification, are permitted provided that the following -conditions are met: - -1. Redistributions of source code must retain any existing copyright - notice, and this entire permission notice in its entirety, - including the disclaimer of warranties. - -2. Redistributions in binary form must reproduce all prior and current - copyright notices, this list of conditions, and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - -3. The name of any author may not be used to endorse or promote - products derived from this software without their specific prior - written permission. - -ALTERNATIVELY, this product may be distributed under the terms of the -GNU General Public License, in which case the provisions of the GNU -GPL are required INSTEAD OF the above restrictions. (This clause is -necessary due to a potential conflict between the GNU GPL and the -restrictions contained in a BSD-style copyright.) - -THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED -WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. -IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS -OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND -ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR -TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE -USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. -------------------------------------------------------------------------- - -On Debian GNU/Linux systems, the complete text of the GNU General -Public License can be found in `/usr/share/common-licenses/GPL'. - - ----------------------------------------- -libpam-modules-bin version 1.3.1-5 - - -Copyright: - -This package was debianized by J.H.M. Dassen (Ray) jdassen@debian.org on -Wed, 23 Sep 1998 20:29:32 +0200. - -It was downloaded from ftp://ftp.kernel.org/pub/linux/libs/pam/pre/ - -Copyright (C) 1994, 1995, 1996 Olaf Kirch, -Copyright (C) 1995 Wietse Venema -Copyright (C) 1995, 2001-2008 Red Hat, Inc. -Copyright (C) 1996-1999, 2000-2003, 2005 Andrew G. Morgan -Copyright (C) 1996, 1997, 1999 Cristian Gafton -Copyright (C) 1996, 1999 Theodore Ts'o -Copyright (C) 1996 Alexander O. Yuriev -Copyright (C) 1996 Elliot Lee -Copyright (C) 1997 Philip W. Dalrymple -Copyright (C) 1999 Jan Rękorajski -Copyright (C) 1999 Ben Collins -Copyright (C) 2000-2001, 2003, 2005, 2007 Steve Langasek -Copyright (C) 2003, 2005 IBM Corporation -Copyright (C) 2003, 2006 SuSE Linux AG. -Copyright (C) 2003 Nalin Dahyabhai -Copyright (C) 2005-2008 Thorsten Kukuk -Copyright (C) 2005 Darren Tucker - - -Unless otherwise *explicitly* stated the following text describes the -licensed conditions under which the contents of this Linux-PAM release -may be distributed: - -------------------------------------------------------------------------- -Redistribution and use in source and binary forms of Linux-PAM, with -or without modification, are permitted provided that the following -conditions are met: - -1. Redistributions of source code must retain any existing copyright - notice, and this entire permission notice in its entirety, - including the disclaimer of warranties. - -2. Redistributions in binary form must reproduce all prior and current - copyright notices, this list of conditions, and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - -3. The name of any author may not be used to endorse or promote - products derived from this software without their specific prior - written permission. - -ALTERNATIVELY, this product may be distributed under the terms of the -GNU General Public License, in which case the provisions of the GNU -GPL are required INSTEAD OF the above restrictions. (This clause is -necessary due to a potential conflict between the GNU GPL and the -restrictions contained in a BSD-style copyright.) - -THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED -WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. -IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS -OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND -ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR -TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE -USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. -------------------------------------------------------------------------- - -On Debian GNU/Linux systems, the complete text of the GNU General -Public License can be found in `/usr/share/common-licenses/GPL'. - - ----------------------------------------- -libpam-runtime version 1.3.1-5 - - -Copyright: - -This package was debianized by J.H.M. Dassen (Ray) jdassen@debian.org on -Wed, 23 Sep 1998 20:29:32 +0200. - -It was downloaded from ftp://ftp.kernel.org/pub/linux/libs/pam/pre/ - -Copyright (C) 1994, 1995, 1996 Olaf Kirch, -Copyright (C) 1995 Wietse Venema -Copyright (C) 1995, 2001-2008 Red Hat, Inc. -Copyright (C) 1996-1999, 2000-2003, 2005 Andrew G. Morgan -Copyright (C) 1996, 1997, 1999 Cristian Gafton -Copyright (C) 1996, 1999 Theodore Ts'o -Copyright (C) 1996 Alexander O. Yuriev -Copyright (C) 1996 Elliot Lee -Copyright (C) 1997 Philip W. Dalrymple -Copyright (C) 1999 Jan Rękorajski -Copyright (C) 1999 Ben Collins -Copyright (C) 2000-2001, 2003, 2005, 2007 Steve Langasek -Copyright (C) 2003, 2005 IBM Corporation -Copyright (C) 2003, 2006 SuSE Linux AG. -Copyright (C) 2003 Nalin Dahyabhai -Copyright (C) 2005-2008 Thorsten Kukuk -Copyright (C) 2005 Darren Tucker - - -Unless otherwise *explicitly* stated the following text describes the -licensed conditions under which the contents of this Linux-PAM release -may be distributed: - -------------------------------------------------------------------------- -Redistribution and use in source and binary forms of Linux-PAM, with -or without modification, are permitted provided that the following -conditions are met: - -1. Redistributions of source code must retain any existing copyright - notice, and this entire permission notice in its entirety, - including the disclaimer of warranties. - -2. Redistributions in binary form must reproduce all prior and current - copyright notices, this list of conditions, and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - -3. The name of any author may not be used to endorse or promote - products derived from this software without their specific prior - written permission. - -ALTERNATIVELY, this product may be distributed under the terms of the -GNU General Public License, in which case the provisions of the GNU -GPL are required INSTEAD OF the above restrictions. (This clause is -necessary due to a potential conflict between the GNU GPL and the -restrictions contained in a BSD-style copyright.) - -THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED -WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. -IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS -OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND -ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR -TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE -USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. -------------------------------------------------------------------------- - -On Debian GNU/Linux systems, the complete text of the GNU General -Public License can be found in `/usr/share/common-licenses/GPL'. - - ----------------------------------------- -libpam0g version 1.3.1-5 - - -Copyright: - -This package was debianized by J.H.M. Dassen (Ray) jdassen@debian.org on -Wed, 23 Sep 1998 20:29:32 +0200. - -It was downloaded from ftp://ftp.kernel.org/pub/linux/libs/pam/pre/ - -Copyright (C) 1994, 1995, 1996 Olaf Kirch, -Copyright (C) 1995 Wietse Venema -Copyright (C) 1995, 2001-2008 Red Hat, Inc. -Copyright (C) 1996-1999, 2000-2003, 2005 Andrew G. Morgan -Copyright (C) 1996, 1997, 1999 Cristian Gafton -Copyright (C) 1996, 1999 Theodore Ts'o -Copyright (C) 1996 Alexander O. Yuriev -Copyright (C) 1996 Elliot Lee -Copyright (C) 1997 Philip W. Dalrymple -Copyright (C) 1999 Jan Rękorajski -Copyright (C) 1999 Ben Collins -Copyright (C) 2000-2001, 2003, 2005, 2007 Steve Langasek -Copyright (C) 2003, 2005 IBM Corporation -Copyright (C) 2003, 2006 SuSE Linux AG. -Copyright (C) 2003 Nalin Dahyabhai -Copyright (C) 2005-2008 Thorsten Kukuk -Copyright (C) 2005 Darren Tucker - - -Unless otherwise *explicitly* stated the following text describes the -licensed conditions under which the contents of this Linux-PAM release -may be distributed: - -------------------------------------------------------------------------- -Redistribution and use in source and binary forms of Linux-PAM, with -or without modification, are permitted provided that the following -conditions are met: - -1. Redistributions of source code must retain any existing copyright - notice, and this entire permission notice in its entirety, - including the disclaimer of warranties. - -2. Redistributions in binary form must reproduce all prior and current - copyright notices, this list of conditions, and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - -3. The name of any author may not be used to endorse or promote - products derived from this software without their specific prior - written permission. - -ALTERNATIVELY, this product may be distributed under the terms of the -GNU General Public License, in which case the provisions of the GNU -GPL are required INSTEAD OF the above restrictions. (This clause is -necessary due to a potential conflict between the GNU GPL and the -restrictions contained in a BSD-style copyright.) - -THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED -WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. -IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS -OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND -ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR -TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE -USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. -------------------------------------------------------------------------- - -On Debian GNU/Linux systems, the complete text of the GNU General -Public License can be found in `/usr/share/common-licenses/GPL'. - - ----------------------------------------- -libpcre3 version 2:8.39-12 - - -Copyright: - -This is Debian GNU/Linux's prepackaged version of the PCRE regular -expression library and associated pgrep utility. - -This package was put together by me, Mark Baker from the -original sources obtained from ftp.csx.cam.ac.uk:/pub/software/programming/pcre. - -PCRE LICENCE ------------- - -PCRE is a library of functions to support regular expressions whose syntax -and semantics are as close as possible to those of the Perl 5 language. - -Release 7 of PCRE is distributed under the terms of the "BSD" licence, as -specified below. The documentation for PCRE, supplied in the "doc" -directory, is distributed under the same terms as the software itself. - -The basic library functions are written in C and are freestanding. Also -included in the distribution is a set of C++ wrapper functions. - - -THE BASIC LIBRARY FUNCTIONS ---------------------------- - -Written by: Philip Hazel -Email local part: ph10 -Email domain: cam.ac.uk - -University of Cambridge Computing Service, -Cambridge, England. - -Copyright (c) 1997-2007 University of Cambridge -All rights reserved. - - -THE C++ WRAPPER FUNCTIONS -------------------------- - -Contributed by: Google Inc. - -Copyright (c) 2007, Google Inc. -All rights reserved. - - -THE "BSD" LICENCE ------------------ - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - - * Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - - * Neither the name of the University of Cambridge nor the name of Google - Inc. nor the names of their contributors may be used to endorse or - promote products derived from this software without specific prior - written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE -LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. - -End - - ----------------------------------------- -libseccomp2 version 2.3.3-4 - - -Copyright: - -Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ -Upstream-Name: libseccomp -Source: https://sourceforge.net/projects/libseccomp/ - -Files: * -Copyright: 2012 Paul Moore - 2012 Ashley Lai - 2012 Corey Bryant - 2012 Eduardo Otubo - 2012 Eric Paris -License: LGPL-2.1 - -Files: tests/22-sim-basic_chains_array.tests -Copyright: 2013 Vitaly Shukela -License: LGPL-2.1 - -Files: src/hash.* -Copyright: 2006 Bob Jenkins -License: LGPL-2.1 - -Files: debian/* -Copyright: 2012 Kees Cook -License: LGPL-2.1 - -License: LGPL-2.1 - This library is free software; you can redistribute it and/or modify it - under the terms of version 2.1 of the GNU Lesser General Public License as - published by the Free Software Foundation. - . - This library 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 Lesser General Public License - for more details. - . - You should have received a copy of the GNU Lesser General Public License - along with this library; if not, see . - . - On Debian systems, the complete text of the GNU Lesser General - Public License can be found in "/usr/share/common-licenses/LGPL-2.1". - - ----------------------------------------- -libselinux1 version 2.8-1+b1 - - -Copyright: - -This is the Debian package for libselinux, and it is built from sources obtained from: -http://userspace.selinuxproject.org/trac/wiki/Releases - -This package was debianized by Colin Walters on -Thu, 3 Jul 2003 17:10:57 -0400. - -This library (libselinux) is public domain software, i.e. not copyrighted. - -Warranty Exclusion ------------------- -You agree that this software is a -non-commercially developed program that may contain "bugs" (as that -term is used in the industry) and that it may not function as intended. -The software is licensed "as is". NSA makes no, and hereby expressly -disclaims all, warranties, express, implied, statutory, or otherwise -with respect to the software, including noninfringement and the implied -warranties of merchantability and fitness for a particular purpose. - -Limitation of Liability ------------------------ -In no event will NSA be liable for any damages, including loss of data, -lost profits, cost of cover, or other special, incidental, -consequential, direct or indirect damages arising from the software or -the use thereof, however caused and on any theory of liability. This -limitation will apply even if NSA has been advised of the possibility -of such damage. You acknowledge that this is a reasonable allocation of -risk. - ----------------------------------------------------------------------------- - However, one file (utils/avcstat.c) is - Copyright: 2004 Red Hat, Inc., James Morris - and is distributed underthe terms of the GNU General Public License, - version 2. - ----------------------------------------------------------------------------- -In addition, The Debian specific package was modified to include an -excerpt from the GNU libc package in the file -utils/ia64-inline-syscall.h. The GNU C Library is distributed under -the terms of the GNU Lesser General Public License as published by the -Free Software Foundation; either version 2.1 of the License, or (at -your option) any later version. - -You should have received a copy of the GNU Lesser General Public -License along with the GNU C Library; if not, write to - Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, - Boston, MA 02110-1301, USA. - - -On Debian systems, the complete text of the GNU Library -General Public License can be found in `/usr/share/common-licenses/LGPL-2.1'. ------------------------------------------------------------------------------- - -This package is maintained by Manoj Srivastava . - -The Debian specific changes are © 2005, 2006, Manoj Srivastava -, and distributed under the terms of the GNU -General Public License, version 2. - -On Debian GNU/Linux systems, the complete text of the GNU General -Public License can be found in `/usr/share/common-licenses/GPL-2'. - - A copy of the GNU General Public License is also available at - . You may also obtain - it by writing to the Free Software Foundation, Inc., 51 Franklin - St, Fifth Floor, Boston, MA 02110-1301, USA. - -Manoj Srivastava -arch-tag: d4250e44-a0e0-4ee0-adb9-2bd74f6eeb27 - - ----------------------------------------- -libsemanage-common version 2.8-2 - - -Copyright: - -This is the Debian package for libsemanage, and it is built from sources -obtained from: http://www.nsa.gov/selinux/code/download5.cfm. - -libsemanage is Copyright © 2004-2007 Tresys Technology, LLC - Copyright © 2005 Red Hat, Inc. - - This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - - This library 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 - Lesser General Public License for more details. - - You should have received a copy of the GNU Lesser General Public - License along with this library; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1 - -On Debian GNU/Linux systems, the complete text of the Lesser GNU General -Public License can be found in `/usr/share/common-licenses/LGPL'. - -This package is maintained by Manoj Srivastava . - -The Debian specific changes are © 2005-2009, Manoj Srivastava -, and distributed under the terms of the GNU -General Public License, version 2. - -On Debian GNU/Linux systems, the complete text of the GNU General -Public License can be found in `/usr/share/common-licenses/GPL'. - - A copy of the GNU General Public License is also available at - . You may also obtain - it by writing to the Free Software Foundation, Inc., 51 Franklin - St, Fifth Floor, Boston, MA 02110-1301, USA. - -Manoj Srivastava -arch-tag: d4250e44-a0e0-4ee0-adb9-2bd74f6eeb27 - - ----------------------------------------- -libsemanage1 version 2.8-2 - - -Copyright: - -This is the Debian package for libsemanage, and it is built from sources -obtained from: http://www.nsa.gov/selinux/code/download5.cfm. - -libsemanage is Copyright © 2004-2007 Tresys Technology, LLC - Copyright © 2005 Red Hat, Inc. - - This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - - This library 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 - Lesser General Public License for more details. - - You should have received a copy of the GNU Lesser General Public - License along with this library; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1 - -On Debian GNU/Linux systems, the complete text of the Lesser GNU General -Public License can be found in `/usr/share/common-licenses/LGPL'. - -This package is maintained by Manoj Srivastava . - -The Debian specific changes are © 2005-2009, Manoj Srivastava -, and distributed under the terms of the GNU -General Public License, version 2. - -On Debian GNU/Linux systems, the complete text of the GNU General -Public License can be found in `/usr/share/common-licenses/GPL'. - - A copy of the GNU General Public License is also available at - . You may also obtain - it by writing to the Free Software Foundation, Inc., 51 Franklin - St, Fifth Floor, Boston, MA 02110-1301, USA. - -Manoj Srivastava -arch-tag: d4250e44-a0e0-4ee0-adb9-2bd74f6eeb27 - - ----------------------------------------- -libsepol1 version 2.8-1 - - -Copyright: - -This is the Debian package for libsepol, and it is built from sources -obtained from http://userspace.selinuxproject.org/releases/current/devel/ - - - -This package was debianized by Russell Coker on -Fri, 20 Aug 2004 17:26:18 +1000. - -libsepol is - Copyright (C) 2003, 2004 Stephen Smalley - Copyright (C) 2003-2007 Red Hat, Inc. - Copyright (C) 2004, 2005 Trusted Computer Solutions, Inc. - Copyright (C) 2003-2008 Tresys Technology, LLC - - - This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - - This library 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 - Lesser General Public License for more details. - - You should have received a copy of the GNU Lesser General Public - License along with this library; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA - -On Debian GNU/Linux systems, the complete text of the Lesser GNU General -Public License can be found in `/usr/share/common-licenses/LGPL'. - - This package is maintained by Manoj Srivastava . - - The Debian specific changes are © 2005-2008, Manoj Srivastava - , and distributed under the terms of the GNU - General Public License, version 2. - - -On Debian GNU/Linux systems, the complete text of the GNU General -Public License can be found in `/usr/share/common-licenses/GPL'. - - A copy of the GNU General Public License is also available at - . You may also obtain - it by writing to the Free Software Foundation, Inc., 51 Franklin - St, Fifth Floor, Boston, MA 02110-1301 USA - -Manoj Srivastava -arch-tag: d4250e44-a0e0-4ee0-adb9-2bd74f6eeb27 - - ----------------------------------------- -libsmartcols1 version 2.33.1-0.1 - - -Copyright: - -Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ -Upstream-Name: util-linux -Upstream-Contact: util-linux@vger.kernel.org -Source: https://www.kernel.org/pub/linux/utils/util-linux/ - -Files: * -Copyright: Michal Luscon - 1986 Gary S. Brown - 1990 Gordon Irlam (gordoni@cs.ua.oz.au) - 1991, 1992 Linus Torvalds - 1991-2004 Miquel van Smoorenburg - 1992 A. V. Le Blanc (LeBlanc@mcc.ac.uk) - 1992-1997 Michael K. Johnson, johnsonm@redhat.com - 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, - 2003, 2004, 2005, 2008 Theodore Ts'o - 1994 Kevin E. Martin (martin@cs.unc.edu) - 1994 Salvatore Valente - 1994,1996 Alessandro Rubini (rubini@ipvvis.unipv.it) - 1994-2005 Jeff Tranter (tranter@pobox.com) - 1995, 1999, 2000 Andries E. Brouwer - 1997-2005 Frodo Looijaard - 1998 Danek Duvall - 1999 Andreas Dilger - 1999-2002 Transmeta Corporation - 1999, 2000, 2002-2009, 2010, 2011, 2012, 2014 Red Hat, Inc. - 2000 Werner Almesberger - 2004-2006 Michael Holzt, kju -at- fqdn.org - 2005 Adrian Bunk - 2007-2014 Karel Zak - 2007, 2011 SuSE LINUX Products GmbH - 2008 Cai Qian - 2008 Hayden A. James (hayden.james@gmail.com) - 2008 James Youngman - 2008 Roy Peled, the.roy.peled -at- gmail.com - 2009 Mikhail Gusarov - 2010, 2011, 2012 Davidlohr Bueso - 2010 Jason Borden A - 2010 Hajime Taira - 2010 Masatake Yamato - 2011 IBM Corp. - 2012 Andy Lutomirski - 2012 Lennart Poettering - 2012 Sami Kerola - 2012 Cody Maloney - 2012 Werner Fink - 2013,2014 Ondrej Oprala -License: GPL-2+ - -Files: schedutils/ionice.c -Copyright: 2005 Jens Axboe -License: GPL-2 - -Files: schedutils/chrt.c - schedutils/taskset.c -Copyright: 2004 Robert Love - 2010 Karel Zak -License: GPL-2 - -Files: disk-utils/raw.c -Copyright: 1999, 2000, Red Hat Software -License: GPL-2 - -Files: sys-utils/nsenter.c -Copyright: 2012-2013 Eric Biederman -License: GPL-2 - -Files: disk-utils/mkfs.minix.c - disk-utils/mkswap.c -Copyright: 1991, 1992 Linus Torvalds -License: GPL-2 - -Files: lib/at.c - lib/blkdev.c - lib/loopdev.c - lib/sysfs.c - lib/ttyutils.c - lib/xgetpass.c - misc-utils/mcookie.c - sys-utils/setsid.c - text-utils/line.c -Copyright: n/a -License: public-domain - -Files: login-utils/vipw.c - misc-utils/cal.c - misc-utils/kill.c - misc-utils/logger.c - misc-utils/look.c - misc-utils/whereis.c - sys-utils/renice.c - term-utils/mesg.c - term-utils/script.c - term-utils/ttymsg.c - term-utils/wall.c - term-utils/write.c - text-utils/col.c - text-utils/colcrt.c - text-utils/colrm.c - text-utils/column.c - text-utils/hexdump.c - text-utils/hexdump.h - text-utils/hexdump-conv.c - text-utils/hexdump-display.c - text-utils/hexdump-parse.c - text-utils/rev.c - text-utils/ul.c -Copyright: 1980, 1983, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994 - The Regents of the University of California - 2014 Sami Kerola - 2014 Karel Zak -License: BSD-4-clause - -Files: text-utils/tailf.c -Copyright: 1996, 2003 Rickard E. Faith (faith@acm.org) -License: MIT - -Files: sys-utils/flock.c -Copyright: 2003-2005 H. Peter Anvin -License: MIT - -Files: text-utils/pg.c -Copyright: 2000-2001 Gunnar Ritter -License: BSD-2-clause - -Files: login-utils/last-deprecated.c -Copyright: 1987 Regents of the University of California -License: BSD-2-clause - -Files: login-utils/login.c -Copyright: 1980, 1987, 1988 The Regents of the University of California. - 2011 Karel Zak -License: BSD-2-clause - -Files: login-utils/logindefs.c -Copyright: 2003, 2004, 2005 Thorsten Kukuk -License: BSD-3-clause - -Files: libuuid/* - libuuid/src/* - libuuid/man/* -Copyright: 1996, 1997, 1998, 1999, 2007 Theodore Ts'o. - 1999 Andreas Dilger (adilger@enel.ucalgary.ca) -License: BSD-3-clause - -Files: lib/procutils.c - include/xalloc.h -Copyright: 2010, 2011 Davidlohr Bueso -License: LGPL-2+ - -Files: */colors.* -Copyright: 2012 Ondrej Oprala - 2012-2014 Karel Zak -License: LGPL-2+ - -Files: login-utils/setpwnam.h - login-utils/setpwnam.c -Copyright: 1994 Martin Schulze - 1994 Salvatore Valente -License: LGPL-2+ - -Files: libfdisk/* - libfdisk/src/* -Copyright: 2007-2013 Karel Zak - 2012 Davidlohr Bueso -License: LGPL-2.1+ - -Files: lib/cpuset.c - */match.* - lib/canonicalize.c - include/at.h -Copyright: 2008-2009, 2010, 2011, 2012 Karel Zak -License: LGPL-2.1+ - -Files: */mbsalign.* -Copyright: 2009-2010 Free Software Foundation, Inc. - 2010-2013 Karel Zak -License: LGPL-2.1+ - -Files: */readutmp.* -Copyright: 1992-2007, 2009-2014 Free Software Foundation, Inc. -License: GPL-3+ - -Files: */timeutils.* -Copyright: 2010 Lennart Poettering -License: LGPL-2.1+ - -Files: include/list.h -Copyright: 2008 Karel Zak - 1999-2008 by Theodore Ts'o -License: LGPL - -Files: libblkid/* - libblkid/src/* - libblkid/samples/* - libblkid/src/partitions/* - libblkid/src/superblocks/* - libblkid/src/topology/* -Copyright: 1999, 2001 Andries Brouwer - 1995, 1995, 1996, 1997, 1999, 2000, 2001, 2002, 2003, 2004 - Theodore Ts'o. - 2001 Andreas Dilger (adilger@turbolinux.com) - 2004-2008 Kay Sievers - 2008-2013 Karel Zak - 2009 Bastian Friedrich - 2009 Corentin Chary - 2009 Mike Hommey - 2009 Red Hat, Inc. - 2009-2010 Andreas Dilger - 2010 Andrew Nayenko - 2010 Jeroen Oortwijn - 2010 Jiro SEKIBA - 2011 Philipp Marek - 2012 Milan Broz - 2013 Alejandro Martinez Ruiz - 2013 Eric Sandeen - 2013 Rolf Fokkens - 2013 Zeeshan Ali (Khattak) -License: LGPL-2.1+ - -Files: include/cpuset.h - lib/randutils.c -Copyright: *unknown* -License: LGPL - -Files: misc-utils/blkid.c -Copyright: 2001 Andreas Dilger -License: LGPL - -Files: libmount/* - libmount/src/* -Copyright: 2008-2012 Karel Zak -License: LGPL-2.1+ - -Files: libmount/python/* -Copyright: 2013, Red Hat, Inc. -License: LGPL-3+ - -Files: libsmartcols/* -Copyright: 2009-2014 Karel Zak - 2014 Ondrej Oprala -License: LGPL - -Files: debian/* -Copyright: Guy Maor - Sean 'Shaleh' Perry - Adrian Bunk - LaMont Jones - 2014 Andreas Henriksson -License: GPL-2+ - - -License: public-domain - The files tagged with this license contains the following paragraphs: - . - No copyright is claimed. This code is in the public domain; do with - it what you wish. - . - Written by Karel Zak - -License: GPL-2 - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License, v2, as - published by the Free Software Foundation - . - 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. - . - 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. - . - On Debian systems, the complete text of the GNU General Public - License version 2 can be found in `/usr/share/common-licenses/GPL-2'. - -License: GPL-2+ - 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. - . - 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. - . - 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. - . - On Debian systems, the complete text of the GNU General Public - License version 2 can be found in `/usr/share/common-licenses/GPL-2'. - -License: GPL-3+ - 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 3 of the License, or - (at your option) any later version. - . - 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. - . - You should have received a copy of the GNU General Public License - along with this program. If not, see . - . - On Debian systems, the complete text of the GNU General Public - License version 3 can be found in `/usr/share/common-licenses/GPL-3'. - -License: BSD-2-clause - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - -License: BSD-3-clause - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are met: - . - 1) Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. - . - 2) Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. - . - 3) Neither the name of the ORGANIZATION nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - . - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE - LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - POSSIBILITY OF SUCH DAMAGE. - -License: BSD-4-clause - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - 3. All advertising materials mentioning features or use of this software - must display the following acknowledgement: - This product includes software developed by the University of - California, Berkeley and its contributors. - 4. Neither the name of the University nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - . - THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND - ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -License: LGPL - This file may be redistributed under the terms of the - GNU Lesser General Public License. - . - On Debian systems, the complete text of the GNU Lesser General Public - License can be found in ‘/usr/share/common-licenses/LGPL’. - -License: LGPL-2+ - This program is free software: you can redistribute it and/or modify - it under the terms of the GNU Lesser General Public License as published by - the Free Software Foundation, either version 2 of the License, or - (at your option) any later version. - . - 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 Lesser General Public License for more details. - . - You should have received a copy of the GNU Lesser General Public License - along with this program. If not, see . - . - The complete text of the GNU Lesser General Public License - can be found in /usr/share/common-licenses/LGPL-2 file. - -License: LGPL-2.1+ - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU Lesser General Public License as published by - the Free Software Foundation; either version 2.1, or (at your option) - any later version. - . - 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 Lesser General Public License for more details. - . - You should have received a copy of the GNU Lesser 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. - . - On Debian systems, the complete text of the GNU Lesser General Public - License version 2.1 can be found in ‘/usr/share/common-licenses/LGPL-2.1’. - -License: LGPL-3+ - This package is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 3 of the License, or (at your option) any later version. - . - This package 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 - Lesser General Public License for more details. - . - You should have received a copy of the GNU General Public License - along with this program. If not, see . - . - On Debian systems, the complete text of the GNU Lesser General - Public License can be found in "/usr/share/common-licenses/LGPL-3". - -License: MIT - Permission is hereby granted, free of charge, to any person - obtaining a copy of this software and associated documentation files - (the "Software"), to deal in the Software without restriction, - including without limitation the rights to use, copy, modify, merge, - publish, distribute, sublicense, and/or sell copies of the Software, - and to permit persons to whom the Software is furnished to do so, - subject to the following conditions: - . - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - . - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS - BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN - ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN - CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - SOFTWARE. - - - ----------------------------------------- -libss2 version 1.44.5-1+deb10u3 - - -Copyright: - -This is the Debian GNU/Linux prepackaged version of the ss -command-line interface parsing library. It is currently -distributed together with the EXT2 file system utilities, which are -otherwise packaged as "e2fsprogs". - -This package was put together by Yann Dirson , -from sources obtained from a mirror of: - tsx-11.mit.edu:/pub/linux/packages/ext2fs/ - -From the original distribution: - -Copyright 1987, 1988 by the Student Information Processing Board - of the Massachusetts Institute of Technology - -Permission to use, copy, modify, and distribute this software -and its documentation for any purpose and without fee is -hereby granted, provided that the above copyright notice -appear in all copies and that both that copyright notice and -this permission notice appear in supporting documentation, -and that the names of M.I.T. and the M.I.T. S.I.P.B. not be -used in advertising or publicity pertaining to distribution -of the software without specific, written prior permission. -M.I.T. and the M.I.T. S.I.P.B. make no representations about -the suitability of this software for any purpose. It is -provided "as is" without express or implied warranty. - - ----------------------------------------- -libstdc++6 version 8.3.0-6 - - -Copyright: - -This is the Debian GNU/Linux prepackaged version of the GNU compiler -collection, containing Ada, C, C++, Fortran 95, Objective-C, -Objective-C++, and Treelang compilers, documentation, and support -libraries. In addition, Debian provides the gdc compiler, either in -the same source package, or built from a separate same source package. -Packaging is done by the Debian GCC Maintainers -, with sources obtained from: - - ftp://gcc.gnu.org/pub/gcc/releases/ (for full releases) - svn://gcc.gnu.org/svn/gcc/ (for prereleases) - http://bitbucket.org/goshawk/gdc (for D) - https://github.com/MentorEmbedded/nvptx-newlib/ (for newlib-nvptx) - -The current gcc-8 source package is taken from the SVN gcc-8-branch. - -Changes: See changelog.Debian.gz - -Debian splits the GNU Compiler Collection into packages for each language, -library, and documentation as follows: - -Language Compiler package Library package Documentation ---------------------------------------------------------------------------- -Ada gnat-8 libgnat-8 gnat-8-doc -BRIG gccbrig-8 libhsail-rt0 -C gcc-8 gcc-8-doc -C++ g++-8 libstdc++6 libstdc++6-8-doc -D gdc-8 -Fortran 95 gfortran-8 libgfortran3 gfortran-8-doc -Go gccgo-8 libgo0 -Objective C gobjc-8 libobjc2 -Objective C++ gobjc++-8 - -For some language run-time libraries, Debian provides source files, -development files, debugging symbols and libraries containing position- -independent code in separate packages: - -Language Sources Development Debugging Position-Independent ------------------------------------------------------------------------------- -C++ libstdc++6-8-dbg libstdc++6-8-pic -D libphobos-8-dev - -Additional packages include: - -All languages: -libgcc1, libgcc2, libgcc4 GCC intrinsics (platform-dependent) -gcc-8-base Base files common to all compilers -gcc-8-soft-float Software floating point (ARM only) -gcc-8-source The sources with patches - -Ada: -libgnatvsn-dev, libgnatvsn8 GNAT version library - -C: -cpp-8, cpp-8-doc GNU C Preprocessor -libssp0-dev, libssp0 GCC stack smashing protection library -libquadmath0 Math routines for the __float128 type -fixincludes Fix non-ANSI header files - -C, C++ and Fortran 95: -libgomp1-dev, libgomp1 GCC OpenMP (GOMP) support library -libitm1-dev, libitm1 GNU Transactional Memory Library - -Biarch support: On some 64-bit platforms which can also run 32-bit code, -Debian provides additional packages containing 32-bit versions of some -libraries. These packages have names beginning with 'lib32' instead of -'lib', for example lib32stdc++6. Similarly, on some 32-bit platforms which -can also run 64-bit code, Debian provides additional packages with names -beginning with 'lib64' instead of 'lib'. These packages contain 64-bit -versions of the libraries. (At this time, not all platforms and not all -libraries support biarch.) The license terms for these lib32 or lib64 -packages are identical to the ones for the lib packages. - - -COPYRIGHT STATEMENTS AND LICENSING TERMS - - -GCC is Copyright (C) 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994, -1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, -2008, 2009, 2010, 2011, 2012, 2013, 2014 Free Software Foundation, Inc. - -GCC 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 3, or (at your option) any later -version. - -GCC 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. - -Files that have exception clauses are licensed under the terms of the -GNU General Public License; either version 3, or (at your option) any -later version. - -On Debian GNU/Linux systems, the complete text of the GNU General -Public License is in `/usr/share/common-licenses/GPL', version 3 of this -license in `/usr/share/common-licenses/GPL-3'. - -The following runtime libraries are licensed under the terms of the -GNU General Public License (v3 or later) with version 3.1 of the GCC -Runtime Library Exception (included in this file): - - - libgcc (libgcc/, gcc/libgcc2.[ch], gcc/unwind*, gcc/gthr*, - gcc/coretypes.h, gcc/crtstuff.c, gcc/defaults.h, gcc/dwarf2.h, - gcc/emults.c, gcc/gbl-ctors.h, gcc/gcov-io.h, gcc/libgcov.c, - gcc/tsystem.h, gcc/typeclass.h). - - libatomic - - libdecnumber - - libgomp - - libitm - - libssp - - libstdc++-v3 - - libobjc - - libgfortran - - The libgnat-8 Ada support library and libgnatvsn library. - - Various config files in gcc/config/ used in runtime libraries. - - libvtv - -The libbacktrace library is licensed under the following terms: - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - (1) Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - (2) Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - (3) The name of the author may not be used to - endorse or promote products derived from this software without - specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR -IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, -INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING -IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. - - -The libsanitizer libraries (libasan, liblsan, libtsan, libubsan) are -licensed under the following terms: - -Copyright (c) 2009-2014 by the LLVM contributors. - -All rights reserved. - -Developed by: - - LLVM Team - - University of Illinois at Urbana-Champaign - - http://llvm.org - -Permission is hereby granted, free of charge, to any person obtaining a copy of -this software and associated documentation files (the "Software"), to deal with -the Software without restriction, including without limitation the rights to -use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies -of the Software, and to permit persons to whom the Software is furnished to do -so, subject to the following conditions: - - * Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimers. - - * Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimers in the - documentation and/or other materials provided with the distribution. - - * Neither the names of the LLVM Team, University of Illinois at - Urbana-Champaign, nor the names of its contributors may be used to - endorse or promote products derived from this Software without specific - prior written permission. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS -FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -CONTRIBUTORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS WITH THE -SOFTWARE. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - - -The libffi library is licensed under the following terms: - - libffi - Copyright (c) 1996-2003 Red Hat, Inc. - - Permission is hereby granted, free of charge, to any person obtaining - a copy of this software and associated documentation files (the - ``Software''), to deal in the Software without restriction, including - without limitation the rights to use, copy, modify, merge, publish, - distribute, sublicense, and/or sell copies of the Software, and to - permit persons to whom the Software is furnished to do so, subject to - the following conditions: - - The above copyright notice and this permission notice shall be included - in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED ``AS IS'', WITHOUT WARRANTY OF ANY KIND, EXPRESS - OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. - IN NO EVENT SHALL CYGNUS SOLUTIONS BE LIABLE FOR ANY CLAIM, DAMAGES OR - OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, - ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR - OTHER DEALINGS IN THE SOFTWARE. - - -The documentation is licensed under the GNU Free Documentation License (v1.2). -On Debian GNU/Linux systems, the complete text of this license is in -`/usr/share/common-licenses/GFDL-1.2'. - - -GCC RUNTIME LIBRARY EXCEPTION - -Version 3.1, 31 March 2009 - -Copyright (C) 2009 Free Software Foundation, Inc. - -Everyone is permitted to copy and distribute verbatim copies of this -license document, but changing it is not allowed. - -This GCC Runtime Library Exception ("Exception") is an additional -permission under section 7 of the GNU General Public License, version -3 ("GPLv3"). It applies to a given file (the "Runtime Library") that -bears a notice placed by the copyright holder of the file stating that -the file is governed by GPLv3 along with this Exception. - -When you use GCC to compile a program, GCC may combine portions of -certain GCC header files and runtime libraries with the compiled -program. The purpose of this Exception is to allow compilation of -non-GPL (including proprietary) programs to use, in this way, the -header files and runtime libraries covered by this Exception. - -0. Definitions. - -A file is an "Independent Module" if it either requires the Runtime -Library for execution after a Compilation Process, or makes use of an -interface provided by the Runtime Library, but is not otherwise based -on the Runtime Library. - -"GCC" means a version of the GNU Compiler Collection, with or without -modifications, governed by version 3 (or a specified later version) of -the GNU General Public License (GPL) with the option of using any -subsequent versions published by the FSF. - -"GPL-compatible Software" is software whose conditions of propagation, -modification and use would permit combination with GCC in accord with -the license of GCC. - -"Target Code" refers to output from any compiler for a real or virtual -target processor architecture, in executable form or suitable for -input to an assembler, loader, linker and/or execution -phase. Notwithstanding that, Target Code does not include data in any -format that is used as a compiler intermediate representation, or used -for producing a compiler intermediate representation. - -The "Compilation Process" transforms code entirely represented in -non-intermediate languages designed for human-written code, and/or in -Java Virtual Machine byte code, into Target Code. Thus, for example, -use of source code generators and preprocessors need not be considered -part of the Compilation Process, since the Compilation Process can be -understood as starting with the output of the generators or -preprocessors. - -A Compilation Process is "Eligible" if it is done using GCC, alone or -with other GPL-compatible software, or if it is done without using any -work based on GCC. For example, using non-GPL-compatible Software to -optimize any GCC intermediate representations would not qualify as an -Eligible Compilation Process. - -1. Grant of Additional Permission. - -You have permission to propagate a work of Target Code formed by -combining the Runtime Library with Independent Modules, even if such -propagation would otherwise violate the terms of GPLv3, provided that -all Target Code was generated by Eligible Compilation Processes. You -may then convey such a combination under terms of your choice, -consistent with the licensing of the Independent Modules. - -2. No Weakening of GCC Copyleft. - -The availability of this Exception does not imply any general -presumption that third-party software is unaffected by the copyleft -requirements of the license of GCC. - - -libquadmath/*.[hc]: - - Copyright (C) 2010 Free Software Foundation, Inc. - Written by Francois-Xavier Coudert - Written by Tobias Burnus - -This file is part of the libiberty library. -Libiberty is free software; you can redistribute it and/or -modify it under the terms of the GNU Library General Public -License as published by the Free Software Foundation; either -version 2 of the License, or (at your option) any later version. - -Libiberty 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 -Library General Public License for more details. - -libquadmath/math: - -atanq.c, expm1q.c, j0q.c, j1q.c, log1pq.c, logq.c: - Copyright 2001 by Stephen L. Moshier - - This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - - This library 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 - Lesser General Public License for more details. - -coshq.c, erfq.c, jnq.c, lgammaq.c, powq.c, roundq.c: - Changes for 128-bit __float128 are - Copyright (C) 2001 Stephen L. Moshier - and are incorporated herein by permission of the author. The author - reserves the right to distribute this material elsewhere under different - copying permissions. These modifications are distributed here under - the following terms: - - This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - - This library 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 - Lesser General Public License for more details. - -ldexpq.c: - * Conversion to long double by Ulrich Drepper, - * Cygnus Support, drepper@cygnus.com. - -cosq_kernel.c, expq.c, sincos_table.c, sincosq.c, sincosq_kernel.c, -sinq_kernel.c, truncq.c: - Copyright (C) 1997, 1999 Free Software Foundation, Inc. - - The GNU C Library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - - The GNU C Library 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 - Lesser General Public License for more details. - -isinfq.c: - * Written by J.T. Conklin . - * Change for long double by Jakub Jelinek - * Public domain. - -llroundq.c, lroundq.c, tgammaq.c: - Copyright (C) 1997, 1999, 2002, 2004 Free Software Foundation, Inc. - This file is part of the GNU C Library. - Contributed by Ulrich Drepper , 1997 and - Jakub Jelinek , 1999. - - The GNU C Library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - - The GNU C Library 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 - Lesser General Public License for more details. - -log10q.c: - Cephes Math Library Release 2.2: January, 1991 - Copyright 1984, 1991 by Stephen L. Moshier - Adapted for glibc November, 2001 - - This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - - This library 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 - Lesser General Public License for more details. - -remaining files: - - * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved. - * - * Developed at SunPro, a Sun Microsystems, Inc. business. - * Permission to use, copy, modify, and distribute this - * software is freely granted, provided that this notice - * is preserved. - - -gcc/go/gofrontend, libgo: - -Copyright (c) 2009 The Go Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - -libmpx: - Copyright (C) 2009-2014, Intel Corporation - All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - * Neither the name of Intel Corporation nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT - HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, - INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, - BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS - OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED - AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY - WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - POSSIBILITY OF SUCH DAMAGE. - - -D: -gdc-8 GNU D Compiler -libphobos-8-dev D standard runtime library - -The D source package is made up of the following components. - -The D front-end for GCC: - - d/* - -Copyright (C) 2004-2007 David Friedman -Modified by Vincenzo Ampolo, Michael Parrot, Iain Buclaw, (C) 2009, 2010 - -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. - -On Debian GNU/Linux systems, the complete text of the GNU General -Public License is in `/usr/share/common-licenses/GPL', version 2 of this -license in `/usr/share/common-licenses/GPL-2'. - - -The DMD Compiler implementation of the D programming language: - - d/dmd/* - -Copyright (c) 1999-2010 by Digital Mars -All Rights Reserved -written by Walter Bright -http://www.digitalmars.com -License for redistribution is by either the Artistic License or -the GNU General Public License (v1). - -On Debian GNU/Linux systems, the complete text of the GNU General -Public License is in `/usr/share/common-licenses/GPL', the Artistic -license in `/usr/share/common-licenses/Artistic'. - - -The Zlib data compression library: - - d/phobos/etc/c/zlib/* - - (C) 1995-2004 Jean-loup Gailly and Mark Adler - - This software is provided 'as-is', without any express or implied - warranty. In no event will the authors be held liable for any damages - arising from the use of this software. - - Permission is granted to anyone to use this software for any purpose, - including commercial applications, and to alter it and redistribute it - freely, subject to the following restrictions: - - 1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. - 2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. - 3. This notice may not be removed or altered from any source distribution. - - -The Phobos standard runtime library: - - d/phobos/* - -Unless otherwise marked within the file, each file in the source -is under the following licenses: - -Copyright (C) 2004-2005 by Digital Mars, www.digitalmars.com -Written by Walter Bright - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, in both source and binary form, subject to the following -restrictions: - - o The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. - o Altered source versions must be plainly marked as such, and must not - be misrepresented as being the original software. - o This notice may not be removed or altered from any source - distribution. - -By plainly marking modifications, something along the lines of adding to each -file that has been changed a "Modified by Foo Bar" line -underneath the "Written by" line would be adequate. - -The libhsail-rt library is licensed under the following terms: - - Copyright (C) 2015-2017 Free Software Foundation, Inc. - Contributed by Pekka Jaaskelainen - for General Processor Tech. - - Permission is hereby granted, free of charge, to any person obtaining a - copy of this software and associated documentation files - (the "Software"), to deal in the Software without restriction, including - without limitation the rights to use, copy, modify, merge, publish, - distribute, sublicense, and/or sell copies of the Software, and to - permit persons to whom the Software is furnished to do so, subject to - the following conditions: - - The above copyright notice and this permission notice shall be included - in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS - OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. - IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, - DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR - OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE - USE OR OTHER DEALINGS IN THE SOFTWARE. - -libhsail-rt/rt/fp16.c is licensed under the following terms: - - Copyright (C) 2008-2017 Free Software Foundation, Inc. - Contributed by CodeSourcery. - - This file 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 3, or (at your option) any - later version. - - This file 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. - - Under Section 7 of GPL version 3, you are granted additional - permissions described in the GCC Runtime Library Exception, version - 3.1, as published by the Free Software Foundation. - - You should have received a copy of the GNU General Public License and - a copy of the GCC Runtime Library Exception along with this program; - see the files COPYING3 and COPYING.RUNTIME respectively. If not, see - . - -newlib-nvptx-20yymmdd/: - -Upstream Authors: -newlib@sources.redhat.com -Jeff Johnston -Tom Fitzsimmons - -The newlib subdirectory is a collection of software from several sources. -Each file may have its own copyright/license that is embedded in the source -file. - -This list documents those licenses which are more restrictive than -a BSD-like license or require the copyright notice -to be duplicated in documentation and/or other materials associated with -the distribution. Certain licenses documented here only apply to -specific targets. Certain clauses only apply if you are building the -code as part of your binary. - -Note that this list may omit certain licenses that -only pertain to the copying/modifying of the individual source code. -If you are distributing the source code, then you do not need to -worry about these omitted licenses, so long as you do not modify the -copyright information already in place. - -Parts of this work are licensed under the terms of the GNU General -Public License. On Debian systems, the complete text of this license -can be found in /usr/share/common-licenses/GPL. - -Parts of this work are licensed under the terms of the GNU Library -General Public License. On Debian systems, the complete text of this -license be found in /usr/share/common-licenses/LGPL. - -(1) University of California, Berkeley - -[1a] - -Copyright (c) 1990 The Regents of the University of California. -All rights reserved. - -Redistribution and use in source and binary forms are permitted -provided that the above copyright notice and this paragraph are -duplicated in all such forms and that any documentation, -and other materials related to such distribution and use -acknowledge that the software was developed -by the University of California, Berkeley. The name of the -University may not be used to endorse or promote products derived -from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR -IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. - -[1b] - -Copyright (c) 1990 The Regents of the University of California. -All rights reserved. - -Redistribution and use in source and binary forms are permitted -provided that the above copyright notice and this paragraph are -duplicated in all such forms and that any documentation, -advertising materials, and other materials related to such -distribution and use acknowledge that the software was developed -by the University of California, Berkeley. The name of the -University may not be used to endorse or promote products derived -from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR -IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. - -[1c] - -Copyright (c) 1981, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 -The Regents of the University of California. -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. -3. All advertising materials mentioning features or use of this software - must display the following acknowledgement: - This product includes software developed by the University of - California, Berkeley and its contributors. -4. Neither the name of the University nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS -OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY -OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF -SUCH DAMAGE. - -[1d] - -Copyright (c) 1988, 1990, 1993 Regents of the University of California. -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. -3. Neither the name of the University nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS -OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY -OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF -SUCH DAMAGE. - -[1e] - -Copyright (c) 1982, 1986, 1989, 1991, 1993, 1994 -The Regents of the University of California. All rights reserved. -(c) UNIX System Laboratories, Inc. -All or some portions of this file are derived from material licensed -to the University of California by American Telephone and Telegraph -Co. or Unix System Laboratories, Inc. and are reproduced herein with -the permission of UNIX System Laboratories, Inc. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. -3. All advertising materials mentioning features or use of this software - must display the following acknowledgement: - This product includes software developed by the University of - California, Berkeley and its contributors. -4. Neither the name of the University nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS -OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY -OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF -SUCH DAMAGE. - -[1f] - -Copyright (c) 1987, 1988, 2000 Regents of the University of California. -All rights reserved. - -Redistribution and use in source and binary forms are permitted -provided that: (1) source distributions retain this entire copyright -notice and comment, and (2) distributions including binaries display -the following acknowledgement: ``This product includes software -developed by the University of California, Berkeley and its contributors'' -in the documentation or other materials provided with the distribution -and in all advertising materials mentioning features or use of this -software. Neither the name of the University nor the names of its -contributors may be used to endorse or promote products derived -from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR -IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. - -------------------------------------------------------------- - Please note that in some of the above alternate licenses, there is a - statement regarding that acknowledgement must be made in any - advertising materials for products using the code. This restriction - no longer applies due to the following license change: - - ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change - - In some cases the defunct clause has been removed in modified newlib code and - in some cases, the clause has been left as-is. -------------------------------------------------------------- - -(2) Cygwin (cygwin targets only) - -Copyright 2001 Red Hat, Inc. - -This software is a copyrighted work licensed under the terms of the -Cygwin license. Please consult the file "CYGWIN_LICENSE" for -details. - -(3) David M. Gay at AT&T - -The author of this software is David M. Gay. - -Copyright (c) 1991 by AT&T. - -Permission to use, copy, modify, and distribute this software for any -purpose without fee is hereby granted, provided that this entire notice -is included in all copies of any software which is or includes a copy -or modification of this software and in all copies of the supporting -documentation for such software. - -THIS SOFTWARE IS BEING PROVIDED "AS IS", WITHOUT ANY EXPRESS OR IMPLIED -WARRANTY. IN PARTICULAR, NEITHER THE AUTHOR NOR AT&T MAKES ANY -REPRESENTATION OR WARRANTY OF ANY KIND CONCERNING THE MERCHANTABILITY -OF THIS SOFTWARE OR ITS FITNESS FOR ANY PARTICULAR PURPOSE. - -(4) Advanced Micro Devices - -Copyright 1989, 1990 Advanced Micro Devices, Inc. - -This software is the property of Advanced Micro Devices, Inc (AMD) which -specifically grants the user the right to modify, use and distribute this -software provided this notice is not removed or altered. All other rights -are reserved by AMD. - -AMD MAKES NO WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, WITH REGARD TO THIS -SOFTWARE. IN NO EVENT SHALL AMD BE LIABLE FOR INCIDENTAL OR CONSEQUENTIAL -DAMAGES IN CONNECTION WITH OR ARISING FROM THE FURNISHING, PERFORMANCE, OR -USE OF THIS SOFTWARE. - -So that all may benefit from your experience, please report any problems -or suggestions about this software to the 29K Technical Support Center at -800-29-29-AMD (800-292-9263) in the USA, or 0800-89-1131 in the UK, or -0031-11-1129 in Japan, toll free. The direct dial number is 512-462-4118. - -Advanced Micro Devices, Inc. -29K Support Products -Mail Stop 573 -5900 E. Ben White Blvd. -Austin, TX 78741 -800-292-9263 - -(5) C.W. Sandmann - -Copyright (C) 1993 C.W. Sandmann - -This file may be freely distributed as long as the author's name remains. - -(6) Eric Backus - -(C) Copyright 1992 Eric Backus - -This software may be used freely so long as this copyright notice is -left intact. There is no warrantee on this software. - -(7) Sun Microsystems - -Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved. - -Developed at SunPro, a Sun Microsystems, Inc. business. -Permission to use, copy, modify, and distribute this -software is freely granted, provided that this notice -is preserved. - -(8) Hewlett Packard - -(c) Copyright 1986 HEWLETT-PACKARD COMPANY - -To anyone who acknowledges that this file is provided "AS IS" -without any express or implied warranty: - permission to use, copy, modify, and distribute this file -for any purpose is hereby granted without fee, provided that -the above copyright notice and this notice appears in all -copies, and that the name of Hewlett-Packard Company not be -used in advertising or publicity pertaining to distribution -of the software without specific, written prior permission. -Hewlett-Packard Company makes no representations about the -suitability of this software for any purpose. - -(9) Hans-Peter Nilsson - -Copyright (C) 2001 Hans-Peter Nilsson - -Permission to use, copy, modify, and distribute this software is -freely granted, provided that the above copyright notice, this notice -and the following disclaimer are preserved with no changes. - -THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR -IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE. - -(10) Stephane Carrez (m68hc11-elf/m68hc12-elf targets only) - -Copyright (C) 1999, 2000, 2001, 2002 Stephane Carrez (stcarrez@nerim.fr) - -The authors hereby grant permission to use, copy, modify, distribute, -and license this software and its documentation for any purpose, provided -that existing copyright notices are retained in all copies and that this -notice is included verbatim in any distributions. No written agreement, -license, or royalty fee is required for any of the authorized uses. -Modifications to this software may be copyrighted by their authors -and need not follow the licensing terms described here, provided that -the new terms are clearly indicated on the first page of each file where -they apply. - -(11) Christopher G. Demetriou - -Copyright (c) 2001 Christopher G. Demetriou -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. -3. The name of the author may not be used to endorse or promote products - derived from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR -IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES -OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. -IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF -THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -(12) SuperH, Inc. - -Copyright 2002 SuperH, Inc. All rights reserved - -This software is the property of SuperH, Inc (SuperH) which specifically -grants the user the right to modify, use and distribute this software -provided this notice is not removed or altered. All other rights are -reserved by SuperH. - -SUPERH MAKES NO WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, WITH REGARD TO -THIS SOFTWARE. IN NO EVENT SHALL SUPERH BE LIABLE FOR INDIRECT, SPECIAL, -INCIDENTAL OR CONSEQUENTIAL DAMAGES IN CONNECTION WITH OR ARISING FROM -THE FURNISHING, PERFORMANCE, OR USE OF THIS SOFTWARE. - -So that all may benefit from your experience, please report any problems -or suggestions about this software to the SuperH Support Center via -e-mail at softwaresupport@superh.com . - -SuperH, Inc. -405 River Oaks Parkway -San Jose -CA 95134 -USA - -(13) Royal Institute of Technology - -Copyright (c) 1999 Kungliga Tekniska Hgskolan -(Royal Institute of Technology, Stockholm, Sweden). -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - -3. Neither the name of KTH nor the names of its contributors may be - used to endorse or promote products derived from this software without - specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY KTH AND ITS CONTRIBUTORS ``AS IS'' AND ANY -EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL KTH OR ITS CONTRIBUTORS BE -LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR -BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, -WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR -OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF -ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -(14) Alexey Zelkin - -Copyright (c) 2000, 2001 Alexey Zelkin -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS -OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY -OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF -SUCH DAMAGE. - -(15) Andrey A. Chernov - -Copyright (C) 1997 by Andrey A. Chernov, Moscow, Russia. -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS -OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY -OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF -SUCH DAMAGE. - -(16) FreeBSD - -Copyright (c) 1997-2002 FreeBSD Project. -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS -OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY -OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF -SUCH DAMAGE. - -(17) S. L. Moshier - -Author: S. L. Moshier. - -Copyright (c) 1984,2000 S.L. Moshier - -Permission to use, copy, modify, and distribute this software for any -purpose without fee is hereby granted, provided that this entire notice -is included in all copies of any software which is or includes a copy -or modification of this software and in all copies of the supporting -documentation for such software. - -THIS SOFTWARE IS BEING PROVIDED "AS IS", WITHOUT ANY EXPRESS OR IMPLIED -WARRANTY. IN PARTICULAR, THE AUTHOR MAKES NO REPRESENTATION -OR WARRANTY OF ANY KIND CONCERNING THE MERCHANTABILITY OF THIS -SOFTWARE OR ITS FITNESS FOR ANY PARTICULAR PURPOSE. - -(18) Citrus Project - -Copyright (c)1999 Citrus Project, -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS -OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY -OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF -SUCH DAMAGE. - -(19) Todd C. Miller - -Copyright (c) 1998 Todd C. Miller -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. -3. The name of the author may not be used to endorse or promote products - derived from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, -INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY -AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL -THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, -EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, -PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; -OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, -WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR -OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF -ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -(20) DJ Delorie (i386) - -Copyright (C) 1991 DJ Delorie -All rights reserved. - -Redistribution and use in source and binary forms is permitted -provided that the above copyright notice and following paragraph are -duplicated in all such forms. - -This file is distributed WITHOUT ANY WARRANTY; without even the implied -warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. - -(21) Free Software Foundation LGPL License (*-linux* targets only) - - Copyright (C) 1990-1999, 2000, 2001 - Free Software Foundation, Inc. - This file is part of the GNU C Library. - Contributed by Mark Kettenis , 1997. - - The GNU C Library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - - The GNU C Library 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 - Lesser General Public License for more details. - - You should have received a copy of the GNU Lesser General Public - License along with the GNU C Library; if not, write to the Free - Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA - 02110-1301 USA - -(22) Xavier Leroy LGPL License (i[3456]86-*-linux* targets only) - -Copyright (C) 1996 Xavier Leroy (Xavier.Leroy@inria.fr) - -This program is free software; you can redistribute it and/or -modify it under the terms of the GNU Library General Public License -as published by the Free Software Foundation; either version 2 -of the License, or (at your option) any later version. - -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 Library General Public License for more details. - -(23) Intel (i960) - -Copyright (c) 1993 Intel Corporation - -Intel hereby grants you permission to copy, modify, and distribute this -software and its documentation. Intel grants this permission provided -that the above copyright notice appears in all copies and that both the -copyright notice and this permission notice appear in supporting -documentation. In addition, Intel grants this permission provided that -you prominently mark as "not part of the original" any modifications -made to this software or documentation, and that the name of Intel -Corporation not be used in advertising or publicity pertaining to -distribution of the software or the documentation without specific, -written prior permission. - -Intel Corporation provides this AS IS, WITHOUT ANY WARRANTY, EXPRESS OR -IMPLIED, INCLUDING, WITHOUT LIMITATION, ANY WARRANTY OF MERCHANTABILITY -OR FITNESS FOR A PARTICULAR PURPOSE. Intel makes no guarantee or -representations regarding the use of, or the results of the use of, -the software and documentation in terms of correctness, accuracy, -reliability, currentness, or otherwise; and you rely on the software, -documentation and results solely at your own risk. - -IN NO EVENT SHALL INTEL BE LIABLE FOR ANY LOSS OF USE, LOSS OF BUSINESS, -LOSS OF PROFITS, INDIRECT, INCIDENTAL, SPECIAL OR CONSEQUENTIAL DAMAGES -OF ANY KIND. IN NO EVENT SHALL INTEL'S TOTAL LIABILITY EXCEED THE SUM -PAID TO INTEL FOR THE PRODUCT LICENSED HEREUNDER. - -(24) Hewlett-Packard (hppa targets only) - -(c) Copyright 1986 HEWLETT-PACKARD COMPANY - -To anyone who acknowledges that this file is provided "AS IS" -without any express or implied warranty: - permission to use, copy, modify, and distribute this file -for any purpose is hereby granted without fee, provided that -the above copyright notice and this notice appears in all -copies, and that the name of Hewlett-Packard Company not be -used in advertising or publicity pertaining to distribution -of the software without specific, written prior permission. -Hewlett-Packard Company makes no representations about the -suitability of this software for any purpose. - -(25) Henry Spencer (only *-linux targets) - -Copyright 1992, 1993, 1994 Henry Spencer. All rights reserved. -This software is not subject to any license of the American Telephone -and Telegraph Company or of the Regents of the University of California. - -Permission is granted to anyone to use this software for any purpose on -any computer system, and to alter it and redistribute it, subject -to the following restrictions: - -1. The author is not responsible for the consequences of use of this - software, no matter how awful, even if they arise from flaws in it. - -2. The origin of this software must not be misrepresented, either by - explicit claim or by omission. Since few users ever read sources, - credits must appear in the documentation. - -3. Altered versions must be plainly marked as such, and must not be - misrepresented as being the original software. Since few users - ever read sources, credits must appear in the documentation. - -4. This notice may not be removed or altered. - -(26) Mike Barcroft - -Copyright (c) 2001 Mike Barcroft -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS -OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY -OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF -SUCH DAMAGE. - -(27) Konstantin Chuguev (--enable-newlib-iconv) - -Copyright (c) 1999, 2000 - Konstantin Chuguev. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS -OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY -OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF -SUCH DAMAGE. - - iconv (Charset Conversion Library) v2.0 - -(27) Artem Bityuckiy (--enable-newlib-iconv) - -Copyright (c) 2003, Artem B. Bityuckiy, SoftMine Corporation. -Rights transferred to Franklin Electronic Publishers. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS -OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY -OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF -SUCH DAMAGE. - -(28) Red Hat Incorporated - -Unless otherwise stated in each remaining newlib file, the remaining -files in the newlib subdirectory default to the following copyright. -It should be noted that Red Hat Incorporated now owns copyrights -belonging to Cygnus Solutions and Cygnus Support. - -Copyright (c) 1994, 1997, 2001, 2002, 2003, 2004 Red Hat Incorporated. -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - - The name of Red Hat Incorporated may not be used to endorse - or promote products derived from this software without specific - prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL RED HAT INCORPORATED BE LIABLE FOR ANY -DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND -ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - ----------------------------------------- -libsystemd0 version 241-7~deb10u4 - - -Copyright: - -Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ -Upstream-Name: systemd -Upstream-Contact: systemd-devel@lists.freedesktop.org -Source: https://www.freedesktop.org/wiki/Software/systemd/ - -Files: * -Copyright: 2008-2015 Kay Sievers - 2010-2015 Lennart Poettering - 2012-2015 Zbigniew Jędrzejewski-Szmek - 2013-2015 Tom Gundersen - 2013-2015 Daniel Mack - 2010-2015 Harald Hoyer - 2013-2015 David Herrmann - 2013, 2014 Thomas H.P. Andersen - 2013, 2014 Daniel Buch - 2014 Susant Sahani - 2009-2015 Intel Corporation - 2000, 2005 Red Hat, Inc. - 2009 Alan Jenkins - 2010 ProFUSION embedded systems - 2010 Maarten Lankhorst - 1995-2004 Miquel van Smoorenburg - 1999 Tom Tromey - 2011 Michal Schmidt - 2012 B. Poettering - 2012 Holger Hans Peter Freyther - 2012 Dan Walsh - 2012 Roberto Sassu - 2013 David Strauss - 2013 Marius Vollmer - 2013 Jan Janssen - 2013 Simon Peeters -License: LGPL-2.1+ - -Files: src/basic/siphash24.h - src/basic/siphash24.c -Copyright: 2012 Jean-Philippe Aumasson - 2012 Daniel J. Bernstein -License: CC0-1.0 - -Files: src/basic/securebits.h -Copyright: Linus Torvalds -License: GPL-2 - -Files: src/basic/ioprio.h -Copyright: Jens Axboe -License: GPL-2 - -Files: src/shared/linux/auto_dev-ioctl.h -Copyright: 2008 Red Hat, Inc. - 2008 Ian Kent -License: GPL-2+ - -Files: src/basic/sparse-endian.h -Copyright: 2012 Josh Triplett -License: Expat - -Files: src/journal/lookup3.c - src/journal/lookup3.h -Copyright: none -License: public-domain - You can use this free for any purpose. It's in the public domain. It has no - warranty. - -Files: src/udev/* -Copyright: 2003-2012 Kay Sievers - 2003-2004 Greg Kroah-Hartman - 2004 Chris Friesen - 2004, 2009, 2010 David Zeuthen - 2005, 2006 SUSE Linux Products GmbH - 2003 IBM Corp. - 2007 Hannes Reinecke - 2009 Canonical Ltd. - 2009 Scott James Remnant - 2009 Martin Pitt - 2009 Piter Punk - 2009, 2010 Lennart Poettering - 2009 Filippo Argiolas - 2010 Maxim Levitsky - 2011 ProFUSION embedded systems - 2011 Karel Zak - 2014 Zbigniew Jędrzejewski-Szmek - 2014 David Herrmann - 2014 Carlos Garnacho -License: GPL-2+ - -Files: src/udev/udev-ctrl.c - src/udev/udevadm-hwdb.c - src/udev/udev-builtin.c - src/udev/udev-builtin-net_id.c - src/udev/udev-builtin-net_setup_link.c - src/udev/udev-builtin-hwdb.c - src/udev/udev-builtin-btrfs.c - src/udev/udev-builtin-keyboard.c - src/udev/net/link-config.h - src/udev/net/link-config.c - src/udev/net/ethtool-util.c - src/udev/net/ethtool-util.h -Copyright: 2007-2013 Kay Sievers - 2013 Tom Gundersen -License: LGPL-2.1+ - -Files: src/udev/scsi_id/scsi.h -Copyright: 2003 IBM Corp. -License: GPL-2 - -Files: debian/* -Copyright: 2010-2013 Tollef Fog Heen - 2013-2018 Michael Biebl - 2013 Michael Stapelberg -License: LGPL-2.1+ - -License: Expat - Permission is hereby granted, free of charge, to any person obtaining a copy - of this software and associated documentation files (the "Software"), to - deal in the Software without restriction, including without limitation the - rights to use, copy, modify, merge, publish, distribute, sublicense, and/or - sell copies of the Software, and to permit persons to whom the Software is - furnished to do so, subject to the following conditions: - . - The above copyright notice and this permission notice shall be included in - all copies or substantial portions of the Software. - . - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING - FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS - IN THE SOFTWARE. - -License: GPL-2 - 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 of the License. - . - 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. - . - 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 St, Fifth Floor, Boston, MA 02110-1301, USA. - . - On Debian and systems the full text of the GNU General Public - License version 2 can be found in the file - `/usr/share/common-licenses/GPL-2` - -License: GPL-2+ - 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, or (at your option) - any later version. - . - 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. - . - 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. - . - On Debian systems, the complete text of the GNU General Public License - version 2 can be found in ‘/usr/share/common-licenses/GPL-2’. - -License: LGPL-2.1+ - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU Lesser General Public License as published by - the Free Software Foundation; either version 2.1, or (at your option) - any later version. - . - 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 Lesser General Public License for more details. - . - You should have received a copy of the GNU Lesser 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. - . - On Debian systems, the complete text of the GNU Lesser General Public - License version 2.1 can be found in ‘/usr/share/common-licenses/LGPL-2.1’. - -License: CC0-1.0 - To the extent possible under law, the author(s) have dedicated all copyright - and related and neighboring rights to this software to the public domain - worldwide. This software is distributed without any warranty. - . - You should have received a copy of the CC0 Public Domain Dedication along with - this software. If not, see . - . - On Debian systems, the complete text of the CC0 1.0 Universal license can be - found in ‘/usr/share/common-licenses/CC0-1.0’. - - ----------------------------------------- -libtasn1-6 version 4.13-3 - - -Copyright: - -This package was debianized by Ivo Timmermans on -Sat, 15 Jun 2002 23:37:29 +0200. -Matthias Urlichs . - -It is now maintained by Andreas Metzler , Eric Dorland - and James Westby - -It was downloaded from ftp://ftp.gnutls.org/pub/crypto/gnutls/libtasn1/ - -Upstream Authors: Fabio Fiorina - Simon Josefsson - -The library itself is licensed as LGPLv2.1+, the build system, test-suite and -command-line tools (package libtasn1-bin) are GPLv3+. - -Copyright (library): -/* - * Copyright (C) 2000-2016 Free Software Foundation, Inc. - * - * This file is part of LIBTASN1. - * - * The LIBTASN1 library is free software; you can redistribute it - * and/or modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2.1 of the License, or (at your option) any later version. - * - * This library 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 - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA - * 02110-1301, USA - */ - -On Debian GNU/Linux systems, the complete text of the GNU Lesser -General Public License can be found in -`/usr/share/common-licenses/LGPL'; the text of the earliest applying version -of the license (2.1) can be found in `/usr/share/common-licenses/LGPL-2.1'. - - -Copyright (build system, test-suite and command-line tools): - * Copyright (C) 2000-2016 Free Software Foundation, Inc. - * - * This file is part of LIBTASN1. - * - * 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 3 of the License, or - * (at your option) any later version. - * - * 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. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - * - */ - -On Debian GNU/Linux systems, the complete text of the GNU General Public -License version 3 can be found in /usr/share/common-licenses/GPL-3. - - -The documentation is distributed under the terms of the GNU Free -Documentation License (FDL 1.3): ----------------------------------- -Copyright (c) 2001-2015 Free Software Foundation, Inc. - - Permission is granted to copy, distribute and/or modify this - document under the terms of the GNU Free Documentation License, - Version 1.3 or any later version published by the Free Software - Foundation; with no Invariant Sections, no Front-Cover Texts, and no - Back-Cover Texts. A copy of the license is included in the section - entitled "GNU Free Documentation License". ----------------------------------- - -On Debian systems a copy of the complete text of the GNU FDL 1.3 -can be found in /usr/share/common-licenses/GFDL-1.3. - - ----------------------------------------- -libtinfo6 version 6.1+20181013-2+deb10u2 - - -Copyright: - -This is the Debian prepackaged version of the ncurses -library and terminfo utilities. ncurses/terminfo was originally written -by Pavel Curtis and Zeyd M. Ben-Halim , and is -currently held by the Free Software Foundation. - -This package was put together by Vaidhyanathan G Mayilrangam - and Joel Klecker , using sources -obtained from ftp://ftp.gnu.org/gnu/ncurses/ncurses-5.0.tar.gz. -Current versions of the ncurses sources are found at -ftp://invisible-island.net/ncurses/. - -It is based somewhat on work done by Bruce Perens , -David Engel . Michael Alan Dorman -, Richard Braakman , James Troup -, J.H.M. Dassen (Ray) -, and Galen Hazelwood -over various years. - - -Copyright (c) 1998-2018 Free Software Foundation, Inc. -Copyright © 2001 by Pradeep Padala - -Permission is hereby granted, free of charge, to any person obtaining a -copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, distribute with modifications, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS -OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR -THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -Except as contained in this notice, the name(s) of the above copyright -holders shall not be used in advertising or otherwise to promote the -sale, use or other dealings in this Software without prior written -authorization. - - -Copyright (C) 1994 X Consortium - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to -deal in the Software without restriction, including without limitation the -rights to use, copy, modify, merge, publish, distribute, sublicense, and/or -sell copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN -AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC- -TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -Except as contained in this notice, the name of the X Consortium shall not -be used in advertising or otherwise to promote the sale, use or other deal- -ings in this Software without prior written authorization from the X Consor- -tium. - - -Copyright (c) 1980, 1991, 1992, 1993 - The Regents of the University of California. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. -3. Neither the name of the University nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS -OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY -OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF -SUCH DAMAGE. - - -Copyright 1996-2018 by Thomas E. Dickey - - All Rights Reserved - -Permission is hereby granted, free of charge, to any person obtaining a -copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS -OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -IN NO EVENT SHALL THE ABOVE LISTED COPYRIGHT HOLDER(S) BE LIABLE FOR ANY -CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, -TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE -SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -Except as contained in this notice, the name(s) of the above copyright -holders shall not be used in advertising or otherwise to promote the -sale, use or other dealings in this Software without prior written -authorization. - - ----------------------------------------- -libudev1 version 241-7~deb10u4 - - -Copyright: - -Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ -Upstream-Name: systemd -Upstream-Contact: systemd-devel@lists.freedesktop.org -Source: https://www.freedesktop.org/wiki/Software/systemd/ - -Files: * -Copyright: 2008-2015 Kay Sievers - 2010-2015 Lennart Poettering - 2012-2015 Zbigniew Jędrzejewski-Szmek - 2013-2015 Tom Gundersen - 2013-2015 Daniel Mack - 2010-2015 Harald Hoyer - 2013-2015 David Herrmann - 2013, 2014 Thomas H.P. Andersen - 2013, 2014 Daniel Buch - 2014 Susant Sahani - 2009-2015 Intel Corporation - 2000, 2005 Red Hat, Inc. - 2009 Alan Jenkins - 2010 ProFUSION embedded systems - 2010 Maarten Lankhorst - 1995-2004 Miquel van Smoorenburg - 1999 Tom Tromey - 2011 Michal Schmidt - 2012 B. Poettering - 2012 Holger Hans Peter Freyther - 2012 Dan Walsh - 2012 Roberto Sassu - 2013 David Strauss - 2013 Marius Vollmer - 2013 Jan Janssen - 2013 Simon Peeters -License: LGPL-2.1+ - -Files: src/basic/siphash24.h - src/basic/siphash24.c -Copyright: 2012 Jean-Philippe Aumasson - 2012 Daniel J. Bernstein -License: CC0-1.0 - -Files: src/basic/securebits.h -Copyright: Linus Torvalds -License: GPL-2 - -Files: src/basic/ioprio.h -Copyright: Jens Axboe -License: GPL-2 - -Files: src/shared/linux/auto_dev-ioctl.h -Copyright: 2008 Red Hat, Inc. - 2008 Ian Kent -License: GPL-2+ - -Files: src/basic/sparse-endian.h -Copyright: 2012 Josh Triplett -License: Expat - -Files: src/journal/lookup3.c - src/journal/lookup3.h -Copyright: none -License: public-domain - You can use this free for any purpose. It's in the public domain. It has no - warranty. - -Files: src/udev/* -Copyright: 2003-2012 Kay Sievers - 2003-2004 Greg Kroah-Hartman - 2004 Chris Friesen - 2004, 2009, 2010 David Zeuthen - 2005, 2006 SUSE Linux Products GmbH - 2003 IBM Corp. - 2007 Hannes Reinecke - 2009 Canonical Ltd. - 2009 Scott James Remnant - 2009 Martin Pitt - 2009 Piter Punk - 2009, 2010 Lennart Poettering - 2009 Filippo Argiolas - 2010 Maxim Levitsky - 2011 ProFUSION embedded systems - 2011 Karel Zak - 2014 Zbigniew Jędrzejewski-Szmek - 2014 David Herrmann - 2014 Carlos Garnacho -License: GPL-2+ - -Files: src/udev/udev-ctrl.c - src/udev/udevadm-hwdb.c - src/udev/udev-builtin.c - src/udev/udev-builtin-net_id.c - src/udev/udev-builtin-net_setup_link.c - src/udev/udev-builtin-hwdb.c - src/udev/udev-builtin-btrfs.c - src/udev/udev-builtin-keyboard.c - src/udev/net/link-config.h - src/udev/net/link-config.c - src/udev/net/ethtool-util.c - src/udev/net/ethtool-util.h -Copyright: 2007-2013 Kay Sievers - 2013 Tom Gundersen -License: LGPL-2.1+ - -Files: src/udev/scsi_id/scsi.h -Copyright: 2003 IBM Corp. -License: GPL-2 - -Files: debian/* -Copyright: 2010-2013 Tollef Fog Heen - 2013-2018 Michael Biebl - 2013 Michael Stapelberg -License: LGPL-2.1+ - -License: Expat - Permission is hereby granted, free of charge, to any person obtaining a copy - of this software and associated documentation files (the "Software"), to - deal in the Software without restriction, including without limitation the - rights to use, copy, modify, merge, publish, distribute, sublicense, and/or - sell copies of the Software, and to permit persons to whom the Software is - furnished to do so, subject to the following conditions: - . - The above copyright notice and this permission notice shall be included in - all copies or substantial portions of the Software. - . - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING - FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS - IN THE SOFTWARE. - -License: GPL-2 - 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 of the License. - . - 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. - . - 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 St, Fifth Floor, Boston, MA 02110-1301, USA. - . - On Debian and systems the full text of the GNU General Public - License version 2 can be found in the file - `/usr/share/common-licenses/GPL-2` - -License: GPL-2+ - 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, or (at your option) - any later version. - . - 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. - . - 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. - . - On Debian systems, the complete text of the GNU General Public License - version 2 can be found in ‘/usr/share/common-licenses/GPL-2’. - -License: LGPL-2.1+ - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU Lesser General Public License as published by - the Free Software Foundation; either version 2.1, or (at your option) - any later version. - . - 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 Lesser General Public License for more details. - . - You should have received a copy of the GNU Lesser 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. - . - On Debian systems, the complete text of the GNU Lesser General Public - License version 2.1 can be found in ‘/usr/share/common-licenses/LGPL-2.1’. - -License: CC0-1.0 - To the extent possible under law, the author(s) have dedicated all copyright - and related and neighboring rights to this software to the public domain - worldwide. This software is distributed without any warranty. - . - You should have received a copy of the CC0 Public Domain Dedication along with - this software. If not, see . - . - On Debian systems, the complete text of the CC0 1.0 Universal license can be - found in ‘/usr/share/common-licenses/CC0-1.0’. - - ----------------------------------------- -libunistring2 version 0.9.10-1 - - -Copyright: - -Format: http://svn.debian.org/wsvn/dep/web/deps/dep5.mdwn?op=file&rev=202 -Upstream-Name: libunistring -Upstream-Contact: Bruno Haible -Source: http://ftp.gnu.org/gnu/libunistring/ - -Files: * -Copyright: 1995-2017 Free Software Foundation, Inc. -License: LGPL-3+ or GPL-2+ - -Files: gnulib-m4/* m4/*.m4 -Copyright: 1995-2017 Free Software Foundation, Inc. -License: FreeSoftware - This file is free software; the Free Software Foundation - gives unlimited permission to copy and/or distribute it, - with or without modifications, as long as this notice is preserved. - -Files: m4/init-package-version.m4 - build-aux/ltmain.sh -Copyright: 1992-2009, Free Software Foundation, Inc. -License: GPL-2+ with distribution exception - This file is free software, distributed under the terms of the GNU - General Public License. As a special exception to the GNU General - Public License, this file may be distributed as part of a program - that contains a configuration script generated by Autoconf, under - the same distribution terms as the rest of that program. - -Files: doc/* -Copyright: 2001-2017 Free Software Foundation, Inc. -License: GPL-3+ or GFDL-1.2+ - -Files: tests/* woe32dll/* autogen.sh -Copyright: 1990-2017 Free Software Foundation, Inc. -License: GPL-3+ - -Files: build-aux/* -Copyright: 1995-2017 Free Software Foundation, Inc. -License: GPL-2+ - -Files: build-aux/texi2html -Copyright: 1999-2005 Patrice Dumas , - 1999-2005 Derek Price , - 1999-2005 Adrian Aichner -License: GPL-2+ - -Files: build-aux/install-sh -Copyright: 1994, X Consortium -License: MIT - -Files: debian/* -Copyright: 2009-2011 Andreas Rottmann - 2017 Jörg Frings-Fürst -License: GPL-3+ - -License: LGPL-3+ - This program is free software: you can redistribute it and/or modify it - under the terms of the GNU Lesser General Public License as published - by the Free Software Foundation; either version 3 of the License, or - (at your option) any later version. - . - 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 - Lesser General Public License for more details. - . - You should have received a copy of the GNU Lesser General Public License - along with this program. If not, see . - . - On Debian systems the full text of the GNU Lesser General Public - License version 3 can be found in the file - `/usr/share/common-licenses/LGPL-3'. - -License: GPL-3+ - 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 3 of the License, or - (at your option) any later version. - . - 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. - . - You should have received a copy of the GNU General Public License - along with this program. If not, see . - . - On Debian systems the full text of the GNU General Public License - version 3 can be found in the file - `/usr/share/common-licenses/GPL-3'. - -License: GPL-2+ - 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, or (at your option) - any later version. - . - 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. - . - 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. - . - On Debian systems the full text of the GNU General Public License - version 2 can be found in the file - `/usr/share/common-licenses/GPL-2'. - -License: GFDL-1.2+ - This manual is covered by the GNU FDL. Permission is granted to - copy, distribute and/or modify this document under the terms of the - GNU Free Documentation License (FDL), either version 1.2 of the - License, or (at your option) any later version published by the Free - Software Foundation (FSF); with no Invariant Sections, with no - Front-Cover Text, and with no Back-Cover Texts. - . - On Debian systems the full text of the GNU Free Documentation License - version 1.2 can be found in the file - `/usr/share/common-licenses/GFDL-1.2'. - -License: MIT - Permission is hereby granted, free of charge, to any person obtaining a copy - of this software and associated documentation files (the "Software"), to - deal in the Software without restriction, including without limitation the - rights to use, copy, modify, merge, publish, distribute, sublicense, and/or - sell copies of the Software, and to permit persons to whom the Software is - furnished to do so, subject to the following conditions: - . - The above copyright notice and this permission notice shall be included in - all copies or substantial portions of the Software. - . - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN - AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC- - TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - . - Except as contained in this notice, the name of the X Consortium shall not - be used in advertising or otherwise to promote the sale, use or other deal- - ings in this Software without prior written authorization from the X Consor- - tium. - - ----------------------------------------- -libuuid1 version 2.33.1-0.1 - - -Copyright: - -Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ -Upstream-Name: util-linux -Upstream-Contact: util-linux@vger.kernel.org -Source: https://www.kernel.org/pub/linux/utils/util-linux/ - -Files: * -Copyright: Michal Luscon - 1986 Gary S. Brown - 1990 Gordon Irlam (gordoni@cs.ua.oz.au) - 1991, 1992 Linus Torvalds - 1991-2004 Miquel van Smoorenburg - 1992 A. V. Le Blanc (LeBlanc@mcc.ac.uk) - 1992-1997 Michael K. Johnson, johnsonm@redhat.com - 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, - 2003, 2004, 2005, 2008 Theodore Ts'o - 1994 Kevin E. Martin (martin@cs.unc.edu) - 1994 Salvatore Valente - 1994,1996 Alessandro Rubini (rubini@ipvvis.unipv.it) - 1994-2005 Jeff Tranter (tranter@pobox.com) - 1995, 1999, 2000 Andries E. Brouwer - 1997-2005 Frodo Looijaard - 1998 Danek Duvall - 1999 Andreas Dilger - 1999-2002 Transmeta Corporation - 1999, 2000, 2002-2009, 2010, 2011, 2012, 2014 Red Hat, Inc. - 2000 Werner Almesberger - 2004-2006 Michael Holzt, kju -at- fqdn.org - 2005 Adrian Bunk - 2007-2014 Karel Zak - 2007, 2011 SuSE LINUX Products GmbH - 2008 Cai Qian - 2008 Hayden A. James (hayden.james@gmail.com) - 2008 James Youngman - 2008 Roy Peled, the.roy.peled -at- gmail.com - 2009 Mikhail Gusarov - 2010, 2011, 2012 Davidlohr Bueso - 2010 Jason Borden A - 2010 Hajime Taira - 2010 Masatake Yamato - 2011 IBM Corp. - 2012 Andy Lutomirski - 2012 Lennart Poettering - 2012 Sami Kerola - 2012 Cody Maloney - 2012 Werner Fink - 2013,2014 Ondrej Oprala -License: GPL-2+ - -Files: schedutils/ionice.c -Copyright: 2005 Jens Axboe -License: GPL-2 - -Files: schedutils/chrt.c - schedutils/taskset.c -Copyright: 2004 Robert Love - 2010 Karel Zak -License: GPL-2 - -Files: disk-utils/raw.c -Copyright: 1999, 2000, Red Hat Software -License: GPL-2 - -Files: sys-utils/nsenter.c -Copyright: 2012-2013 Eric Biederman -License: GPL-2 - -Files: disk-utils/mkfs.minix.c - disk-utils/mkswap.c -Copyright: 1991, 1992 Linus Torvalds -License: GPL-2 - -Files: lib/at.c - lib/blkdev.c - lib/loopdev.c - lib/sysfs.c - lib/ttyutils.c - lib/xgetpass.c - misc-utils/mcookie.c - sys-utils/setsid.c - text-utils/line.c -Copyright: n/a -License: public-domain - -Files: login-utils/vipw.c - misc-utils/cal.c - misc-utils/kill.c - misc-utils/logger.c - misc-utils/look.c - misc-utils/whereis.c - sys-utils/renice.c - term-utils/mesg.c - term-utils/script.c - term-utils/ttymsg.c - term-utils/wall.c - term-utils/write.c - text-utils/col.c - text-utils/colcrt.c - text-utils/colrm.c - text-utils/column.c - text-utils/hexdump.c - text-utils/hexdump.h - text-utils/hexdump-conv.c - text-utils/hexdump-display.c - text-utils/hexdump-parse.c - text-utils/rev.c - text-utils/ul.c -Copyright: 1980, 1983, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994 - The Regents of the University of California - 2014 Sami Kerola - 2014 Karel Zak -License: BSD-4-clause - -Files: text-utils/tailf.c -Copyright: 1996, 2003 Rickard E. Faith (faith@acm.org) -License: MIT - -Files: sys-utils/flock.c -Copyright: 2003-2005 H. Peter Anvin -License: MIT - -Files: text-utils/pg.c -Copyright: 2000-2001 Gunnar Ritter -License: BSD-2-clause - -Files: login-utils/last-deprecated.c -Copyright: 1987 Regents of the University of California -License: BSD-2-clause - -Files: login-utils/login.c -Copyright: 1980, 1987, 1988 The Regents of the University of California. - 2011 Karel Zak -License: BSD-2-clause - -Files: login-utils/logindefs.c -Copyright: 2003, 2004, 2005 Thorsten Kukuk -License: BSD-3-clause - -Files: libuuid/* - libuuid/src/* - libuuid/man/* -Copyright: 1996, 1997, 1998, 1999, 2007 Theodore Ts'o. - 1999 Andreas Dilger (adilger@enel.ucalgary.ca) -License: BSD-3-clause - -Files: lib/procutils.c - include/xalloc.h -Copyright: 2010, 2011 Davidlohr Bueso -License: LGPL-2+ - -Files: */colors.* -Copyright: 2012 Ondrej Oprala - 2012-2014 Karel Zak -License: LGPL-2+ - -Files: login-utils/setpwnam.h - login-utils/setpwnam.c -Copyright: 1994 Martin Schulze - 1994 Salvatore Valente -License: LGPL-2+ - -Files: libfdisk/* - libfdisk/src/* -Copyright: 2007-2013 Karel Zak - 2012 Davidlohr Bueso -License: LGPL-2.1+ - -Files: lib/cpuset.c - */match.* - lib/canonicalize.c - include/at.h -Copyright: 2008-2009, 2010, 2011, 2012 Karel Zak -License: LGPL-2.1+ - -Files: */mbsalign.* -Copyright: 2009-2010 Free Software Foundation, Inc. - 2010-2013 Karel Zak -License: LGPL-2.1+ - -Files: */readutmp.* -Copyright: 1992-2007, 2009-2014 Free Software Foundation, Inc. -License: GPL-3+ - -Files: */timeutils.* -Copyright: 2010 Lennart Poettering -License: LGPL-2.1+ - -Files: include/list.h -Copyright: 2008 Karel Zak - 1999-2008 by Theodore Ts'o -License: LGPL - -Files: libblkid/* - libblkid/src/* - libblkid/samples/* - libblkid/src/partitions/* - libblkid/src/superblocks/* - libblkid/src/topology/* -Copyright: 1999, 2001 Andries Brouwer - 1995, 1995, 1996, 1997, 1999, 2000, 2001, 2002, 2003, 2004 - Theodore Ts'o. - 2001 Andreas Dilger (adilger@turbolinux.com) - 2004-2008 Kay Sievers - 2008-2013 Karel Zak - 2009 Bastian Friedrich - 2009 Corentin Chary - 2009 Mike Hommey - 2009 Red Hat, Inc. - 2009-2010 Andreas Dilger - 2010 Andrew Nayenko - 2010 Jeroen Oortwijn - 2010 Jiro SEKIBA - 2011 Philipp Marek - 2012 Milan Broz - 2013 Alejandro Martinez Ruiz - 2013 Eric Sandeen - 2013 Rolf Fokkens - 2013 Zeeshan Ali (Khattak) -License: LGPL-2.1+ - -Files: include/cpuset.h - lib/randutils.c -Copyright: *unknown* -License: LGPL - -Files: misc-utils/blkid.c -Copyright: 2001 Andreas Dilger -License: LGPL - -Files: libmount/* - libmount/src/* -Copyright: 2008-2012 Karel Zak -License: LGPL-2.1+ - -Files: libmount/python/* -Copyright: 2013, Red Hat, Inc. -License: LGPL-3+ - -Files: libsmartcols/* -Copyright: 2009-2014 Karel Zak - 2014 Ondrej Oprala -License: LGPL - -Files: debian/* -Copyright: Guy Maor - Sean 'Shaleh' Perry - Adrian Bunk - LaMont Jones - 2014 Andreas Henriksson -License: GPL-2+ - - -License: public-domain - The files tagged with this license contains the following paragraphs: - . - No copyright is claimed. This code is in the public domain; do with - it what you wish. - . - Written by Karel Zak - -License: GPL-2 - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License, v2, as - published by the Free Software Foundation - . - 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. - . - 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. - . - On Debian systems, the complete text of the GNU General Public - License version 2 can be found in `/usr/share/common-licenses/GPL-2'. - -License: GPL-2+ - 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. - . - 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. - . - 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. - . - On Debian systems, the complete text of the GNU General Public - License version 2 can be found in `/usr/share/common-licenses/GPL-2'. - -License: GPL-3+ - 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 3 of the License, or - (at your option) any later version. - . - 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. - . - You should have received a copy of the GNU General Public License - along with this program. If not, see . - . - On Debian systems, the complete text of the GNU General Public - License version 3 can be found in `/usr/share/common-licenses/GPL-3'. - -License: BSD-2-clause - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - -License: BSD-3-clause - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are met: - . - 1) Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. - . - 2) Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. - . - 3) Neither the name of the ORGANIZATION nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - . - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE - LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - POSSIBILITY OF SUCH DAMAGE. - -License: BSD-4-clause - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - 3. All advertising materials mentioning features or use of this software - must display the following acknowledgement: - This product includes software developed by the University of - California, Berkeley and its contributors. - 4. Neither the name of the University nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - . - THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND - ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -License: LGPL - This file may be redistributed under the terms of the - GNU Lesser General Public License. - . - On Debian systems, the complete text of the GNU Lesser General Public - License can be found in ‘/usr/share/common-licenses/LGPL’. - -License: LGPL-2+ - This program is free software: you can redistribute it and/or modify - it under the terms of the GNU Lesser General Public License as published by - the Free Software Foundation, either version 2 of the License, or - (at your option) any later version. - . - 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 Lesser General Public License for more details. - . - You should have received a copy of the GNU Lesser General Public License - along with this program. If not, see . - . - The complete text of the GNU Lesser General Public License - can be found in /usr/share/common-licenses/LGPL-2 file. - -License: LGPL-2.1+ - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU Lesser General Public License as published by - the Free Software Foundation; either version 2.1, or (at your option) - any later version. - . - 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 Lesser General Public License for more details. - . - You should have received a copy of the GNU Lesser 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. - . - On Debian systems, the complete text of the GNU Lesser General Public - License version 2.1 can be found in ‘/usr/share/common-licenses/LGPL-2.1’. - -License: LGPL-3+ - This package is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 3 of the License, or (at your option) any later version. - . - This package 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 - Lesser General Public License for more details. - . - You should have received a copy of the GNU General Public License - along with this program. If not, see . - . - On Debian systems, the complete text of the GNU Lesser General - Public License can be found in "/usr/share/common-licenses/LGPL-3". - -License: MIT - Permission is hereby granted, free of charge, to any person - obtaining a copy of this software and associated documentation files - (the "Software"), to deal in the Software without restriction, - including without limitation the rights to use, copy, modify, merge, - publish, distribute, sublicense, and/or sell copies of the Software, - and to permit persons to whom the Software is furnished to do so, - subject to the following conditions: - . - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - . - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS - BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN - ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN - CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - SOFTWARE. - - - ----------------------------------------- -libzstd1 version 1.3.8+dfsg-3 - - -Copyright: - -Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ -Upstream-Name: Zstd -Source: https://github.com/facebook/zstd -Files-Excluded: appveyor.yml - circle.yml - build/* - programs/windres/* - .travis.yml - .buckversion - .buckconfig - .circleci/* - -Files: * -Copyright: 2013-2018, Yann Collet - 2016, Przemyslaw Skibinski - 2016-2018, Facebook, Inc. -License: BSD-3-clause and GPL-2 -Comment: Starting from 1.3.1 zstd's patent claim is removed - see: https://github.com/facebook/zstd/pull/801 - -Files: zlibWrapper/examples/*.c -Copyright: 1995-2006, 2011 Jean-loup Gailly -License: zlib - -Files: zlibWrapper/gz*.c -Copyright: (C) 2004, 2005, 2010, 2011, 2012, 2013 Mark Adler -License: zlib - -License: zlib - This software is provided 'as-is', without any express or implied - warranty. In no event will the authors be held liable for any damages - arising from the use of this software. - . - Permission is granted to anyone to use this software for any purpose, - including commercial applications, and to alter it and redistribute it - freely, subject to the following restrictions: - . - 1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgement in the product documentation would be - appreciated but is not required. - 2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. - 3. This notice may not be removed or altered from any source distribution. - -Files: contrib/linux-kernel/fs/squashfs/* -Copyright: 2017 Facebook -License: GPL-2+ - 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, - or (at your option) any later version. - . - 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. - . - On Debian systems you can find a full copy of the GNU General Public - License version 2 at /usr/share/common-licenses/GPL-2. - -Files: lib/dictBuilder/divsufsort.* -Copyright: 2003-2008, Yuta Mori -License: Expat - -Files: examples/* -Copyright: 2016-present, Yann Collet, Facebook, Inc. -License: BSD-3-clause and GPL-2 - -Files: debian/* -Copyright: 2015-2016 Kevin Murray -License: Expat - -License: Expat - Permission is hereby granted, free of charge, to any person obtaining - a copy of this software and associated documentation files (the - "Software"), to deal in the Software without restriction, including - without limitation the rights to use, copy, modify, merge, publish, - distribute, sublicense, and/or sell copies of the Software, and to - permit persons to whom the Software is furnished to do so, subject to - the following conditions: - . - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - . - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS - BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN - ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN - CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - SOFTWARE. - -License: GPL-2 - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License, v2, as - published by the Free Software Foundation - . - 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. - . - 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. - . - On Debian systems, the complete text of the GNU General Public - License version 2 can be found in `/usr/share/common-licenses/GPL-2'. - -License: BSD-3-clause - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are met: - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - * Neither the name of cereal nor the - names of its contributors may be used to endorse or promote products - derived from this software without specific prior written permission. - . - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND - ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - DISCLAIMED. IN NO EVENT SHALL RANDOLPH VOORHIES OR SHANE GRANT BE LIABLE FOR ANY - DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS - SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - ----------------------------------------- -login version 1:4.5-1.1 - - -Copyright: - -This is Debian GNU/Linux's prepackaged version of the shadow utilities. - -It was downloaded from: . -As of May 2007, this site is no longer available. - -Copyright: - -Parts of this software are copyright 1988 - 1994, Julianne Frances Haugh. -All rights reserved. - -Parts of this software are copyright 1997 - 2001, Marek Michałkiewicz. -All rights reserved. - -Parts of this software are copyright 2001 - 2004, Andrzej Krzysztofowicz -All rights reserved. - -Parts of this software are copyright 2000 - 2007, Tomasz Kłoczko. -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. -3. Neither the name of Julianne F. Haugh nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY JULIE HAUGH AND CONTRIBUTORS ``AS IS'' AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL JULIE HAUGH OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS -OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY -OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF -SUCH DAMAGE. - -This source code is currently archived on ftp.uu.net in the -comp.sources.misc portion of the USENET archives. You may also contact -the author, Julianne F. Haugh, at jockgrrl@ix.netcom.com if you have -any questions regarding this package. - -THIS SOFTWARE IS BEING DISTRIBUTED AS-IS. THE AUTHORS DISCLAIM ALL -LIABILITY FOR ANY CONSEQUENCES OF USE. THE USER IS SOLELY RESPONSIBLE -FOR THE MAINTENANCE OF THIS SOFTWARE PACKAGE. THE AUTHORS ARE UNDER NO -OBLIGATION TO PROVIDE MODIFICATIONS OR IMPROVEMENTS. THE USER IS -ENCOURAGED TO TAKE ANY AND ALL STEPS NEEDED TO PROTECT AGAINST ACCIDENTAL -LOSS OF INFORMATION OR MACHINE RESOURCES. - -Special thanks are due to Chip Rosenthal for his fine testing efforts; -to Steve Simmons for his work in porting this code to BSD; and to Bill -Kennedy for his contributions of LaserJet printer time and energies. -Also, thanks for Dennis L. Mumaugh for the initial shadow password -information and to Tony Walton (olapw@olgb1.oliv.co.uk) for the System -V Release 4 changes. Effort in porting to SunOS has been contributed -by Dr. Michael Newberry (miken@cs.adfa.oz.au) and Micheal J. Miller, Jr. -(mke@kaberd.rain.com). Effort in porting to AT&T UNIX System V Release -4 has been provided by Andrew Herbert (andrew@werple.pub.uu.oz.au). -Special thanks to Marek Michalkiewicz (marekm@i17linuxb.ists.pwr.wroc.pl) -for taking over the Linux port of this software. - -Source files: login_access.c, login_desrpc.c, login_krb.c are derived -from the logdaemon-5.0 package, which is under the following license: - -/************************************************************************ -* Copyright 1995 by Wietse Venema. All rights reserved. Individual files -* may be covered by other copyrights (as noted in the file itself.) -* -* This material was originally written and compiled by Wietse Venema at -* Eindhoven University of Technology, The Netherlands, in 1990, 1991, -* 1992, 1993, 1994 and 1995. -* -* Redistribution and use in source and binary forms are permitted -* provided that this entire copyright notice is duplicated in all such -* copies. -* -* This software is provided "as is" and without any expressed or implied -* warranties, including, without limitation, the implied warranties of -* merchantibility and fitness for any particular purpose. -************************************************************************/ - -Some parts substantially in src/su.c derived from an ancestor of -su for GNU. Run a shell with substitute user and group IDs. -Copyright (C) 1992-2003 Free Software Foundation, Inc. - - 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, or (at your option) - any later version. - - 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. - - On Debian GNU/Linux systems, the complete text of the GNU General Public - License can be found in '/usr/share/common-licenses/GPL-2' - - ----------------------------------------- -mawk version 1.3.3-17+b3 - - -Copyright: - -This is the Debian GNU prepackaged version of mawk, an implementation -of the AWK Programming Language. mawk was written by Mike Brennan - - -This package was put together by Chris Fearnley , -from sources obtained from: - ftp://ftp.whidbey.net/pub/brennan/mawk1.3.3.tar.gz - -It is currently being maintained by James Troup . - -mawk 1.3.3 Nov 1996, Copyright (C) Michael D. Brennan -Modifications for Debian GNU/Linux Copyright (C) 1995-96 Chris Fearnley. -Modifications for Debian GNU/Linux Copyright (C) 1998-2003 James Troup. - -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License version 2 as published -by the Free Software Foundation. - -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. - -You should have received a copy of the GNU General Public License with -your Debian GNU system, in /usr/share/common-licenses/GPL-2, or with the -Debian GNU mawk source package as the file COPYING. If not, write to -the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, -Boston, MA 02110-1301, USA. - - ----------------------------------------- -mount version 2.33.1-0.1 - - -Copyright: - -Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ -Upstream-Name: util-linux -Upstream-Contact: util-linux@vger.kernel.org -Source: https://www.kernel.org/pub/linux/utils/util-linux/ - -Files: * -Copyright: Michal Luscon - 1986 Gary S. Brown - 1990 Gordon Irlam (gordoni@cs.ua.oz.au) - 1991, 1992 Linus Torvalds - 1991-2004 Miquel van Smoorenburg - 1992 A. V. Le Blanc (LeBlanc@mcc.ac.uk) - 1992-1997 Michael K. Johnson, johnsonm@redhat.com - 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, - 2003, 2004, 2005, 2008 Theodore Ts'o - 1994 Kevin E. Martin (martin@cs.unc.edu) - 1994 Salvatore Valente - 1994,1996 Alessandro Rubini (rubini@ipvvis.unipv.it) - 1994-2005 Jeff Tranter (tranter@pobox.com) - 1995, 1999, 2000 Andries E. Brouwer - 1997-2005 Frodo Looijaard - 1998 Danek Duvall - 1999 Andreas Dilger - 1999-2002 Transmeta Corporation - 1999, 2000, 2002-2009, 2010, 2011, 2012, 2014 Red Hat, Inc. - 2000 Werner Almesberger - 2004-2006 Michael Holzt, kju -at- fqdn.org - 2005 Adrian Bunk - 2007-2014 Karel Zak - 2007, 2011 SuSE LINUX Products GmbH - 2008 Cai Qian - 2008 Hayden A. James (hayden.james@gmail.com) - 2008 James Youngman - 2008 Roy Peled, the.roy.peled -at- gmail.com - 2009 Mikhail Gusarov - 2010, 2011, 2012 Davidlohr Bueso - 2010 Jason Borden A - 2010 Hajime Taira - 2010 Masatake Yamato - 2011 IBM Corp. - 2012 Andy Lutomirski - 2012 Lennart Poettering - 2012 Sami Kerola - 2012 Cody Maloney - 2012 Werner Fink - 2013,2014 Ondrej Oprala -License: GPL-2+ - -Files: schedutils/ionice.c -Copyright: 2005 Jens Axboe -License: GPL-2 - -Files: schedutils/chrt.c - schedutils/taskset.c -Copyright: 2004 Robert Love - 2010 Karel Zak -License: GPL-2 - -Files: disk-utils/raw.c -Copyright: 1999, 2000, Red Hat Software -License: GPL-2 - -Files: sys-utils/nsenter.c -Copyright: 2012-2013 Eric Biederman -License: GPL-2 - -Files: disk-utils/mkfs.minix.c - disk-utils/mkswap.c -Copyright: 1991, 1992 Linus Torvalds -License: GPL-2 - -Files: lib/at.c - lib/blkdev.c - lib/loopdev.c - lib/sysfs.c - lib/ttyutils.c - lib/xgetpass.c - misc-utils/mcookie.c - sys-utils/setsid.c - text-utils/line.c -Copyright: n/a -License: public-domain - -Files: login-utils/vipw.c - misc-utils/cal.c - misc-utils/kill.c - misc-utils/logger.c - misc-utils/look.c - misc-utils/whereis.c - sys-utils/renice.c - term-utils/mesg.c - term-utils/script.c - term-utils/ttymsg.c - term-utils/wall.c - term-utils/write.c - text-utils/col.c - text-utils/colcrt.c - text-utils/colrm.c - text-utils/column.c - text-utils/hexdump.c - text-utils/hexdump.h - text-utils/hexdump-conv.c - text-utils/hexdump-display.c - text-utils/hexdump-parse.c - text-utils/rev.c - text-utils/ul.c -Copyright: 1980, 1983, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994 - The Regents of the University of California - 2014 Sami Kerola - 2014 Karel Zak -License: BSD-4-clause - -Files: text-utils/tailf.c -Copyright: 1996, 2003 Rickard E. Faith (faith@acm.org) -License: MIT - -Files: sys-utils/flock.c -Copyright: 2003-2005 H. Peter Anvin -License: MIT - -Files: text-utils/pg.c -Copyright: 2000-2001 Gunnar Ritter -License: BSD-2-clause - -Files: login-utils/last-deprecated.c -Copyright: 1987 Regents of the University of California -License: BSD-2-clause - -Files: login-utils/login.c -Copyright: 1980, 1987, 1988 The Regents of the University of California. - 2011 Karel Zak -License: BSD-2-clause - -Files: login-utils/logindefs.c -Copyright: 2003, 2004, 2005 Thorsten Kukuk -License: BSD-3-clause - -Files: libuuid/* - libuuid/src/* - libuuid/man/* -Copyright: 1996, 1997, 1998, 1999, 2007 Theodore Ts'o. - 1999 Andreas Dilger (adilger@enel.ucalgary.ca) -License: BSD-3-clause - -Files: lib/procutils.c - include/xalloc.h -Copyright: 2010, 2011 Davidlohr Bueso -License: LGPL-2+ - -Files: */colors.* -Copyright: 2012 Ondrej Oprala - 2012-2014 Karel Zak -License: LGPL-2+ - -Files: login-utils/setpwnam.h - login-utils/setpwnam.c -Copyright: 1994 Martin Schulze - 1994 Salvatore Valente -License: LGPL-2+ - -Files: libfdisk/* - libfdisk/src/* -Copyright: 2007-2013 Karel Zak - 2012 Davidlohr Bueso -License: LGPL-2.1+ - -Files: lib/cpuset.c - */match.* - lib/canonicalize.c - include/at.h -Copyright: 2008-2009, 2010, 2011, 2012 Karel Zak -License: LGPL-2.1+ - -Files: */mbsalign.* -Copyright: 2009-2010 Free Software Foundation, Inc. - 2010-2013 Karel Zak -License: LGPL-2.1+ - -Files: */readutmp.* -Copyright: 1992-2007, 2009-2014 Free Software Foundation, Inc. -License: GPL-3+ - -Files: */timeutils.* -Copyright: 2010 Lennart Poettering -License: LGPL-2.1+ - -Files: include/list.h -Copyright: 2008 Karel Zak - 1999-2008 by Theodore Ts'o -License: LGPL - -Files: libblkid/* - libblkid/src/* - libblkid/samples/* - libblkid/src/partitions/* - libblkid/src/superblocks/* - libblkid/src/topology/* -Copyright: 1999, 2001 Andries Brouwer - 1995, 1995, 1996, 1997, 1999, 2000, 2001, 2002, 2003, 2004 - Theodore Ts'o. - 2001 Andreas Dilger (adilger@turbolinux.com) - 2004-2008 Kay Sievers - 2008-2013 Karel Zak - 2009 Bastian Friedrich - 2009 Corentin Chary - 2009 Mike Hommey - 2009 Red Hat, Inc. - 2009-2010 Andreas Dilger - 2010 Andrew Nayenko - 2010 Jeroen Oortwijn - 2010 Jiro SEKIBA - 2011 Philipp Marek - 2012 Milan Broz - 2013 Alejandro Martinez Ruiz - 2013 Eric Sandeen - 2013 Rolf Fokkens - 2013 Zeeshan Ali (Khattak) -License: LGPL-2.1+ - -Files: include/cpuset.h - lib/randutils.c -Copyright: *unknown* -License: LGPL - -Files: misc-utils/blkid.c -Copyright: 2001 Andreas Dilger -License: LGPL - -Files: libmount/* - libmount/src/* -Copyright: 2008-2012 Karel Zak -License: LGPL-2.1+ - -Files: libmount/python/* -Copyright: 2013, Red Hat, Inc. -License: LGPL-3+ - -Files: libsmartcols/* -Copyright: 2009-2014 Karel Zak - 2014 Ondrej Oprala -License: LGPL - -Files: debian/* -Copyright: Guy Maor - Sean 'Shaleh' Perry - Adrian Bunk - LaMont Jones - 2014 Andreas Henriksson -License: GPL-2+ - - -License: public-domain - The files tagged with this license contains the following paragraphs: - . - No copyright is claimed. This code is in the public domain; do with - it what you wish. - . - Written by Karel Zak - -License: GPL-2 - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License, v2, as - published by the Free Software Foundation - . - 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. - . - 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. - . - On Debian systems, the complete text of the GNU General Public - License version 2 can be found in `/usr/share/common-licenses/GPL-2'. - -License: GPL-2+ - 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. - . - 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. - . - 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. - . - On Debian systems, the complete text of the GNU General Public - License version 2 can be found in `/usr/share/common-licenses/GPL-2'. - -License: GPL-3+ - 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 3 of the License, or - (at your option) any later version. - . - 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. - . - You should have received a copy of the GNU General Public License - along with this program. If not, see . - . - On Debian systems, the complete text of the GNU General Public - License version 3 can be found in `/usr/share/common-licenses/GPL-3'. - -License: BSD-2-clause - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - -License: BSD-3-clause - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are met: - . - 1) Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. - . - 2) Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. - . - 3) Neither the name of the ORGANIZATION nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - . - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE - LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - POSSIBILITY OF SUCH DAMAGE. - -License: BSD-4-clause - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - 3. All advertising materials mentioning features or use of this software - must display the following acknowledgement: - This product includes software developed by the University of - California, Berkeley and its contributors. - 4. Neither the name of the University nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - . - THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND - ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -License: LGPL - This file may be redistributed under the terms of the - GNU Lesser General Public License. - . - On Debian systems, the complete text of the GNU Lesser General Public - License can be found in ‘/usr/share/common-licenses/LGPL’. - -License: LGPL-2+ - This program is free software: you can redistribute it and/or modify - it under the terms of the GNU Lesser General Public License as published by - the Free Software Foundation, either version 2 of the License, or - (at your option) any later version. - . - 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 Lesser General Public License for more details. - . - You should have received a copy of the GNU Lesser General Public License - along with this program. If not, see . - . - The complete text of the GNU Lesser General Public License - can be found in /usr/share/common-licenses/LGPL-2 file. - -License: LGPL-2.1+ - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU Lesser General Public License as published by - the Free Software Foundation; either version 2.1, or (at your option) - any later version. - . - 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 Lesser General Public License for more details. - . - You should have received a copy of the GNU Lesser 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. - . - On Debian systems, the complete text of the GNU Lesser General Public - License version 2.1 can be found in ‘/usr/share/common-licenses/LGPL-2.1’. - -License: LGPL-3+ - This package is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 3 of the License, or (at your option) any later version. - . - This package 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 - Lesser General Public License for more details. - . - You should have received a copy of the GNU General Public License - along with this program. If not, see . - . - On Debian systems, the complete text of the GNU Lesser General - Public License can be found in "/usr/share/common-licenses/LGPL-3". - -License: MIT - Permission is hereby granted, free of charge, to any person - obtaining a copy of this software and associated documentation files - (the "Software"), to deal in the Software without restriction, - including without limitation the rights to use, copy, modify, merge, - publish, distribute, sublicense, and/or sell copies of the Software, - and to permit persons to whom the Software is furnished to do so, - subject to the following conditions: - . - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - . - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS - BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN - ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN - CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - SOFTWARE. - - - ----------------------------------------- -ncurses-base version 6.1+20181013-2+deb10u2 - - -Copyright: - -This is the Debian prepackaged version of the ncurses -library and terminfo utilities. ncurses/terminfo was originally written -by Pavel Curtis and Zeyd M. Ben-Halim , and is -currently held by the Free Software Foundation. - -This package was put together by Vaidhyanathan G Mayilrangam - and Joel Klecker , using sources -obtained from ftp://ftp.gnu.org/gnu/ncurses/ncurses-5.0.tar.gz. -Current versions of the ncurses sources are found at -ftp://invisible-island.net/ncurses/. - -It is based somewhat on work done by Bruce Perens , -David Engel . Michael Alan Dorman -, Richard Braakman , James Troup -, J.H.M. Dassen (Ray) -, and Galen Hazelwood -over various years. - - -Copyright (c) 1998-2018 Free Software Foundation, Inc. -Copyright © 2001 by Pradeep Padala - -Permission is hereby granted, free of charge, to any person obtaining a -copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, distribute with modifications, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS -OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR -THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -Except as contained in this notice, the name(s) of the above copyright -holders shall not be used in advertising or otherwise to promote the -sale, use or other dealings in this Software without prior written -authorization. - - -Copyright (C) 1994 X Consortium - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to -deal in the Software without restriction, including without limitation the -rights to use, copy, modify, merge, publish, distribute, sublicense, and/or -sell copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN -AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC- -TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -Except as contained in this notice, the name of the X Consortium shall not -be used in advertising or otherwise to promote the sale, use or other deal- -ings in this Software without prior written authorization from the X Consor- -tium. - - -Copyright (c) 1980, 1991, 1992, 1993 - The Regents of the University of California. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. -3. Neither the name of the University nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS -OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY -OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF -SUCH DAMAGE. - - -Copyright 1996-2018 by Thomas E. Dickey - - All Rights Reserved - -Permission is hereby granted, free of charge, to any person obtaining a -copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS -OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -IN NO EVENT SHALL THE ABOVE LISTED COPYRIGHT HOLDER(S) BE LIABLE FOR ANY -CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, -TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE -SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -Except as contained in this notice, the name(s) of the above copyright -holders shall not be used in advertising or otherwise to promote the -sale, use or other dealings in this Software without prior written -authorization. - - ----------------------------------------- -ncurses-bin version 6.1+20181013-2+deb10u2 - - -Copyright: - -This is the Debian prepackaged version of the ncurses -library and terminfo utilities. ncurses/terminfo was originally written -by Pavel Curtis and Zeyd M. Ben-Halim , and is -currently held by the Free Software Foundation. - -This package was put together by Vaidhyanathan G Mayilrangam - and Joel Klecker , using sources -obtained from ftp://ftp.gnu.org/gnu/ncurses/ncurses-5.0.tar.gz. -Current versions of the ncurses sources are found at -ftp://invisible-island.net/ncurses/. - -It is based somewhat on work done by Bruce Perens , -David Engel . Michael Alan Dorman -, Richard Braakman , James Troup -, J.H.M. Dassen (Ray) -, and Galen Hazelwood -over various years. - - -Copyright (c) 1998-2018 Free Software Foundation, Inc. -Copyright © 2001 by Pradeep Padala - -Permission is hereby granted, free of charge, to any person obtaining a -copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, distribute with modifications, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS -OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR -THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -Except as contained in this notice, the name(s) of the above copyright -holders shall not be used in advertising or otherwise to promote the -sale, use or other dealings in this Software without prior written -authorization. - - -Copyright (C) 1994 X Consortium - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to -deal in the Software without restriction, including without limitation the -rights to use, copy, modify, merge, publish, distribute, sublicense, and/or -sell copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN -AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC- -TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -Except as contained in this notice, the name of the X Consortium shall not -be used in advertising or otherwise to promote the sale, use or other deal- -ings in this Software without prior written authorization from the X Consor- -tium. - - -Copyright (c) 1980, 1991, 1992, 1993 - The Regents of the University of California. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. -3. Neither the name of the University nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS -OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY -OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF -SUCH DAMAGE. - - -Copyright 1996-2018 by Thomas E. Dickey - - All Rights Reserved - -Permission is hereby granted, free of charge, to any person obtaining a -copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS -OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -IN NO EVENT SHALL THE ABOVE LISTED COPYRIGHT HOLDER(S) BE LIABLE FOR ANY -CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, -TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE -SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -Except as contained in this notice, the name(s) of the above copyright -holders shall not be used in advertising or otherwise to promote the -sale, use or other dealings in this Software without prior written -authorization. - - ----------------------------------------- -passwd version 1:4.5-1.1 - - -Copyright: - -This is Debian GNU/Linux's prepackaged version of the shadow utilities. - -It was downloaded from: . -As of May 2007, this site is no longer available. - -Copyright: - -Parts of this software are copyright 1988 - 1994, Julianne Frances Haugh. -All rights reserved. - -Parts of this software are copyright 1997 - 2001, Marek Michałkiewicz. -All rights reserved. - -Parts of this software are copyright 2001 - 2004, Andrzej Krzysztofowicz -All rights reserved. - -Parts of this software are copyright 2000 - 2007, Tomasz Kłoczko. -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. -3. Neither the name of Julianne F. Haugh nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY JULIE HAUGH AND CONTRIBUTORS ``AS IS'' AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL JULIE HAUGH OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS -OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY -OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF -SUCH DAMAGE. - -This source code is currently archived on ftp.uu.net in the -comp.sources.misc portion of the USENET archives. You may also contact -the author, Julianne F. Haugh, at jockgrrl@ix.netcom.com if you have -any questions regarding this package. - -THIS SOFTWARE IS BEING DISTRIBUTED AS-IS. THE AUTHORS DISCLAIM ALL -LIABILITY FOR ANY CONSEQUENCES OF USE. THE USER IS SOLELY RESPONSIBLE -FOR THE MAINTENANCE OF THIS SOFTWARE PACKAGE. THE AUTHORS ARE UNDER NO -OBLIGATION TO PROVIDE MODIFICATIONS OR IMPROVEMENTS. THE USER IS -ENCOURAGED TO TAKE ANY AND ALL STEPS NEEDED TO PROTECT AGAINST ACCIDENTAL -LOSS OF INFORMATION OR MACHINE RESOURCES. - -Special thanks are due to Chip Rosenthal for his fine testing efforts; -to Steve Simmons for his work in porting this code to BSD; and to Bill -Kennedy for his contributions of LaserJet printer time and energies. -Also, thanks for Dennis L. Mumaugh for the initial shadow password -information and to Tony Walton (olapw@olgb1.oliv.co.uk) for the System -V Release 4 changes. Effort in porting to SunOS has been contributed -by Dr. Michael Newberry (miken@cs.adfa.oz.au) and Micheal J. Miller, Jr. -(mke@kaberd.rain.com). Effort in porting to AT&T UNIX System V Release -4 has been provided by Andrew Herbert (andrew@werple.pub.uu.oz.au). -Special thanks to Marek Michalkiewicz (marekm@i17linuxb.ists.pwr.wroc.pl) -for taking over the Linux port of this software. - -Source files: login_access.c, login_desrpc.c, login_krb.c are derived -from the logdaemon-5.0 package, which is under the following license: - -/************************************************************************ -* Copyright 1995 by Wietse Venema. All rights reserved. Individual files -* may be covered by other copyrights (as noted in the file itself.) -* -* This material was originally written and compiled by Wietse Venema at -* Eindhoven University of Technology, The Netherlands, in 1990, 1991, -* 1992, 1993, 1994 and 1995. -* -* Redistribution and use in source and binary forms are permitted -* provided that this entire copyright notice is duplicated in all such -* copies. -* -* This software is provided "as is" and without any expressed or implied -* warranties, including, without limitation, the implied warranties of -* merchantibility and fitness for any particular purpose. -************************************************************************/ - -Some parts substantially in src/su.c derived from an ancestor of -su for GNU. Run a shell with substitute user and group IDs. -Copyright (C) 1992-2003 Free Software Foundation, Inc. - - 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, or (at your option) - any later version. - - 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. - - On Debian GNU/Linux systems, the complete text of the GNU General Public - License can be found in '/usr/share/common-licenses/GPL-2' - - ----------------------------------------- -perl-base version 5.28.1-6+deb10u1 - - -Copyright: - -Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ -Files-Excluded-regen-configure: bin/* -Upstream-Name: perl -Source: http://www.perl.com/CPAN/src/5.0/ -Comment: - This package was debianized by Brendan O'Dea on - Thu, 17 Aug 2000 16:10:54 +1000. - . - Upstream Authors: - . - Larry Wall et. al. (see /usr/share/doc/perl/AUTHORS). - . - Last checked against: Perl 5.28.1 - -Files: * -Copyright: - Perl is Copyright (C) 1987-2018 by Larry Wall and others. All rights reserved. -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or modify - it under the terms of either: - . - a) the GNU General Public License as published by the Free Software - Foundation; either version 1, or (at your option) any later - version, or - . - b) the "Artistic License" which comes with Perl. - ---------------------------------------- - The directories ext/, dist/, and cpan/ contain separate distributions - that have been bundled with the Perl core. The copyright and license - status of these have been detailed separately below. - . - It is assumed that all the other files are part of Perl and share the - above copyright and license information unless explicitly specified - differently. Only the exceptions have been detailed below. - . - As a small portion of the files are indeed licensed differently from - the above, all the other licenses have been collected and/or duplicated - at the end of this file to facilitate review. - -Files: perlio.c -Copyright: - Copyright (c) 1996-2006, Nick Ing-Simmons - Copyright (c) 2006, 2007, 2008 Larry Wall and others -License: GPL-1+ or Artistic -Comment: - This file is a part of Perl itself, licensed as above. - -Files: malloc.c -Copyright: - Modifications Copyright Ilya Zakharevich 1996-99. -License: GPL-1+ or Artistic -Comment: - This file is a part of Perl itself, licensed as above. - -Files: pp_sort.c -Copyright: - Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, - 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 by Larry Wall and others - . - Copyright (C) Tom Horsley, 1997. All rights reserved. -License: GPL-1+ or Artistic -Comment: - This file is a part of Perl itself, licensed as above. - -Files: mro.c -Copyright: - Copyright (c) 2007 Brandon L Black - Copyright (c) 2007, 2008 Larry Wall and others -License: GPL-1+ or Artistic -Comment: - This file is a part of Perl itself, licensed as above. - -Files: perl.c -Copyright: - Copyright 1987-2018, Larry Wall - MS-DOS port Copyright (c) 1989, 1990, Diomidis Spinellis - OS/2 port Copyright (c) 1990, 1991, Raymond Chen, Kai Uwe Rommel - Version 5 port Copyright (c) 1994-2002, Andreas Kaiser, Ilya Zakharevich -License: GPL-1+ or Artistic -Comment: - This file is a part of Perl itself, licensed as above. - ---------------------------------------- - These copyright notices are embedded in the code, and possibly apply - to other files as well. - -Files: time64.c -Copyright: - Copyright (c) 2007-2008 Michael G Schwern - . - This software originally derived from Paul Sheer's pivotal_gmtime_r.c. -License: Expat - -Files: - regcomp.c - regexec.c -Copyright: - Copyright (c) 1986 by University of Toronto. - Written by Henry Spencer. Not derived from licensed software. - . - Alterations to Henry's code are... - Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, - 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 - by Larry Wall and others - . - NOTE: this is derived from Henry Spencer's regexp code, and should not - confused with the original package (see point 3 below). Thanks, Henry! -License: REGCOMP, and GPL-1+ or Artistic -Comment: - ---------------------------------------- - The "alterations to Henry's code" have the following license information: - . - You may distribute under the terms of either the GNU General Public - License or the Artistic License, as specified in the README file. - -Files: perly.h -Copyright: - Copyright (C) 1984, 1989-1990, 2000-2013 Free Software Foundation, Inc. -License: GPL-3+-WITH-BISON-EXCEPTION - -Files: mkppport -Copyright: - Copyright 2006 by Marcus Holland-Moritz . -License: GPL-1+ or Artistic -Comment: - This program is free software; you may redistribute it - and/or modify it under the same terms as Perl itself. - -Files: lib/unicore/*.txt -Copyright: - © 1991-2016 Unicode®, Inc. -License: Unicode -Comment: - The license is given as - . - For terms of use, see http://www.unicode.org/terms_of_use.html - . - See the end of this file for the full text of this license as downloaded - from the above URL on Tue, 26 Apr 2011 14:41:24 +0300. - -Files: lib/deprecate.pm -Copyright: - Copyright (C) 2009, 2011 -License: GPL-1+ or Artistic -Comment: - This library is free software; you can redistribute it and/or modify - it under the same terms as Perl itself, either Perl version 5.10.0 or, - at your option, any later version of Perl 5 you may have available. - -Files: lib/Exporter.pm -Copyright: unknown -License: GPL-1+ or Artistic -Comment: - This library is free software. You can redistribute it - and/or modify it under the same terms as Perl itself. - -Files: lib/FindBin.pm -Copyright: - Copyright (c) 1995 Graham Barr & Nick Ing-Simmons. All rights reserved. -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or modify it - under the same terms as Perl itself. - -Files: symbian/* -Copyright: - Copyright (c) Nokia 2004-2005. All rights reserved. -License: GPL-1+ or Artistic -Comment: - All files are licensed under the same terms as Perl itself. - -Files: symbian/PerlUiS90.rss -Copyright: - Copyright (c) 2006 Alexander Smishlajev. All rights reserved. -License: GPL-1+ or Artistic -Comment: - The PerlUi class is licensed under the same terms as Perl itself. - -Files: README.symbian -Copyright: - Copyright (c) 2004-2005 Nokia. All rights reserved. - Copyright (c) 2006-2007 Jarkko Hietaniemi. -License: GPL-1+ or Artistic -Comment: - The Symbian port is licensed under the same terms as Perl itself. - -Files: t/op/split_unicode.t -Copyright: - Copyright (c) 1991-2006 Unicode, Inc. -License: GPL-1+ or Artistic, and Unicode -Comment: - ---------------------------------------- - The test data was extracted from the Unicode Character Database. - . - It is assumed that the test code is licensed under the same terms - as Perl. - -Files: regen/reentr.pl -Copyright: Copyright (c) 2002,2003 Jarkko Hietaniemi -License: GPL-1+ or Artistic -Comment: - You may distribute under the terms of either the GNU General Public - License or the Artistic License, as specified in the README file. - -Files: - Porting/checkansi.pl - Porting/valgrindpp.pl -Copyright: - Copyright 2003, 2007 by Marcus Holland-Moritz . -License: GPL-1+ or Artistic -Comment: - This program is free software; you may redistribute it - and/or modify it under the same terms as Perl itself. - -Files: Porting/config_h.pl -Copyright: - Copyright (C) 2005-2012 by H.Merijn Brand (m)'12 [22-09-2012] -License: GPL-1+ or Artistic -Comment: - You may distribute under the terms of either the GNU General Public - License or the Artistic License, as specified in the README file. - -Files: Porting/git-deltatool -Copyright: - This software is copyright (c) 2010 by David Golden. -License: GPL-1+ or Artistic -Comment: - This is free software; you can redistribute it and/or modify it under the same - terms as the Perl 5 programming language system itself. - -Files: NetWare/* -Copyright: - Copyright (C) 2000-01, 2002 Novell, Inc. All Rights Reserved. -License: GPL-1+ or Artistic -Comment: - You may distribute under the terms of either the GNU General Public - License or the Artistic License, as specified in the README file. - -Files: - vms/vms.c - vms/vmsish.h -Copyright: - Copyright (C) 1993-2015 by Charles Bailey and others. -License: GPL-1+ or Artistic -Comment: - You may distribute under the terms of either the GNU General Public - License or the Artistic License, as specified in the README file. - -Files: x2p/s2p.PL -Copyright: unknown -License: S2P - -Files: win32/fcrypt.c -Copyright: - Copyright (C) 1993 Eric Young - see README for more details -License: GPL-1+ or Artistic -Comment: - This file is a part of Perl itself, licensed as above. - -Files: cpan/Archive-Tar/* -Copyright: 2002 - 2009 Jos Boumans . All rights reserved. -License: GPL-1+ or Artistic -Comment: - This library is free software; you may redistribute and/or modify - it under the same terms as Perl itself. - -Files: - cpan/AutoLoader/* - dist/SelfLoader/* -Copyright: This package has the same copyright and license as the perl core: - Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999, - 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2011, 2012 - by Larry Wall and others - . - All rights reserved. -License: GPL-1+ or Artistic -Comment: - This package has the same copyright and license as the perl core. - -Files: cpan/autodie/* -Copyright: 2008-2009, Paul Fenwick -License: GPL-1+ or Artistic -Comment: - This module is free software, you may distribute it under the - same terms as Perl itself. - -Files: - cpan/autodie/lib/autodie/exception/system.pm - cpan/autodie/lib/autodie/exception.pm -Copyright: 2008-2009, Paul Fenwick -License: GPL-1+ or Artistic -Comment: - This is free software. You may modify and/or redistribute this - code under the same terms as Perl 5.10 itself, or, at your option, - any later version of Perl 5. - -Files: - cpan/autodie/lib/autodie/Scope/GuardStack.pm - cpan/autodie/lib/autodie/Util.pm -Copyright: Copyright 2013-2014, Niels Thykier -License: GPL-1+ or Artistic -Comment: - This module is free software. You may distribute it under the - same terms as Perl itself. - -Files: cpan/B- -Copyright: - Copyright (c) 1996, 1997 Malcolm Beattie - Copyright (c) 2008, 2010, 2013, 2014 Reini Urban -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or modify - it under the terms of either: - . - a) the GNU General Public License as published by the Free - Software Foundation; either version 1, or (at your option) any - later version, or - . - b) the "Artistic License" which comes with this kit. - -Files: cpan/Compress-Raw-Bzip2/* -Copyright: Copyright (c) 2005-2017 Paul Marquess. All rights reserved. -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it - and/or modify it under the same terms as Perl itself. - -Files: cpan/Compress-Raw-Bzip2/bzip2-src/* -Copyright: Copyright(C) 1996-2010 Julian Seward. All rights reserved -Comment: - ---------------------------------------- - cpan/Compress-Raw-Bzip2/bzip2-src/README states: - Note that the files bzip2.c, bzip2recover.c, bzlib.c & decompress.c - have been modified to allow them to build with a C++ compiler. - The file bzip2-src/bzip2-cpp.patch contains the patch - that was used to modify the original source. - but the patch has apparently been filtered out when including the software - into the Perl core distribution. -License: BZIP - -Files: cpan/Compress-Raw-Zlib/* -Copyright: Copyright (c) 2005-2017 Paul Marquess. All rights reserved. -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it - and/or modify it under the same terms as Perl itself. - -Files: cpan/Compress-Raw-Zlib/zlib-src/* -Copyright: - Copyright (C) 1995-2017 Jean-loup Gailly and Mark Adler -License: ZLIB - -Files: cpan/Config-Perl-V/* -Copyright: - Copyright (C) 2009-2017 H.Merijn Brand -License: GPL-1+ or Artistic -Comment: - This library is free software; you can redistribute it and/or modify - it under the same terms as Perl itself. - -Files: cpan/CPAN/* -Copyright: unknown -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or - modify it under the same terms as Perl itself. - -Files: - cpan/CPAN/lib/App/Cpan.pm - cpan/CPAN/scripts/cpan -Copyright: (c) 2001-2015, brian d foy, All Rights Reserved. -License: GPL-1+ or Artistic -Comment: - You may redistribute this under the same terms as Perl itself. - -Files: cpan/CPAN-Meta/* -Copyright: - This software is copyright (c) 2010 by David Golden, Ricardo Signes, - Adam Kennedy and Contributors. -License: GPL-1+ or Artistic -Comment: - This is free software; you can redistribute it and/or modify it under - the same terms as the Perl 5 programming language system itself. - -Files: - cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_0.pod - cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_1.pod - cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_2.pod - cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_3.pod - cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_4.pod -Copyright: Ken Williams -License: GPL-1+ or Artistic -Comment: - This is free software; you can redistribute it and/or modify it under - the same terms as the Perl 5 programming language system itself. - -Files: cpan/CPAN-Meta-Requirements/* -Copyright: - This software is copyright (c) 2010 by David Golden and Ricardo Signes. -License: GPL-1+ or Artistic -Comment: - This is free software; you can redistribute it and/or modify it under - the same terms as the Perl 5 programming language system itself. - -Files: cpan/CPAN-Meta-YAML/* -Copyright: - This software is copyright (c) 2010 by Adam Kennedy. -License: GPL-1+ or Artistic -Comment: - This is free software; you can redistribute it and/or modify it under - the same terms as the Perl 5 programming language system itself. - -Files: cpan/DB_File/* -Copyright: Copyright (c) 1995-2016 Paul Marquess. All rights reserved. -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or modify - it under the same terms as Perl itself. - -Files: cpan/Devel-PPPort/* -Copyright: - Version 3.x, Copyright (C) 2004-2010, Marcus Holland-Moritz. - Version 2.x, Copyright (C) 2001, Paul Marquess. - Version 1.x, Copyright (C) 1999, Kenneth Albanowski. -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or - modify it under the same terms as Perl itself. - -Files: cpan/Devel-PPPort/parts/inc/mess -Copyright: - Copyright (C) 2017, Pali -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or - modify it under the same terms as Perl itself. - -Files: cpan/Digest/* -Copyright: - Copyright 1998-2006 Gisle Aas. - Copyright 1995,1996 Neil Winton. -License: GPL-1+ or Artistic -Comment: - This library is free software; you can redistribute it and/or - modify it under the same terms as Perl itself. - -Files: cpan/Digest-MD5/* -Copyright: - Copyright 1998-2003 Gisle Aas. - Copyright 1995-1996 Neil Winton. - Copyright 1990-1992 RSA Data Security, Inc. -License: GPL-1+ or Artistic -Comment: - This library is free software; you can redistribute it and/or - modify it under the same terms as Perl itself. - -Files: cpan/Digest-SHA/* -Copyright: - Copyright (C) 2003-2017 Mark Shelor, All Rights Reserved -License: GPL-1+ or Artistic -Comment: - This library is free software; you can redistribute it and/or modify - it under the same terms as Perl itself. - -Files: cpan/Encode/* -Copyright: Copyright 2002-2014 Dan Kogai -License: GPL-1+ or Artistic -Comment: - This library is free software; you can redistribute it and/or modify - it under the same terms as Perl itself. - -Files: cpan/Encode/bin/encguess -Copyright: 2015 Michael LaGrasta and Dan Kogai -License: Artistic -Comment: - This program is free software; you can redistribute it and/or modify it - under the terms of the the Artistic License (2.0). - -Files: cpan/encoding-warnings/* -Copyright: - Copyright 2004, 2005, 2006, 2007 by Audrey Tang . -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or modify it - under the same terms as Perl itself. - -Files: cpan/experimental/* -Copyright: - This software is copyright (c) 2013 by Leon Timmermans. -License: GPL-1+ or Artistic -Comment: - This is free software; you can redistribute it and/or modify it under - the same terms as the Perl 5 programming language system itself. - -Files: cpan/ExtUtils-Constant/* -Copyright: unknown -License: GPL-1+ or Artistic -Comment: - ---------------------------------------- - There are no copyright or license notices in this distribution. It - is assumed that the copyright and license of Perl itself applies here - as well. - . - This is supported by the README of the separate CPAN distribution at - , which states: - . - You may distribute this work under the terms of either the GNU General - Public License or the Artistic License, as specified in perl's README - file. - . - Copyright © 2001, 2002, 2005 Nicholas Clark - -Files: cpan/ExtUtils-MakeMaker/lib/ExtUtils/MakeMaker/Locale.pm -Copyright: 2010 Gisle Aas -License: GPL-1+ or Artistic -Comment: - This library is free software; you can redistribute it and/or modify it - under the same terms as Perl itself. - -Files: cpan/ExtUtils-Manifest/lib/ExtUtils/Manifest.pm -Copyright: 1996- by Andreas Koenig -License: GPL-1+ or Artistic -Comment: - This is free software; you can redistribute it and/or modify it - under the same terms as Perl itself. - -Files: - cpan/File-Fetch/* - cpan/IPC-Cmd/* - cpan/Module-Load/* - cpan/Module-Load-Conditional/* - cpan/Module-Loaded/* - cpan/Package-Constants/* - cpan/Params-Check/* -Copyright: - There are no copyright notices in these distributions. - Their author is Jos Boumans . -License: GPL-1+ or Artistic -Comment: - This library is free software; you may redistribute and/or modify it - under the same terms as Perl itself. - -Files: cpan/File-Path/* -Copyright: - This module is copyright (C) Charles Bailey, Tim Bunce, David Landgren, - James Keenan, and Richard Elberger 1995-2015. All rights reserved. -License: GPL-1+ or Artistic -Comment: - This library is free software; you can redistribute it and/or modify - it under the same terms as Perl itself. - -Files: cpan/File-Temp/* -Copyright: - This software is copyright (c) 2013 by Tim Jenness and the UK Particle - Physics and Astronomy Research Council. -License: GPL-1+ or Artistic -Comment: - This is free software; you can redistribute it and/or modify it under - the same terms as the Perl 5 programming language system itself. - -Files: cpan/Filter-Util-Call/* -Copyright: - Copyright (c) 1995-2011 Paul Marquess. All rights reserved. - Copyright (c) 2011-2014 Reini Urban. All rights reserved. - Copyright (c) 2014-2017 cPanel Inc. All rights reserved. -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or - modify it under the same terms as Perl itself. - -Files: cpan/Getopt-Long/* -Copyright: - Module Getopt::Long is Copyright 1990,2015 by Johan Vromans. -License: GPL-2+ or Artistic -Comment: - This program is free software; you can redistribute it and/or - modify it under the terms of the Perl Artistic License or 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. - -Files: cpan/HTTP-Tiny/* -Copyright: - This software is copyright (c) 2016 by Christian Hansen. -License: GPL-1+ or Artistic -Comment: - This is free software; you can redistribute it and/or modify it under - the same terms as the Perl 5 programming language system itself. - -Files: cpan/IO-Compress/* -Copyright: - Copyright (c) 1995-2017 Paul Marquess. All rights reserved. -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it - and/or modify it under the same terms as Perl itself. - -Files: cpan/IO-Zlib/* -Copyright: - Copyright (c) 1998-2004 Tom Hughes . All rights reserved. -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute - it and/or modify it under the same terms as Perl itself. - -Files: cpan/IPC-SysV/* -Copyright: - Version 2.x, Copyright (C) 2007-2010, Marcus Holland-Moritz. - Version 1.x, Copyright (c) 1997, Graham Barr. - Version 1.x, Copyright (c) 1999, Graham Barr. -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or - modify it under the same terms as Perl itself. - -Files: cpan/JSON-PP/* -Copyright: - Copyright 2007-2016 by Makamaka Hannyaharamitu -License: GPL-1+ or Artistic -Comment: - This library is free software; you can redistribute it and/or modify - it under the same terms as Perl itself. - -Files: cpan/libnet/* -Copyright: - (C) 1995-2006 Graham Barr. All rights reserved. - (C) 2013-2016 Steve Hay. All rights reserved. -License: GPL-1+ or Artistic -Comment: - This library is free software; you can redistribute it and/or modify - it under the same terms as Perl itself. - -Files: cpan/libnet/Makefile.PL -Copyright: - Copyright (C) 2014 Steve Hay. All rights reserved. -License: GPL-1+ or Artistic -Comment: - You may distribute under the terms of either the GNU General Public License - or the Artistic License, as specified in the LICENCE file. - -Files: cpan/List-Util/* -Copyright: - Copyright (c) 1997-2009 Graham Barr . All rights reserved. -License: GPL-1+ or Artistic -Comment: - This library is free software; you can redistribute it and/or - modify it under the same terms as Perl itself. - -Files: cpan/Scalar-List-Utils/lib/Scalar/Util.pm -Copyright: - Copyright (c) 1997-2007 Graham Barr . All rights reserved. - Copyright (c) 1999 Tuomas J. Lukka . All rights reserved. - Copyright (C) 2004, 2008 Matthijs van Duin. All rights reserved. - Copyright (C) 2014 cPanel Inc. All rights reserved. -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or modify it - under the same terms as Perl itself. - -Files: cpan/Scalar-List-Utils/lib/Sub/Util.pm -Copyright: (c) 2014 Paul Evans . All rights reserved -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or modify it - under the same terms as Perl itself. - - -Files: cpan/Locale-Codes/* -Copyright: - Copyright (C) 1997-2001 Canon Research Centre Europe (CRE). - Copyright (C) 2001-2010 Neil Bowers - Copyright (c) 1996-2018 Sullivan Beck - Copyright (c) 2001 Michael Hennecke -License: GPL-1+ or Artistic -Comment: - This module is free software; you can redistribute it and/or - modify it under the same terms as Perl itself. - -Files: cpan/Locale-Maketext-Simple/* -Copyright: - Copyright 2003, 2004, 2005, 2006 by Audrey Tang -License: Expat or GPL-1+ or Artistic -Comment: - This software is released under the MIT license cited below. Additionally, - when this software is distributed with Perl Kit, Version 5, you may also - redistribute it and/or modify it under the same terms as Perl itself. - -Files: - cpan/Locale-Maketext-Simple/t/po_with_i_default/i_default.po - cpan/Locale-Maketext-Simple/t/po_with_i_default/fr.po - cpan/Locale-Maketext-Simple/t/po_with_i_default/en.po - cpan/Locale-Maketext-Simple/t/po_without_i_default/en.po - cpan/Locale-Maketext-Simple/t/po_without_i_default/fr.po -Copyright: - Copyright (C) All Perl Hackers everywhere - Ton Voon , 2009. -License: Expat or GPL-1+ or Artistic -Comment: - ---------------------------------------- - It is assumed that these translations are licensed under the same terms as - the rest of the Locale-Maketext-Simple distribution. - -Files: cpan/Math-Complex/* -Copyright: unknown -License: GPL-1+ or Artistic -Comment: - This library is free software; you can redistribute it and/or modify - it under the same terms as Perl itself. - -Files: cpan/Memoize/* -Copyright: - Copyright 1998, 1999, 2000, 2001, 2012 M-J. Dominus. -License: GPL-1+ or Artistic -Comment: - This library is free software; you may redistribute it and/or modify - it under the same terms as Perl itself. - . - You may copy and distribute this program under the same terms as - Perl itself. If in doubt, write to mjd-perl-memoize+@plover.com for - a license. - -Files: cpan/MIME-Base64/* -Copyright: - Copyright 1995-2004,2010 Gisle Aas -License: GPL-1+ or Artistic -Comment: - This library is free software; you can redistribute it and/or - modify it under the same terms as Perl itself. - -Files: cpan/MIME-Base64/Base64.xs -Copyright: - Copyright 1997-2004 Gisle Aas - Copyright (c) 1991 Bell Communications Research, Inc. (Bellcore) -License: GPL-1+ or Artistic -Comment: - This library is free software; you can redistribute it and/or - modify it under the same terms as Perl itself. - . - The tables and some of the code that used to be here was borrowed from - metamail, which comes with this message: - . - Copyright (c) 1991 Bell Communications Research, Inc. (Bellcore) - . - Permission to use, copy, modify, and distribute this material - for any purpose and without fee is hereby granted, provided - that the above copyright notice and this permission notice - appear in all copies, and that the name of Bellcore not be - used in advertising or publicity pertaining to this - material without the specific, prior written permission - of an authorized representative of Bellcore. BELLCORE - MAKES NO REPRESENTATIONS ABOUT THE ACCURACY OR SUITABILITY - OF THIS MATERIAL FOR ANY PURPOSE. IT IS PROVIDED "AS IS", - WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES. - -Files: cpan/Module-Metadata/* -Copyright: - Copyright (c) 2001-2011 Ken Williams. All rights reserved. - Copyright (c) 2010-2011 Matt Trout and David Golden. All rights reserved. -License: GPL-1+ or Artistic -Comment: - This library is free software; you can redistribute it and/or - modify it under the same terms as Perl itself. - -Files: cpan/NEXT/* -Copyright: - Copyright (c) 2000-2001, Damian Conway. All Rights Reserved. -License: GPL-1+ or Artistic -Comment: - This module is free software. It may be used, redistributed - and/or modified under the same terms as Perl itself. - -Files: cpan/parent/* -Copyright: - Copyright (c) 2007-10 Max Maischein -License: GPL-1+ or Artistic -Comment: - This module is released under the same terms as Perl itself. - -Files: cpan/Parse-CPAN-Meta/* -Copyright: - This software is copyright (c) 2015 by Adam Kennedy and Contributors. -License: GPL-1+ or Artistic -Comment: - This is free software; you can redistribute it and/or modify it under - the same terms as the Perl 5 programming language system itself. - -Files: cpan/PerlIO-via-QuotedPrint/* -Copyright: - Copyright (c) 2002-2004,2012 Elizabeth Mattijsen. All rights reserved. -License: GPL-1+ or Artistic -Comment: - This library is free software; you can redistribute it and/or modify - it under the same terms as Perl itself. - -Files: cpan/Perl-OSType/* -Copyright: - This software is copyright (c) 2016 by David Golden. -License: GPL-1+ or Artistic -Comment: - This is free software; you can redistribute it and/or modify it under - the same terms as the Perl 5 programming language system itself. - -Files: cpan/Pod-Checker/* -Copyright: - Copyright (C) 1994-2000 by Bradford Appleton. All rights reserved. -License: GPL-1+ or Artistic -Comment: - This file is part of "PodParser". PodParser is free software; - you can redistribute it and/or modify it under the same terms - as Perl itself. - -Files: cpan/Pod-Escapes/* -Copyright: - Copyright (c) 2001-2004 Sean M. Burke. All rights reserved. -License: GPL-1+ or Artistic -Comment: - This library is free software; you can redistribute it and/or modify - it under the same terms as Perl itself. - -Files: cpan/podlators/* -Copyright: - Copyright 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, - 2010, 2012, 2013, 2014, 2015, 2016, 2017 Russ Allbery - Substantial contributions by Sean Burke -License: GPL-1+ or Artistic -Comment: - This program is free software; you may redistribute it and/or modify it - under the same terms as Perl itself. - -Files: cpan/podlators/lib/Pod/Text/Overstrike.pm -Copyright: - Copyright 2000 Joe Smith . - Copyright 2001, 2004, 2008 Russ Allbery . -License: GPL-1+ or Artistic -Comment: - This program is free software; you may redistribute it and/or modify it - under the same terms as Perl itself. - -Files: cpan/podlators/t/data/snippets/README -Copyright: - Copyright 2015 Russ Allbery -License: RRA-KEEP-THIS-NOTICE -Comment: - The license text can be found at the end of this file. - -Files: - cpan/podlators/t/docs/pod-spelling.t - cpan/podlators/t/docs/pod.t - cpan/podlators/t/docs/synopsis.t - cpan/podlators/t/lib/Test/RRA.pm - cpan/podlators/t/lib/Test/RRA/Config.pm - cpan/podlators/t/style/minimum-version.t - cpan/podlators/t/style/strict.t -Copyright: Copyright 2012, 2013, 2014 - The Board of Trustees of the Leland Stanford Junior University -License: Expat - -Files: cpan/podlators/t/lib/Test/RRA/ModuleVersion.pm -Copyright: Copyright 2016 Russ Allbery -License: Expat - -Files: cpan/podlators/t/man/no-encode.t -Copyright: - Copyright 2016 Niko Tyni - Copyright 2016 Russ Allbery -License: GPL-1+ or Artistic -Comment: - This program is free software; you may redistribute it and/or modify it - under the same terms as Perl itself. - -Files: cpan/podlators/t/style/module-version.t -Copyright: - Copyright 2014, 2015, 2016 Russ Allbery - Copyright 2012, 2013, 2014 The Board of Trustees of the Leland Stanford Junior University -License: Expat - -Files: cpan/Pod-Parser/* -Copyright: - Copyright (C) 1996-2000 by Bradford Appleton. All rights reserved. -License: GPL-1+ or Artistic -Comment: - PodParser is free software; you can redistribute it and/or modify it - under the same terms as Perl itself. - -Files: cpan/Pod-Parser/lib/Pod/PlainText.pm -Copyright: - Copyright 1999-2000 by Russ Allbery -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or modify it - under the same terms as Perl itself. - -Files: cpan/Pod-Parser/lib/Pod/ParseUtils.pm -Copyright: - Copyright (C) 1999-2000 by Marek Rouchal. All rights reserved. -License: GPL-1+ or Artistic -Comment: - This file is part of "PodParser". PodParser is free software; - you can redistribute it and/or modify it under the same terms - as Perl itself. - -Files: cpan/Pod-Parser/t/pod/contains_pod.t -Copyright: - Copyright (C) 2005 Joshua Hoblitt -License: GPL-1+ or Artistic -Comment: - ---------------------------------------- - This file has no explicit license notice, but it is assumed that it - is licensed under the same terms as the rest of the distribution. - -Files: cpan/Pod-Simple/* -Copyright: - Copyright (c) 2002-2004 Sean M. Burke. All rights reserved. -License: GPL-1+ or Artistic -Comment: - This library is free software; you can redistribute it and/or modify it - under the same terms as Perl itself. - -Files: cpan/Pod-Simple/lib/Pod/Simple/XHTML.pm -Copyright: - Copyright (c) 2003-2005 Allison Randal. -License: GPL-1+ or Artistic -Comment: - This library is free software; you can redistribute it and/or modify it - under the same terms as Perl itself. - -Files: - cpan/Pod-Simple/t/perlfaq.pod - cpan/Pod-Simple/t/perlfaqo.txt -Copyright: - Copyright (c) 1997-1999 Tom Christiansen and Nathan Torkington. - All rights reserved. -License: GPL-1+ or Artistic -Comment: - ---------------------------------------- - This document is part of the perlfaq distribution. A newer version - of it is also included in pod/perlfaq3.pod. - . - The license notice in the document is: - . - When included as an integrated part of the Standard Distribution - of Perl or of its documentation (printed or otherwise), this works is - covered under Perl's Artistic License. For separate distributions of - all or part of this FAQ outside of that, see L. - . - Irrespective of its distribution, all code examples here are in the public - domain. You are permitted and encouraged to use this code and any - derivatives thereof in your own programs for fun or for profit as you - see fit. A simple comment in the code giving credit to the FAQ would - be courteous but is not required. - . - The corresponding license in pod/perlfaq.pod is: - . - This document is available under the same terms as Perl itself. Code - examples in all the perlfaq documents are in the public domain. Use - them as you see fit (and at your own risk with no warranty from anyone). - -Files: cpan/Pod-Usage/* -Copyright: - Copyright (C) 1996-2000 by Bradford Appleton. All rights reserved. - Copyright (c) 2001-2016 by Marek Rouchal. -License: GPL-1+ or Artistic -Comment: - This file is part of "Pod-Usage". Pod-Usage is free software; - you can redistribute it and/or modify it under the same terms - as Perl itself. - -Files: cpan/Pod-Usage/t/inc/Pod/PlainText.pm -Copyright: - Copyright 1999-2000 by Russ Allbery -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or modify it - under the same terms as Perl itself. - -Files: cpan/Sys-Syslog/* -Copyright: - Copyright (C) 1990-2012 by Larry Wall and others. -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or modify it - under the same terms as Perl itself. - -Files: cpan/Sys-Syslog/fallback/syslog.h -Copyright: - Copyright (c) 1982, 1986, 1988, 1993 - The Regents of the University of California. All rights reserved. -License: BSD-3-clause-with-weird-numbering - -Files: cpan/Term-ANSIColor/* -Copyright: - Copyright 1996 Zenin - Copyright 1996, 1997, 1998, 2000, 2001, 2002, 2005, 2006, 2008, 2009, - 2010, 2011, 2012, 2013, 2014, 2015, 2016 Russ Allbery - Copyright 2012 Kurt Starsinic -License: GPL-1+ or Artistic -Comment: - This program is free software; you may redistribute it and/or modify - it under the same terms as Perl itself. - -Files: - cpan/Term-ANSIColor/t/lib/Test/RRA.pm -Copyright: 2013, 2014 The Board of Trustees of the Leland Stanford Junior University -License: Expat - -Files: - cpan/Term-ANSIColor/t/lib/Test/RRA/Config.pm -Copyright: - Copyright 2015, 2016 Russ Allbery - Copyright 2013, 2014 The Board of Trustees of the Leland Stanford Junior University -License: Expat - -Files: cpan/Term-Cap/* -Copyright: 1995-2015 (c) perl5 porters. -License: GPL-1+ or Artistic -Comment: - This software is free software and can be modified and distributed under - the same terms as Perl itself. - -Files: cpan/Test-Harness/* -Copyright: - Copyright (c) 2007-2011, Andy Armstrong . All rights reserved. -License: GPL-1+ or Artistic -Comment: - This module is free software; you can redistribute it and/or - modify it under the same terms as Perl itself. - -Files: cpan/Test-Harness/lib/TAP/Parser.pm -Copyright: - Copyright 2006-2008 Curtis "Ovid" Poe, all rights reserved. -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or modify it - under the same terms as Perl itself. - -Files: cpan/Test-Harness/lib/TAP/Parser/YAMLish/Reader.pm -Copyright: - Copyright 2007-2011 Andy Armstrong. - Portions copyright 2006-2008 Adam Kennedy. -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or modify it - under the same terms as Perl itself. - -Files: cpan/Test-Simple/* -Copyright: - Copyright 2001-2008 by Michael G Schwern . - Copyright 2018 Chad Granum . -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or - modify it under the same terms as Perl itself. - -Files: cpan/Test-Simple/lib/Test/Builder.pm -Copyright: - Copyright 2002-2008 by chromatic and - Michael G Schwern E. -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or - modify it under the same terms as Perl itself. - -Files: cpan/Test-Simple/lib/Test/Builder/Tester/Color.pm -Copyright: - Copyright Mark Fowler 2002. -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it - and/or modify it under the same terms as Perl itself. - -Files: cpan/Test-Simple/lib/Test/Builder/Tester.pm -Copyright: - Copyright Mark Fowler 2002, 2004. - . - Some code taken from Test::More and Test::Catch, written by by - Michael G Schwern . Hence, those parts - Copyright Michael G Schwern 2001. Used and distributed with - permission. - . - This module is copyright 2005 Fergal Daly , some parts - are based on other people's work. -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it - and/or modify it under the same terms as Perl itself. - -Files: cpan/Test-Simple/lib/Test/Tutorial.pod -Copyright: - Copyright 2001 by Michael G Schwern . -License: GPL-1+ or Artistic -Comment: - This documentation is free; you can redistribute it and/or modify it - under the same terms as Perl itself. - . - Irrespective of its distribution, all code examples in these files - are hereby placed into the public domain. You are permitted and - encouraged to use this code in your own programs for fun - or for profit as you see fit. A simple comment in the code giving - credit would be courteous but is not required. - -Files: cpan/Test-Simple/lib/Test/Builder/IO/Scalar.pm -Copyright: - Copyright (c) 1996 by Eryq. All rights reserved. - Copyright (c) 1999,2001 by ZeeGee Software Inc. All rights reserved. -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it - and/or modify it under the same terms as Perl itself. - -Files: cpan/Test-Simple/lib/Test/Tester/CaptureRunner.pm -Copyright: Copyright 2003 by Fergal Daly . -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it - and/or modify it under the same terms as Perl itself. - -Files: - cpan/Test-Simple/lib/Test/use/ok.pm - cpan/Test-Simple/lib/ok.pm -Copyright: none - To the extent possible under law, 唐鳳 has waived all copyright and related - or neighboring rights to L -License: CC0-1.0 -Comment: - ---------------------------------------- - The file links to http://creativecommons.org/publicdomain/zero/1.0/ - and the full license text as retrieved from there can be found at the - end of this file. - -Files: cpan/Text-Balanced/* -Copyright: - Copyright 1997 - 2001 Damian Conway. All Rights Reserved. - Some (minor) parts copyright 2009 Adam Kennedy. -License: GPL-1+ or Artistic -Comment: - This module is free software. It may be used, redistributed and/or - modified under the same terms as Perl itself. - -Files: cpan/Text-ParseWords/* -Copyright: unknown -License: GPL-1+ or Artistic -Comment: - ---------------------------------------- - There are no copyright notices this distribution. - . - This library is free software; you may redistribute and/or modify it - under the same terms as Perl itself. - -Files: cpan/Text-Tabs/* -Copyright: - Copyright (C) 1996-2009 David Muir Sharnoff. - Copyright (C) 2005 Aristotle Pagaltzis - Copyright (C) 2012-2013 Google, Inc. -License: TEXT-TABS - -Files: cpan/Tie-File/* -Copyright: - Tie::File version 0.97 is copyright (C) 2003 Mark Jason Dominus. -License: GPL-2+ or Artistic -Comment: - This library is free software; you may redistribute it and/or modify - it under the same terms as Perl itself. - . - These terms are your choice of any of (1) the Perl Artistic Licence, - or (2) version 2 of the GNU General Public License as published by the - Free Software Foundation, or (3) any later version of the GNU General - Public License. - -Files: - cpan/bignum/* - cpan/Tie-RefHash/* - cpan/Win32API-File/* - dist/ExtUtils-Install/* - dist/Math-BigInt/* - dist/Math-BigInt-FastCalc/* - dist/Math-BigRat/* - dist/Thread-Queue/* -Copyright: unknown -License: GPL-1+ or Artistic -Comment: - This program is free software; you may redistribute it and/or modify - it under the same terms as Perl itself. - ---------------------------------------- - These distributions include no copyright notices but have - the same explicit licensing information. - -Files: cpan/Time-Local/* -Copyright: - Copyright (c) 1997 - 2016 by Graham Barr & Dave Rolsky. -License: GPL-1+ or Artistic -Comment: - This is free software; you can redistribute it and/or modify it under - the same terms as the Perl 5 programming language system itself. - -Files: cpan/Time-Piece/* -Copyright: unknown -License: GPL-1+ or Artistic -Comment: - This module is free software, you may distribute it under the same - terms as Perl. - -Files: cpan/Time-Piece/Piece.xs -Copyright: - strptime copied from freebsd with the following copyright: - Copyright (c) 1994 Powerdog Industries. All rights reserved. -License: GPL-1+ or Artistic, and BSD-4-clause-POWERDOG -Comment: - ---------------------------------------- - The strptime function is licensed under the BSD-like license included - below. It is assumed that the other parts are licensed under the same - terms as the rest of the distribution. - -Files: cpan/Unicode-Collate/* -Copyright: - This module is Copyright(C) 2001-2017, SADAHIRO Tomoyuki. Japan. All - rights reserved. -License: GPL-1+ or Artistic -Comment: - This module is free software; you can redistribute it and/or - modify it under the same terms as Perl itself. - -Files: cpan/Unicode-Collate/Collate/allkeys.txt -Copyright: - Copyright (c) 2016 Unicode, Inc. -License: Unicode -Comment: - For terms of use, see http://www.unicode.org/terms_of_use.html - ---------------------------------------- - See below for the full text of this license as downloaded from the above URL - on Tue, 26 Apr 2011 14:41:24 +0300. - -Files: cpan/Unicode-Normalize/* -Copyright: - Copyright(C) 2001-2012, SADAHIRO Tomoyuki. Japan. All rights reserved. -License: GPL-1+ or Artistic -Comment: - This module is free software; you can redistribute it and/or - modify it under the same terms as Perl itself. - -Files: cpan/Win32/* -Copyright: (c) 1995 Microsoft Corporation. All rights reserved. -License: GPL-1+ or Artistic -Comment: - ---------------------------------------- - There are no copyright notices or license information in this distribution, - but the README file of the separate CPAN distribution at - states: - . - This module is free software; you may redistribute it and/or modify it - under the same terms as Perl itself. - . - The "Perl for Win32" source code was licensed under the same terms - as Perl itself and contained this copyright notice: - . - (c) 1995 Microsoft Corporation. All rights reserved. - Developed by ActiveWare Internet Corp. - -Files: dist/Attribute-Handlers/* -Copyright: - Copyright (c) 2001-2009, Damian Conway. All Rights Reserved. -License: GPL-1+ or Artistic -Comment: - This module is free software. It may be used, redistributed - and/or modified under the same terms as Perl itself. - -Files: - dist/autouse/* - dist/base/* - dist/constant/* - dist/Devel-SelfStubber/* - dist/Dumpvalue/* - dist/Env/* - dist/ExtUtils-Command/* - dist/ExtUtils-Manifest/* - dist/I18N-Collate/* - dist/Safe/* - ext/Fcntl/* - ext/FileCache/* - ext/GDBM_File/* - ext/IPC-Open2/* - ext/IPC-Open3/* - ext/NDBM_File/* - ext/ODBM_File/* - ext/Opcode/* - ext/PerlIO-encoding/* - ext/PerlIO-scalar/* - ext/PerlIO-via/* - ext/POSIX/* - ext/re/* - ext/Socket/* - ext/Sys-Hostname/* - ext/Tie-Hash-NamedCapture/* - ext/Tie-Memoize/* - ext/VMS-DCLsym/* - ext/VMS-Stdio/* -Copyright: unknown -License: GPL-1+ or Artistic -Comment: - ---------------------------------------- - There is no copyright or license information in these distributions. - It is assumed that they are licensed under the same terms as Perl itself. - -Files: dist/B-Deparse/* -Copyright: - Copyright (c) 1998-2000, 2002, 2003, 2004, 2005, 2006 Stephen McCamant. - All rights reserved. -License: GPL-1+ or Artistic -Comment: - This module is free software; you can redistribute and/or modify - it under the same terms as Perl itself. - -Files: dist/Carp/* -Copyright: - Copyright (c) 1994-2013 Larry Wall - Copyright (c) 2011, 2012, 2013 Andrew Main (Zefram) -License: GPL-1+ or Artistic -Comment: - This module is free software. It may be used, redistributed - and/or modified under the same terms as Perl itself. - -Files: dist/Data-Dumper/* -Copyright: - Copyright (c) 1996-2017 Gurusamy Sarathy. All rights reserved. -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or - modify it under the same terms as Perl itself. - -Files: dist/ExtUtils-CBuilder/* -Copyright: - Copyright (c) 2003-2005 Ken Williams. All rights reserved. - Copyright (c) 2012-2017 Ken Williams. All rights reserved. -License: GPL-1+ or Artistic -Comment: - This library is free software; you can redistribute it and/or - modify it under the same terms as Perl itself. - -Files: dist/ExtUtils-ParseXS/* -Copyright: - Copyright 2002-2012 by Ken Williams, David Golden and other contributors. - All rights reserved. -License: GPL-1+ or Artistic -Comment: - This library is free software; you can redistribute it and/or - modify it under the same terms as Perl itself. - . - Based on the ExtUtils::xsubpp code by Larry Wall and the Perl 5 - Porters, which was released under the same license terms. - -Files: dist/Filter-Simple/* -Copyright: - Copyright (c) 2000-2008, Damian Conway. All Rights Reserved. -License: GPL-1+ or Artistic -Comment: - This module is free software. It may be used, redistributed - and/or modified under the same terms as Perl itself. - -Files: dist/if/* -Copyright: This software is copyright (c) 2002 by Ilya Zakharevich. -License: GPL-1+ or Artistic -Comment: - This is free software; you can redistribute it and/or modify it under - the same terms as the Perl 5 programming language system itself. - -Files: dist/I18N-LangTags/* -Copyright: - Copyright 1998+, Sean M. Burke , all rights - reserved. -License: GPL-1+ or Artistic -Comment: - This library is free software; you can redistribute it and/or modify - it under the same terms as Perl itself. - -Files: dist/I18N-LangTags/lib/I18N/LangTags/List.pm -Copyright: - Copyright (c) 2001+ Sean M. Burke. All rights reserved. -License: GPL-1+ or Artistic -Comment: - You can redistribute and/or modify this document under the same terms - as Perl itself. - -Files: dist/IO/* -Copyright: - Copyright (c) 1996-2003 Graham Barr . All rights reserved. -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or - modify it under the same terms as Perl itself. - -Files: dist/IO/lib/IO/Socket.pm -Copyright: - Copyright (c) 1997-8 Graham Barr . All rights reserved. - Copyright 2001, Lincoln Stein . -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or - modify it under the same terms as Perl itself. - . - The atmark() implementation: Copyright 2001, Lincoln Stein . - This module is distributed under the same terms as Perl itself. - Feel free to use, modify and redistribute it as long as you retain - the correct attribution. - -Files: dist/lib/* -Copyright: as above for 'Files: *' -License: GPL-1+ or Artistic -Comment: - This package has the same copyright and license as the perl core. - -Files: dist/Locale-Maketext/* -Copyright: - Copyright 1999-2004, Sean M. Burke , all rights reserved. -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or modify - it under the same terms as Perl itself. - -Files: dist/Locale-Maketext/lib/Locale/Maketext/TPJ13.pod -Copyright: 1999 The Perl Journal. -License: GPL-1+ or Artistic -Comment: - This document may be distributed under the same terms as Perl itself. - -Files: dist/Module-CoreList/* -Copyright: - Copyright (C) 2002-2009 Richard Clamp. All Rights Reserved. -License: GPL-1+ or Artistic -Comment: - This program is free software; you may redistribute it and/or modify - it under the same terms as Perl itself. - -Files: dist/Module-CoreList/corelist -Copyright: - Copyright (c) 2002-2007 by D.H. aka PodMaster -License: GPL-1+ or Artistic -Comment: - This program is distributed under the same terms as perl itself. - -Files: dist/Module-CoreList/lib/Module/CoreList/Utils.pm -Copyright: - Copyright (C) 2013 Chris Williams. All Rights Reserved. -License: GPL-1+ or Artistic -Comment: - This module is free software; you can redistribute it and/or modify it - under the same terms as Perl itself. - -Files: dist/Net-Ping/* -Copyright: - Copyright (c) 2016, cPanel Inc. All rights reserved. - Copyright (c) 2012, Steve Peters. All rights reserved. - Copyright (c) 2002-2003, Rob Brown. All rights reserved. - Copyright (c) 2001, Colin McMillen. All rights reserved. -License: GPL-1+ or Artistic -Comment: - This program is free software; you may redistribute it and/or - modify it under the same terms as Perl itself. - -Files: dist/PathTools/* -Copyright: - Copyright (c) 2004 by the Perl 5 Porters. All rights reserved. -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or modify - it under the same terms as Perl itself. - -Files: dist/PathTools/Cwd.xs -Copyright: - Copyright (c) 2004 by the Perl 5 Porters. All rights reserved. - Copyright (c) 2003 Constantin S. Svintsoff -License: GPL-1+ or Artistic, and BSD-3-clause-GENERIC -Comment: - ---------------------------------------- - The main license applies to most of the code: - . - This program is free software; you can redistribute it and/or modify - it under the same terms as Perl itself. - . - but portions of it have been taken from a BSD variant and are licensed - under the terms of the "BSD-3-clause-GENERIC" license included in this file. - . - dist/PathTools/Cwd.pm states: - . - Portions of the C code in this library are copyright (c) 1994 by the - Regents of the University of California. All rights reserved. The - license on this code is compatible with the licensing of the rest of - the distribution - please see the source code in F for the - details. - . - but, as discussed in - http://rt.cpan.org/Public/Bug/Display.html?id=64116 - this is outdated and dist/PathTools/Cwd.xs itself contains the correct - information. - -Files: dist/Pod-Perldoc/* -Copyright: - Copyright (c) 2002-2007 Sean M. Burke. - Copyright (c) 2011 Mark Allen. All rights reserved. - Copyright (c) 2011 brian d foy. All rights reserved. - Copyright (c) 2017 Mark Allen. -License: GPL-1+ or Artistic -Comment: - This library is free software; you can redistribute it and/or modify it - under the same terms as Perl itself. - -Files: dist/Storable/* -Copyright: - Copyright (c) 1995-2001, Raphael Manfredi - Copyright (c) 2002-2014 by the Perl 5 Porters - Copyright (c) 2016,2017 cPanel Inc - Copyright (c) 2017, Reini Urban -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or modify - it under the same terms as Perl 5 itself. - -Files: dist/Storable/t/forgive.t -Copyright: - Copyright (c) 1995-2000, Raphael Manfredi - (C) Copyright 1997, Universitat Dortmund, all rights reserved. -License: GPL-1+ or Artistic -Comment: - You may redistribute only under the same terms as Perl 5, as specified - in the README file that comes with the distribution. - -Files: - dist/Storable/t/attach_errors.t - dist/Storable/t/attach_singleton.t - dist/Storable/t/circular_hook.t -Copyright: - Copyright 2005, Adam Kennedy. -License: GPL-1+ or Artistic -Comment: - You may redistribute only under the same terms as Perl 5, as specified - in the README file that comes with the distribution. - -Files: - dist/Storable/t/code.t - dist/Storable/t/sig_die.t -Copyright: - Copyright (c) 2002 Slaven Rezic -License: GPL-1+ or Artistic -Comment: - You may redistribute only under the same terms as Perl 5, as specified - in the README file that comes with the distribution. - -Files: dist/threads/* -Copyright: unknown -License: GPL-1+ or Artistic -Comment: - threads is released under the same license as Perl. - -Files: dist/threads-shared/* -Copyright: unknown -License: GPL-1+ or Artistic -Comment: - threads::shared is released under the same license as Perl. - -Files: dist/threads-shared/shared.xs -Copyright: - Copyright (c) 2001-2002, 2006 Larry Wall -License: GPL-1+ or Artistic -Comment: - You may distribute under the terms of either the GNU General Public - License or the Artistic License, as specified in the README file. - -Files: dist/Test/* -Copyright: - Copyright (c) 1998-2000 Joshua Nathaniel Pritikin. - Copyright (c) 2001-2002 Michael G. Schwern. - Copyright (c) 2002-2004 Sean M. Burke. -License: GPL-1+ or Artistic -Comment: - This package is free software and is provided "as is" without express - or implied warranty. It may be used, redistributed and/or modified - under the same terms as Perl itself. - -Files: dist/Time-HiRes/* -Copyright: - Copyright (c) 1996-2002 Douglas E. Wegscheid. All rights reserved. - Copyright (c) 2002-2010 Jarkko Hietaniemi. - Copyright (c) 2011, 2012, 2013 Andrew Main (Zefram) - All rights reserved. -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or modify - it under the same terms as Perl itself. - -Files: dist/XSLoader/* -Copyright: - Copyright (C) 1990-2011 by Larry Wall and others. -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or modify - it under the same terms as Perl itself. - -Files: ext/attributes/* -Copyright: - Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 - by Larry Wall and others -License: GPL-1+ or Artistic -Comment: - You may distribute under the terms of either the GNU General Public - License or the Artistic License, as specified in the README file. - -Files: - ext/Amiga-ARexx/* - ext/Amiga-Exec/* -Copyright: - Copyright (C) 2013 by Andy Broad. -License: GPL-1+ or Artistic -Comment: - There is no license information included. It is assumed that this - distribution is licensed under the same terms as Perl itself. - -Files: ext/B/* -Copyright: - Copyright (c) 1996, 1997, 1998 Malcolm Beattie -License: GPL-1+ or Artistic -Comment: - You may distribute under the terms of either the GNU General Public - License or the Artistic License, as specified in the README file. - -Files: ext/B/B/Concise.pm -Copyright: - Copyright (C) 2000-2003 Stephen McCamant. All rights reserved. -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute and/or modify it - under the same terms as Perl itself. - -Files: ext/Devel-Peek/* -Copyright: - Copyright (c) 1995-98 Ilya Zakharevich. All rights reserved. -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or - modify it under the same terms as Perl itself. - -Files: ext/DynaLoader/* -Copyright: unknown -License: GPL-1+ or Artistic -Comment: - ---------------------------------------- - There is no license information included that clearly applies to the - whole of this distribution. It is assumed that it is licensed under - the same terms as Perl itself. - -Files: ext/DynaLoader/dl_aix.xs -Copyright: - This is an unpublished work copyright (c) 1992 Helios Software GmbH - 3000 Hannover 1, Germany -License: GPL-1+ or Artistic -Comment: - ---------------------------------------- - It is assumed that this file is licensed under the same terms as Perl itself. - -Files: ext/DynaLoader/dl_dld.xs -Copyright: - based upon the file "dl.c", which is Copyright (c) 1994, Larry Wall -License: GPL-1+ or Artistic -Comment: - You may distribute under the terms of either the GNU General Public - License or the Artistic License, as specified in the README file. - -Files: ext/DynaLoader/dl_symbian.xs -Copyright: 2004, Nokia -License: GPL-1+ or Artistic -Comment: - ---------------------------------------- - The license in the file is specified as - . - License: Artistic/GPL - -Files: ext/Errno/* -Copyright: - Copyright (c) 1997-8 Graham Barr. All rights reserved. -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or modify - it under the same terms as Perl itself. - -Files: ext/File-Glob/* -Copyright: unknown -License: Artistic -Comment: - The Perl interface was written by Nathan Torkington , - and is released under the artistic license. Further modifications - were made by Greg Bacon , Gurusamy Sarathy - , and Thomas Wegner . - -Files: - ext/File-Glob/bsd_glob.c - ext/File-Glob/bsd_glob.h -Copyright: - Copyright (c) 1989, 1993 - The Regents of the University of California. All rights reserved. - . - This code is derived from software contributed to Berkeley by - Guido van Rossum. -License: BSD-3-clause - -Files: ext/Hash-Util/* -Copyright: unknown -License: GPL-1+ or Artistic -Comment: - ---------------------------------------- - There is no license information in this distribution. - It is assumed that it is licensed under the same terms as Perl itself. - -Files: ext/Hash-Util/lib/Hash/Util.pm -Copyright: - hv_store() is from Array::RefElem, Copyright 2000 Gisle Aas. -License: GPL-1+ or Artistic -Comment: - ---------------------------------------- - As above, it is assumed that this file is licensed under the same terms - as Perl itself. - . - The copyright and license information of Array::RefElem, as fetched from - , is as - follows: - . - Copyright 2000 Gisle Aas - . - This library is free software; you can redistribute it and/or - modify it under the same terms as Perl itself. - -Files: ext/Hash-Util-FieldHash/* -Copyright: - Copyright (C) 2006-2007 by (Anno Siegel) -License: GPL-1+ or Artistic -Comment: - This library is free software; you can redistribute it and/or modify - it under the same terms as Perl itself, either Perl version 5.8.7 or, - at your option, any later version of Perl 5 you may have available. - -Files: ext/I18N-Langinfo/* -Copyright: - Copyright 2001 by Jarkko Hietaniemi -License: GPL-1+ or Artistic -Comment: - This library is free software; you can redistribute it and/or modify - it under the same terms as Perl itself. - -Files: ext/mro/* -Copyright: - Copyright (c) 2007 Brandon L Black - Copyright (c) 2008,2009 Larry Wall and others -License: GPL-1+ or Artistic -Comment: - You may distribute under the terms of either the GNU General Public - License or the Artistic License, as specified in the README file. - -Files: ext/Pod-Html/* -Copyright: unknown -License: Artistic -Comment: - This program is distributed under the Artistic License. - -Files: ext/SDBM_File/* -Copyright: unknown -License: GPL-1+ or Artistic -Comment: - There is no copyright or license information in this distribution. - It is assumed that it is licensed under the same terms as Perl itself. - -Files: ext/SDBM_File/sdbm/* -Copyright: none -License: SDBM-PUBLIC-DOMAIN - -Files: ext/Win32CORE/* -Copyright: - Copyright (C) 2007 by Larry Wall and others -License: GPL-1+ or Artistic -Comment: - You may distribute under the terms of either the GNU General Public - License or the Artistic License, as specified in the README file. - -Files: ext/XS-APItest/* -Copyright: - Copyright (C) 2002,2004 Tim Jenness, Christian Soeller, Hugo van der Sanden. - All Rights Reserved. - . - Copyright (C) 2009 Andrew Main (Zefram) -License: GPL-1+ or Artistic -Comment: - This library is free software; you can redistribute it and/or modify - it under the same terms as Perl itself. - -Files: ext/XS-Typemap/* -Copyright: - Copyright (C) 2001 Tim Jenness All Rights Reserved. -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or modify - it under the same terms as Perl itself. - -Files: - pod/perldebtut.pod - pod/perlperf.pod -Copyright: - Richard Foley Copyright (c) 2000 -License: GPL-1+ or Artistic -Comment: - ---------------------------------------- - These files are a part of Perl itself, licensed as above. - -Files: pod/perlembed.pod -Copyright: - Copyright (C) 1995, 1996, 1997, 1998 Doug MacEachern and Jon Orwant. All - Rights Reserved. -License: GPL-1+ or Artistic -Comment: - This document may be distributed under the same terms as Perl itself. - -Files: pod/perlexperiment.pod -Copyright: - Copyright 2010, brian d foy -License: GPL-1+ or Artistic -Comment: - You can use and redistribute this document under the same terms as Perl - itself. - -Files: - pod/perlfaq*.pod - pod/perlopentut.pod - pod/perltooc.pod -Copyright: - Copyright (c) 1997-2010 Tom Christiansen, Nathan Torkington, and - other authors as noted. All rights reserved. -License: GPL-1+ or Artistic -Comment: - This documentation is free; you can redistribute it and/or modify it - under the same terms as Perl itself. - . - Irrespective of its distribution, all code examples here are in the public - domain. You are permitted and encouraged to use this code and any - derivatives thereof in your own programs for fun or for profit as you - see fit. A simple comment in the code giving credit to the FAQ would - be courteous but is not required. - -Files: pod/perlfaq.pod -Copyright: - Tom Christiansen wrote the original version of this document. - brian d foy wrote this version. See the - individual perlfaq documents for additional copyright information. -License: GPL-1+ or Artistic -Comment: - This document is available under the same terms as Perl itself. Code - examples in all the perlfaq documents are in the public domain. Use - them as you see fit (and at your own risk with no warranty from anyone). - -Files: - pod/perlfilter.pod - pod/perlthrtut.pod -Copyright: - copyright 1998 The Perl Journal -License: GPL-1+ or Artistic -Comment: - This document may be distributed under the same terms as Perl itself. - -Files: pod/perlglossary.pod -Copyright: - Based on the Glossary of I, Fourth Edition, - by Tom Christiansen, brian d foy, Larry Wall, & Jon Orwant. - Copyright (c) 2000, 1996, 1991, 2012 O'Reilly Media, Inc. -License: GPL-1+ or Artistic -Comment: - This document may be distributed under the same terms as Perl itself. - -Files: pod/perlmodinstall.pod -Copyright: - Copyright (C) 1998, 2002, 2003 Jon Orwant. All Rights Reserved. -License: GPL-1+ or Artistic -Comment: - This document may be distributed under the same terms as Perl itself. - -Files: - pod/perlopentut.pod - pod/perltooc.pod - pod/perltoot.pod -Copyright: - Copyright 1997-1999 Tom Christiansen. -License: GPL-1+ or Artistic -Comment: - This documentation is free; you can redistribute it and/or modify it - under the same terms as Perl itself. - . - Irrespective of its distribution, all code examples in these files are - hereby placed into the public domain. You are permitted and - encouraged to use this code in your own programs for fun or for profit - as you see fit. A simple comment in the code giving credit would be - courteous but is not required. - -Files: pod/perlpodstyle.pod -Copyright: - Copyright 1999, 2000, 2001, 2004, 2006, 2008, 2010, 2015 Russ Allbery - -License: RRA-KEEP-THIS-NOTICE -Comment: - The license text can be found at the end of this file. - -Files: pod/perlreapi.pod -Copyright: - Copyright 2006 Yves Orton and 2007 Ævar Arnfjörð Bjarmason. -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or modify it under - the same terms as Perl itself. - -Files: pod/perlreftut.pod -Copyright: - Copyright 1998 The Perl Journal. -License: GPL-1+ or Artistic -Comment: - This documentation is free; you can redistribute it and/or modify it - under the same terms as Perl itself. - . - Irrespective of its distribution, all code examples in these files are - hereby placed into the public domain. You are permitted and - encouraged to use this code in your own programs for fun or for profit - as you see fit. A simple comment in the code giving credit would be - courteous but is not required. - -Files: - pod/perlrequick.pod - pod/perlretut.pod -Copyright: - Copyright (c) 2000 Mark Kvale - All rights reserved. -License: GPL-1+ or Artistic -Comment: - This document may be distributed under the same terms as Perl itself. - -Files: pod/perlunicook.pod -Copyright: - Copyright (c) 2012 Tom Christiansen -License: GPL-1+ or Artistic -Comment: - This document may be distributed under the same terms as Perl itself. - -Files: pod/perluniintro.pod -Copyright: - Copyright 2001-2011 Jarkko Hietaniemi -License: GPL-1+ or Artistic -Comment: - This document may be distributed under the same terms as Perl itself. - -Files: - Copying - pod/perlgpl.pod -Copyright: - Copyright (C) 1989 Free Software Foundation, Inc. - 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -License: DONT-CHANGE-THE-GPL - -Files: t/io/shm.t -Copyright: - Copyright (C) 1999, Graham Barr . - Copyright (C) 2007-2010, Marcus Holland-Moritz . -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or - modify it under the same terms as Perl itself. - -Files: regen-configure/* -Copyright: - Copyright (c) 1996-1998, Andy Dougherty - Copyright (c) 1999-2011, H.Merijn Brand -License: GPL-1+ or Artistic or Artistic-dist -Comment: - This directory is a snapshot of the upstream metaconfig repository, - containing code originally forked from 'dist' upstream by Larry - Wall and Raphael Manfredi. The 'dist/' subdirectory is unmodified - upstream code, but the other subdirectories contain mixed code. - Some units are dual licensed and some are specifically Artistic-only. - . - The bin/ subdirectory is being filtered from the upstream snapshot - (with the Files-Excluded mechanism at the top of this copyright file) - because it contains files generated from dist sources. The Debian - package build uses the tools from the separate 'dist' package. - . - From regen-configure/U/README: - . - You may distribute the files contained in this distribution - under the terms of either - . - a) the "Artistic License" which comes with Perl, or - . - b) the "Artistic License" which comes with dist, or - . - c) the GNU General Public License as published by the Free - Software Foundation; either version 1, or (at your option) any - later version (see the file "Copying" that comes with the - Perl distribution). - . - The full text of the "Artistic License" which comes with dist - differs slightly from the one that is in /usr/share/common-licenses - on Debian systems, and can be found later in this file under the - "Artistic-dist" tag. - -Files: regen-configure/dist/* -Copyright: - Copyright (c) 1991-1997, 2004-2006, 2012 Raphael Manfredi - Copyright (c) 1996,1998 Andy Dougherty - Copyright (c) 1996, Cygnus Support - Copyright (c) 1996, Spider Boardman - Copyright (c) 1996, Sven Verdoolaege - Copyright (c) 1997, Chip Salzenberg - Copyright (c) 1998 Andy Dougherty - Copyright (c) 1999-2001 Jarkko Hietaniemi -License: Artistic-dist -Comment: - This subdirectory contains unmodified 'dist' code that is - licensed under the modified Artistic license detailed below - under the "Artistic-dist" tag. The different files have - separate copyright notices, collected above. - -Files: regen-configure/U/* -Copyright: - Copyright (c) 1991-1997, 2004-2006, Raphael Manfredi - Copyright (c) 1996-2010, Andy Dougherty - Copyright (c) 1996, Sven Verdoolaege - Copyright (c) 1998-2016 Jarkko Hietaniemi - Copyright (c) 2004-2018 H.Merijn Brand - Copyright (c) 2006-2006, H.Merijn Brand & Nicholas Clark - Copyright (c) 2011, H.Merijn Brand & Tony Cook - Copyright (c) 2014-2014, Karl Williamson & H.Merijn Brand - Copyright (c) 2016 H.Merijn Brand & Todd Rinaldo - Copyright (c) 2016 Tony Cook - Copyright (c) 2017, Lukas Mai - Copyright (c) 2017 Dagfinn Ilmari Mannsåker - Copyright (c) 2017, Karl Williamson -License: Artistic or GPL-1+ or Artistic-dist -Comment: - From regen-configure/U/README: - . - The units in the "modified" directory have been derived from units - associated with the metaconfig program of Raphael Manfredi's "dist" - distribution. These units list Raphael Manfredi as the Copyright holder. - dist is distributed under a modified version of the Perl Artistic License. - Clause 7 of this modified license as contained in dist-3.0-pl60 provides: - . - 7. You may reuse parts of this Package in your own programs, provided - that you explicitly state where you got them from, in the source code - (and, left to your courtesy, in the documentation), duplicating - all the associated copyright notices and disclaimers. Besides - your changes, if any, must be clearly marked as such. Parts reused - that way will no longer fall under this license if, and only if, - the name of your program(s) have no immediate connection with the - name of the Package itself or its associated programs. You may then - apply whatever restrictions you wish on the reused parts or choose - to place them in the Public Domain--this will apply only within the - context of your package. - . - In accordance with this clause, the versions of these units - contained here are made available under the same terms as the - rest of the units. - . - It is assumed that the above relicensing also applies to all files in - the other subdirectories that are declared to be licensed under the - same modified Artistic license. - . - The modified license can be found later in this file under the - "Artistic-dist" tag. - -Files: utf8.c -Copyright: - Portions Copyright (c) 2008-2009 Bjoern Hoehrmann -License: GPL-1+ or Artistic, and Expat -Comment: - This program is free software; you can redistribute it and/or modify - it under the terms of either: - . - a) the GNU General Public License as published by the Free Software - Foundation; either version 1, or (at your option) any later - version, or - . - b) the "Artistic License" which comes with Perl. - . - Additionally, the tables included this file come from - http://bjoern.hoehrmann.de/utf-8/decoder/dfa/, under the Expat license. - -Files: debian/* -Copyright: - Portions of the Debian packaging are - Copyright 2008-2011 Niko Tyni - Copyright 2011 Dominic Hargreaves - The other people listed in debian/changelog are most probably - copyright holders too, but they have not included explicit copyright - or licensing information. -License: GPL-1+ or Artistic -Comment: - ---------------------------------------- - The portions by Niko Tyni and Dominic Hargreaves may be redistributed - and/or modified under the same terms as Perl itself. It is assumed that - other contributors have placed their contributions under a compatible - license. - -License: LGPL-2.1 - On Debian GNU/Linux systems, the complete text of the LGPL 2.1 - license can be found in `/usr/share/common-licenses/LGPL-2.1'. - -License: GPL-1+ - On Debian GNU/Linux systems, the complete text of the GNU General - Public License can be found in `/usr/share/common-licenses/GPL-1'. - -License: GPL-2+ - On Debian GNU/Linux systems, the complete text of version 2 of - the GNU General Public License can be found in - `/usr/share/common-licenses/GPL-2'. - -License: Artistic - On Debian GNU/Linux systems, the complete text of the - Artistic Licence can be found in `/usr/share/common-licenses/Artistic'. - -License: Artistic-2 - Copyright (c) 2000-2006, The Perl Foundation. - . - Everyone is permitted to copy and distribute verbatim copies of this - license document, but changing it is not allowed. - . - Preamble - . - This license establishes the terms under which a given free software - Package may be copied, modified, distributed, and/or redistributed. - The intent is that the Copyright Holder maintains some artistic - control over the development of that Package while still keeping the - Package available as open source and free software. - . - You are always permitted to make arrangements wholly outside of this - license directly with the Copyright Holder of a given Package. If the - terms of this license do not permit the full use that you propose to - make of the Package, you should contact the Copyright Holder and seek - a different licensing arrangement. - . - Definitions - . - "Copyright Holder" means the individual(s) or organization(s) named in - the copyright notice for the entire Package. - . - "Contributor" means any party that has contributed code or other - material to the Package, in accordance with the Copyright Holder's - procedures. - . - "You" and "your" means any person who would like to copy, distribute, - or modify the Package. - . - "Package" means the collection of files distributed by the Copyright - Holder, and derivatives of that collection and/or of those files. A - given Package may consist of either the Standard Version, or a - Modified Version. - . - "Distribute" means providing a copy of the Package or making it - accessible to anyone else, or in the case of a company or - organization, to others outside of your company or organization. - . - "Distributor Fee" means any fee that you charge for Distributing this - Package or providing support for this Package to another party. It - does not mean licensing fees. - . - "Standard Version" refers to the Package if it has not been modified, - or has been modified only in ways explicitly requested by the - Copyright Holder. - . - "Modified Version" means the Package, if it has been changed, and such - changes were not explicitly requested by the Copyright Holder. - . - "Original License" means this Artistic License as Distributed with the - Standard Version of the Package, in its current version or as it may - be modified by The Perl Foundation in the future. - . - "Source" form means the source code, documentation source, and - configuration files for the Package. - . - "Compiled" form means the compiled bytecode, object code, binary, or - any other form resulting from mechanical transformation or translation - of the Source form. - . - Permission for Use and Modification Without Distribution - . - (1) You are permitted to use the Standard Version and create and use - Modified Versions for any purpose without restriction, provided that - you do not Distribute the Modified Version. - . - Permissions for Redistribution of the Standard Version - . - (2) You may Distribute verbatim copies of the Source form of the - Standard Version of this Package in any medium without restriction, - either gratis or for a Distributor Fee, provided that you duplicate - all of the original copyright notices and associated disclaimers. At - your discretion, such verbatim copies may or may not include a - Compiled form of the Package. - . - (3) You may apply any bug fixes, portability changes, and other - modifications made available from the Copyright Holder. The resulting - Package will still be considered the Standard Version, and as such - will be subject to the Original License. - . - Distribution of Modified Versions of the Package as Source - . - (4) You may Distribute your Modified Version as Source (either gratis - or for a Distributor Fee, and with or without a Compiled form of the - Modified Version) provided that you clearly document how it differs - from the Standard Version, including, but not limited to, documenting - any non-standard features, executables, or modules, and provided that - you do at least ONE of the following: - . - (a) make the Modified Version available to the Copyright Holder of the - Standard Version, under the Original License, so that the Copyright - Holder may include your modifications in the Standard Version. (b) - ensure that installation of your Modified Version does not prevent the - user installing or running the Standard Version. In addition, the - Modified Version must bear a name that is different from the name of - the Standard Version. (c) allow anyone who receives a copy of the - Modified Version to make the Source form of the Modified Version - available to others under (i) the Original License or (ii) a license - that permits the licensee to freely copy, modify and redistribute the - Modified Version using the same licensing terms that apply to the copy - that the licensee received, and requires that the Source form of the - Modified Version, and of any works derived from it, be made freely - available in that license fees are prohibited but Distributor Fees are - allowed. - . - Distribution of Compiled Forms of the Standard Version or Modified - Versions without the Source - . - (5) You may Distribute Compiled forms of the Standard Version without - the Source, provided that you include complete instructions on how to - get the Source of the Standard Version. Such instructions must be - valid at the time of your distribution. If these instructions, at any - time while you are carrying out such distribution, become invalid, you - must provide new instructions on demand or cease further distribution. - If you provide valid instructions or cease distribution within thirty - days after you become aware that the instructions are invalid, then - you do not forfeit any of your rights under this license. - . - (6) You may Distribute a Modified Version in Compiled form without the - Source, provided that you comply with Section 4 with respect to the - Source of the Modified Version. - . - Aggregating or Linking the Package - . - (7) You may aggregate the Package (either the Standard Version or - Modified Version) with other packages and Distribute the resulting - aggregation provided that you do not charge a licensing fee for the - Package. Distributor Fees are permitted, and licensing fees for other - components in the aggregation are permitted. The terms of this license - apply to the use and Distribution of the Standard or Modified Versions - as included in the aggregation. - . - (8) You are permitted to link Modified and Standard Versions with - other works, to embed the Package in a larger work of your own, or to - build stand-alone binary or bytecode versions of applications that - include the Package, and Distribute the result without restriction, - provided the result does not expose a direct interface to the Package. - . - Items That are Not Considered Part of a Modified Version - . - (9) Works (including, but not limited to, modules and scripts) that - merely extend or make use of the Package, do not, by themselves, cause - the Package to be a Modified Version. In addition, such works are not - considered parts of the Package itself, and are not subject to the - terms of this license. - . - General Provisions - . - (10) Any use, modification, and distribution of the Standard or - Modified Versions is governed by this Artistic License. By using, - modifying or distributing the Package, you accept this license. Do not - use, modify, or distribute the Package, if you do not accept this - license. - . - (11) If your Modified Version has been derived from a Modified Version - made by someone other than you, you are nevertheless required to - ensure that your Modified Version complies with the requirements of - this license. - . - (12) This license does not grant you the right to use any trademark, - service mark, tradename, or logo of the Copyright Holder. - . - (13) This license includes the non-exclusive, worldwide, - free-of-charge patent license to make, have made, use, offer to sell, - sell, import and otherwise transfer the Package with respect to any - patent claims licensable by the Copyright Holder that are necessarily - infringed by the Package. If you institute patent litigation - (including a cross-claim or counterclaim) against any party alleging - that the Package constitutes direct or contributory patent - infringement, then this Artistic License to you shall terminate on the - date that such litigation is filed. - . - (14) Disclaimer of Warranty: THE PACKAGE IS PROVIDED BY THE COPYRIGHT - HOLDER AND CONTRIBUTORS "AS IS' AND WITHOUT ANY EXPRESS OR IMPLIED - WARRANTIES. THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A - PARTICULAR PURPOSE, OR NON-INFRINGEMENT ARE DISCLAIMED TO THE EXTENT - PERMITTED BY YOUR LOCAL LAW. UNLESS REQUIRED BY LAW, NO COPYRIGHT - HOLDER OR CONTRIBUTOR WILL BE LIABLE FOR ANY DIRECT, INDIRECT, - INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING IN ANY WAY OUT OF THE USE - OF THE PACKAGE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -License: BZIP - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - . - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - . - 2. The origin of this software must not be misrepresented; you must - not claim that you wrote the original software. If you use this - software in a product, an acknowledgment in the product - documentation would be appreciated but is not required. - . - 3. Altered source versions must be plainly marked as such, and must - not be misrepresented as being the original software. - . - 4. The name of the author may not be used to endorse or promote - products derived from this software without specific prior written - permission. - . - THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS - OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY - DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, - WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING - NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS - SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - . - Julian Seward, jseward@bzip.org - bzip2/libbzip2 version 1.0.5 of 10 December 2007 - -License: ZLIB - This software is provided 'as-is', without any express or implied - warranty. In no event will the authors be held liable for any damages - arising from the use of this software. - . - Permission is granted to anyone to use this software for any purpose, - including commercial applications, and to alter it and redistribute it - freely, subject to the following restrictions: - . - 1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. - 2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. - 3. This notice may not be removed or altered from any source distribution. - -License: Expat - Permission is hereby granted, free of charge, to any person obtaining a copy - of this software and associated documentation files (the "Software"), to deal - in the Software without restriction, including without limitation the rights - to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - copies of the Software, and to permit persons to whom the Software is - furnished to do so, subject to the following conditions: - . - The above copyright notice and this permission notice shall be included in - all copies or substantial portions of the Software. - . - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS - OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL - THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING - FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER - DEALINGS IN THE SOFTWARE. - -License: BSD-3-clause-with-weird-numbering - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - 4. Neither the name of the University nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - . - THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND - ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -License: BSD-4-clause-POWERDOG - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer - in the documentation and/or other materials provided with the - distribution. - 3. All advertising materials mentioning features or use of this - software must display the following acknowledgement: - This product includes software developed by Powerdog Industries. - 4. The name of Powerdog Industries may not be used to endorse or - promote products derived from this software without specific prior - written permission. - . - THIS SOFTWARE IS PROVIDED BY POWERDOG INDUSTRIES ``AS IS'' AND ANY - EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE POWERDOG INDUSTRIES BE - LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR - BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, - WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE - OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, - EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -License: Unicode - EXHIBIT 1 - UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE - . - Unicode Data Files include all data files under the directories - http://www.unicode.org/Public/, http://www.unicode.org/reports/, - and http://www.unicode.org/cldr/data/ . Unicode Data Files - do not include PDF online code charts under the directory - http://www.unicode.org/Public/. Software includes any - source code published in the Unicode Standard or under the directories - http://www.unicode.org/Public/, http://www.unicode.org/reports/, - and http://www.unicode.org/cldr/data/. - . - NOTICE TO USER: Carefully read the following legal agreement. BY - DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING UNICODE - INC.'S DATA FILES ("DATA FILES"), AND/OR SOFTWARE ("SOFTWARE"), YOU - UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE TERMS AND - CONDITIONS OF THIS AGREEMENT. IF YOU DO NOT AGREE, DO NOT DOWNLOAD, - INSTALL, COPY, DISTRIBUTE OR USE THE DATA FILES OR SOFTWARE. - . - COPYRIGHT AND PERMISSION NOTICE - . - Copyright © 1991-2011 Unicode, Inc. All rights - reserved. Distributed under the Terms of Use in - http://www.unicode.org/copyright.html. - . - Permission is hereby granted, free of charge, to any person - obtaining a copy of the Unicode data files and any associated - documentation (the "Data Files") or Unicode software and any - associated documentation (the "Software") to deal in the Data Files - or Software without restriction, including without limitation - the rights to use, copy, modify, merge, publish, distribute, - and/or sell copies of the Data Files or Software, and to permit - persons to whom the Data Files or Software are furnished to do so, - provided that (a) the above copyright notice(s) and this permission - notice appear with all copies of the Data Files or Software, - (b) both the above copyright notice(s) and this permission notice - appear in associated documentation, and (c) there is clear notice - in each modified Data File or in the Software as well as in the - documentation associated with the Data File(s) or Software that - the data or software has been modified. - . - THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY - OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE - WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE - AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE - COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE LIABLE - FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, - OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR - PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER - TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR - PERFORMANCE OF THE DATA FILES OR SOFTWARE. - . - Except as contained in this notice, the name of a copyright holder - shall not be used in advertising or otherwise to promote the sale, - use or other dealings in these Data Files or Software without - prior written authorization of the copyright holder. - -License: BSD-3-clause-GENERIC - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - 3. The names of the authors may not be used to endorse or promote - products derived from this software without specific prior written - permission. - . - THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND - ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -License: BSD-3-clause - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - 3. Neither the name of the University nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - . - THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND - ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -License: REGCOMP - Permission is granted to anyone to use this software for any - purpose on any computer system, and to redistribute it freely, - subject to the following restrictions: - . - 1. The author is not responsible for the consequences of use of - this software, no matter how awful, even if they arise - from defects in it. - . - 2. The origin of this software must not be misrepresented, either - by explicit claim or by omission. - . - 3. Altered versions must be plainly marked as such, and must not - be misrepresented as being the original software. - -License: TEXT-TABS - This module may be modified, used, copied, and redistributed at your own risk. - . - Although allowed by the preceding license, please do not publicly - redistribute modified versions of this code with the name "Text::Tabs" - unless it passes the unmodified Text::Tabs test suite. - -License: S2P - This program is free and open software. You may use, modify, - distribute, and sell this program (and any modified variants) in any - way you wish, provided you do not restrict others from doing the same. - -License: DONT-CHANGE-THE-GPL - Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed. - -License: SDBM-PUBLIC-DOMAIN - From ext/SDBM_File/sdbm/README: - . - The entire sdbm library package, as authored by me, Ozan S. Yigit, - is hereby placed in the public domain. As such, the author is not - responsible for the consequences of use of this software, no - matter how awful, even if they arise from defects in it. There is no - expressed or implied warranty for the sdbm library. - . - Since the sdbm library package is in the public domain, this original - release or any additional public-domain releases of the modified - original cannot possibly (by definition) be withheld from you. Also - by definition, You (singular) have all the rights to this code - (including the right to sell without permission, the right to - hoard[3] and the right to do other icky things as you see fit) - but those rights are also granted to everyone else. - . - Please note that all previous distributions of this software - contained a copyright (which is now dropped) to protect its origins - and its current public domain status against any possible claims - and/or challenges. - -License: GPL-3+-WITH-BISON-EXCEPTION - 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 3 of the License, or - (at your option) any later version. - . - 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. - . - You should have received a copy of the GNU General Public License - along with this program. If not, see . - . - As a special exception, you may create a larger work that contains - part or all of the Bison parser skeleton and distribute that work - under terms of your choice, so long as that work isn't itself a - parser generator using the skeleton or a modified version thereof - as a parser skeleton. Alternatively, if you modify or redistribute - the parser skeleton itself, you may (at your option) remove this - special exception, which will cause the skeleton and the resulting - Bison output files to be licensed under the GNU General Public - License without this special exception. - . - This special exception was added by the Free Software Foundation in - version 2.2 of Bison. - -License: HSIEH-DERIVATIVE - The derivative content includes raw computer source code, ideas, - opinions, and excerpts whose original source is covered under another - license and transformations of such derivatives. Note that mere excerpts - by themselves (with the exception of raw source code) are not considered - derivative works under this license. Use and redistribution is limited - to the following conditions: - . - One may not create a derivative work which, in any way, violates the - Paul Hsieh exposition license described above on the original content. - . - One may not apply a license to a derivative work that precludes - anyone else from using and redistributing derivative content. - . - One may not attribute any derivative content to authors not involved - in the creation of the content, though an attribution to the author - is not necessary. - -License: HSIEH-BSD - Copyright (c) 2010, Paul Hsieh - All rights reserved. - . - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - . - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - . - Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - . - Neither my name, Paul Hsieh, nor the names of any other contributors - to the code use may not be used to endorse or promote products - derived from this software without specific prior written permission. - . - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT - OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -License: CC0-1.0 - Statatement of Purpose - . - 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"). - . - 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. - . - 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. - . - 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: - . - the right to reproduce, adapt, distribute, perform, display, - communicate, and translate a Work; - . - moral rights retained by the original author(s) and/or performer(s); - . - publicity and privacy rights pertaining to a person's image or - likeness depicted in a Work; - . - rights protecting against unfair competition in regards to a Work, - subject to the limitations in paragraph 4(a), below; - . - rights protecting the extraction, dissemination, use and reuse of data in a Work; - . - 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 - . - other similar, equivalent or corresponding rights throughout the world - based on applicable law or treaty, and any national implementations - thereof. - . - 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. - . - 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. - . - 4. Limitations and Disclaimers. - . - No trademark or patent rights held by Affirmer are waived, - abandoned, surrendered, licensed or otherwise affected by this - document. - . - 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. - . - 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. - . - 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. -Comment: - This license text was retrieved from - - on Fri, 05 Feb 2016 20:30:28 +0200 - -License: RRA-KEEP-THIS-NOTICE - Copying and distribution of this file, with or without modification, are - permitted in any medium without royalty provided the copyright notice and - this notice are preserved. This file is offered as-is, without any - warranty. - -License: Artistic-dist - The "Artistic License" - . - Preamble - . - The intent of this document is to state the conditions under which a - Package may be copied, such that the Copyright Holder maintains some - semblance of artistic control over the development of the Package, - while giving the users of the package the right to use and distribute - the Package in a more-or-less customary fashion, plus the right to make - reasonable modifications. - . - It also grants you the rights to reuse parts of a Package in your own - programs without transferring this License to those programs, provided - that you meet some reasonable requirements. - . - Definitions: - . - "Package" refers to the collection of files distributed by the - Copyright Holder, and derivatives of that collection of files - created through textual modification. - . - "Standard Version" refers to such a Package if it has not been - modified, or has been modified in accordance with the wishes - of the Copyright Holder as specified below. - . - "Copyright Holder" is whoever is named in the copyright or - copyrights for the package. - . - "You" is you, if you're thinking about copying or distributing - this Package. - . - "Reasonable copying fee" is whatever you can justify on the - basis of media cost, duplication charges, time of people involved, - and so on. (You will not be required to justify it to the - Copyright Holder, but only to the computing community at large - as a market that must bear the fee.) - . - "Freely Available" means that no fee is charged for the item - itself, though there may be fees involved in handling the item. - It also means that recipients of the item may redistribute it - under the same conditions they received it. - . - 1. You may make and give away verbatim copies of the source form of the - Standard Version of this Package without restriction, provided that you - duplicate all of the original copyright notices and associated disclaimers. - . - 2. You may apply bug fixes, portability fixes and other modifications - derived from the Public Domain or from the Copyright Holder. A Package - modified in such a way shall still be considered the Standard Version. - . - 3. You may otherwise modify your copy of this Package in any way, provided - that you insert a prominent notice in each changed file stating how and - when you changed that file, and provided that you do at least ONE of the - following: - . - a) place your modifications in the Public Domain or otherwise make them - Freely Available, such as by posting said modifications to Usenet or - an equivalent medium, or placing the modifications on a major archive - site such as uunet.uu.net, or by allowing the Copyright Holder to include - your modifications in the Standard Version of the Package. - . - b) use the modified Package only within your corporation or organization. - . - c) rename any non-standard executables so the names do not conflict - with standard executables, which must also be provided, and provide - a separate manual page for each non-standard executable that clearly - documents how it differs from the Standard Version. - . - d) make other distribution arrangements with the Copyright Holder. - . - 4. You may distribute the programs of this Package in object code or - executable form, provided that you do at least ONE of the following: - . - a) distribute a Standard Version of the executables and library files, - together with instructions (in the manual page or equivalent) on where - to get the Standard Version. - . - b) accompany the distribution with the machine-readable source of - the Package with your modifications. - . - c) give non-standard executables non-standard names, and clearly - document the differences in manual pages (or equivalent), together - with instructions on where to get the Standard Version. - . - d) make other distribution arrangements with the Copyright Holder. - . - 5. You may charge a reasonable copying fee for any distribution of this - Package. You may charge any fee you choose for support of this - Package. You may not charge a fee for this Package itself. However, - you may distribute this Package in aggregate with other (possibly - commercial) programs as part of a larger (possibly commercial) software - distribution provided that you do not advertise this Package as a - product of your own. - . - 6. The scripts and library files supplied as input to or produced as - output from the programs of this Package do not automatically fall - under the copyright of this Package, but belong to whoever generated - them, and may be sold commercially, and may be aggregated with this - Package. If such scripts or library files are aggregated with this - Package via the so-called "undump" or "unexec" methods of producing a - binary executable image, then distribution of such an image shall - neither be construed as a distribution of this Package nor shall it - fall under the restrictions of Paragraphs 3 and 4, provided that you do - not represent such an executable image as a Standard Version of this - Package. - . - 7. You may reuse parts of this Package in your own programs, provided that - you explicitly state where you got them from, in the source code (and, left - to your courtesy, in the documentation), duplicating all the associated - copyright notices and disclaimers. Besides your changes, if any, must be - clearly marked as such. Parts reused that way will no longer fall under this - license if, and only if, the name of your program(s) have no immediate - connection with the name of the Package itself or its associated programs. - You may then apply whatever restrictions you wish on the reused parts or - choose to place them in the Public Domain--this will apply only within the - context of your package. - . - 8. The name of the Copyright Holder may not be used to endorse or promote - products derived from this software without specific prior written permission. - . - 9. THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR - IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED - WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. - . - The End -Comment: - This license was copied from the upstream 'dist' repository, - https://github.com/rmanfredi/dist.git - at Sun, 15 Oct 2017 13:07:36 +0300. - - ----------------------------------------- -sed version 4.7-1 - - -Copyright: - -This is the Debian GNU/Linux prepackaged version of sed - the GNU stream -oriented editor. - -This package was assembled from sources obtained from: - ftp://ftp.gnu.org/gnu/sed/ - -It is currently maintained by Clint Adams - -Copyright: 1989,90,91,92,93,94,95,98,99,2002,2003,2006,2008,2009,2010 Free Software Foundation, Inc. - -GNU sed 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 3, or (at your option) any later -version. - -On Debian GNU/Linux systems you can find a copy of the GPL in -/usr/share/common-licenses/GPL-3 - -The sed info manual is released under the terms of the GNU Free -Documentation License as published by the Free Software Foundation; -either version 1.3, or (at your option) any later version. - - ----------------------------------------- -sysvinit-utils version 2.93-8 - - -Copyright: - -Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ -Upstream-Name: sysvinit -Upstream-Contact: sysvinit-devel@nongnu.org -Source: https://download.savannah.gnu.org/releases/sysvinit/ - -Files: * -Copyright: 1997-2005 Miquel van Smoorenburg -License: GPL-2+ - -Files: debian/* -License: GPL-2+ -Copyright: 2015 Adam Conrad - 2018 Dmitry Bogatov - 2018 Vincenzo (KatolaZ) Nicosia - 2006 Henrique de Moraes Holschuh - 2017 Ian Jackson - 2014 Petter Reinholdtsen - 2014 Robert Millan - 2014 Thomas Goirand - 2006 Thomas Hood - 2015-2016 Andreas Henriksson - 2011,2016 Ben Hutchings - 2010-2012 Christian Perrier - 2015-2016 Martin Pitt - 2014-2018 Michael Biebl - 1996-2004 Miquel van Smoorenburg - 2005-2006 Petter Reinholdtsen - 2006-2010 Petter Reinholdtsen - 2011-2013 Roger Leigh - 2006-2007 Steinar H. Gunderson - 2012-2013 Steve Langasek - -License: GPL-2+ - 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. - . - 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. - . - You should have received a copy of the GNU General Public License - along with this program. If not, see . - . - On Debian system, copy of GNU Lesser General Public License version 2 - is also located at `/usr/share/common-licenses/GPL-2' - - ----------------------------------------- -tar version 1.30+dfsg-6 - - -Copyright: - -This is the Debian GNU/Linux prepackaged version of GNU tar. GNU -tar, heavily based on John Gilmore's public domain version of tar, -was originally written by Graham Todd. It is now maintained by -Paul Eggert . - -This package is maintained for Debian by Bdale Garbee , and -was built from the sources found at: - - ftp://ftp.gnu.org/gnu/tar/ - -More recently, I'm directly using the upstream source repository at - - http://git.savannah.gnu.org/cgit/tar.git - -GNU tar is - - Copyright (C) 1988, 1992, 1993, 1994, 1995, 1996, 1997, 1999, 2000, - 2001, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc. - - 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 3, or (at your option) any later - version. - -On Debian GNU/Linux systems, the complete text of the GNU General Public -License version 3 can be found in /usr/share/common-licenses/GPL-3. - -The Debian packaging is - - Copyright (C) 2006, 2007 Bdale Garbee - - 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, or (at your option) any later - version. - -On Debian GNU/Linux systems, the complete text of the GNU General Public -License version 2 can be found in /usr/share/common-licenses/GPL-2. - - ----------------------------------------- -tzdata version 2020a-0+deb10u1 - - -Copyright: - -This is the Debian prepackaged version of the Time Zone and Daylight -Saving Time Data. - -It was downloaded from https://www.iana.org/time-zones - -Upstream Author: The Internet Assigned Numbers Authority (IANA) -Commentary should be addressed to tz@iana.org - -Copyright: This database is in the public domain. - - - ----------------------------------------- -util-linux version 2.33.1-0.1 - - -Copyright: - -Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ -Upstream-Name: util-linux -Upstream-Contact: util-linux@vger.kernel.org -Source: https://www.kernel.org/pub/linux/utils/util-linux/ - -Files: * -Copyright: Michal Luscon - 1986 Gary S. Brown - 1990 Gordon Irlam (gordoni@cs.ua.oz.au) - 1991, 1992 Linus Torvalds - 1991-2004 Miquel van Smoorenburg - 1992 A. V. Le Blanc (LeBlanc@mcc.ac.uk) - 1992-1997 Michael K. Johnson, johnsonm@redhat.com - 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, - 2003, 2004, 2005, 2008 Theodore Ts'o - 1994 Kevin E. Martin (martin@cs.unc.edu) - 1994 Salvatore Valente - 1994,1996 Alessandro Rubini (rubini@ipvvis.unipv.it) - 1994-2005 Jeff Tranter (tranter@pobox.com) - 1995, 1999, 2000 Andries E. Brouwer - 1997-2005 Frodo Looijaard - 1998 Danek Duvall - 1999 Andreas Dilger - 1999-2002 Transmeta Corporation - 1999, 2000, 2002-2009, 2010, 2011, 2012, 2014 Red Hat, Inc. - 2000 Werner Almesberger - 2004-2006 Michael Holzt, kju -at- fqdn.org - 2005 Adrian Bunk - 2007-2014 Karel Zak - 2007, 2011 SuSE LINUX Products GmbH - 2008 Cai Qian - 2008 Hayden A. James (hayden.james@gmail.com) - 2008 James Youngman - 2008 Roy Peled, the.roy.peled -at- gmail.com - 2009 Mikhail Gusarov - 2010, 2011, 2012 Davidlohr Bueso - 2010 Jason Borden A - 2010 Hajime Taira - 2010 Masatake Yamato - 2011 IBM Corp. - 2012 Andy Lutomirski - 2012 Lennart Poettering - 2012 Sami Kerola - 2012 Cody Maloney - 2012 Werner Fink - 2013,2014 Ondrej Oprala -License: GPL-2+ - -Files: schedutils/ionice.c -Copyright: 2005 Jens Axboe -License: GPL-2 - -Files: schedutils/chrt.c - schedutils/taskset.c -Copyright: 2004 Robert Love - 2010 Karel Zak -License: GPL-2 - -Files: disk-utils/raw.c -Copyright: 1999, 2000, Red Hat Software -License: GPL-2 - -Files: sys-utils/nsenter.c -Copyright: 2012-2013 Eric Biederman -License: GPL-2 - -Files: disk-utils/mkfs.minix.c - disk-utils/mkswap.c -Copyright: 1991, 1992 Linus Torvalds -License: GPL-2 - -Files: lib/at.c - lib/blkdev.c - lib/loopdev.c - lib/sysfs.c - lib/ttyutils.c - lib/xgetpass.c - misc-utils/mcookie.c - sys-utils/setsid.c - text-utils/line.c -Copyright: n/a -License: public-domain - -Files: login-utils/vipw.c - misc-utils/cal.c - misc-utils/kill.c - misc-utils/logger.c - misc-utils/look.c - misc-utils/whereis.c - sys-utils/renice.c - term-utils/mesg.c - term-utils/script.c - term-utils/ttymsg.c - term-utils/wall.c - term-utils/write.c - text-utils/col.c - text-utils/colcrt.c - text-utils/colrm.c - text-utils/column.c - text-utils/hexdump.c - text-utils/hexdump.h - text-utils/hexdump-conv.c - text-utils/hexdump-display.c - text-utils/hexdump-parse.c - text-utils/rev.c - text-utils/ul.c -Copyright: 1980, 1983, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994 - The Regents of the University of California - 2014 Sami Kerola - 2014 Karel Zak -License: BSD-4-clause - -Files: text-utils/tailf.c -Copyright: 1996, 2003 Rickard E. Faith (faith@acm.org) -License: MIT - -Files: sys-utils/flock.c -Copyright: 2003-2005 H. Peter Anvin -License: MIT - -Files: text-utils/pg.c -Copyright: 2000-2001 Gunnar Ritter -License: BSD-2-clause - -Files: login-utils/last-deprecated.c -Copyright: 1987 Regents of the University of California -License: BSD-2-clause - -Files: login-utils/login.c -Copyright: 1980, 1987, 1988 The Regents of the University of California. - 2011 Karel Zak -License: BSD-2-clause - -Files: login-utils/logindefs.c -Copyright: 2003, 2004, 2005 Thorsten Kukuk -License: BSD-3-clause - -Files: libuuid/* - libuuid/src/* - libuuid/man/* -Copyright: 1996, 1997, 1998, 1999, 2007 Theodore Ts'o. - 1999 Andreas Dilger (adilger@enel.ucalgary.ca) -License: BSD-3-clause - -Files: lib/procutils.c - include/xalloc.h -Copyright: 2010, 2011 Davidlohr Bueso -License: LGPL-2+ - -Files: */colors.* -Copyright: 2012 Ondrej Oprala - 2012-2014 Karel Zak -License: LGPL-2+ - -Files: login-utils/setpwnam.h - login-utils/setpwnam.c -Copyright: 1994 Martin Schulze - 1994 Salvatore Valente -License: LGPL-2+ - -Files: libfdisk/* - libfdisk/src/* -Copyright: 2007-2013 Karel Zak - 2012 Davidlohr Bueso -License: LGPL-2.1+ - -Files: lib/cpuset.c - */match.* - lib/canonicalize.c - include/at.h -Copyright: 2008-2009, 2010, 2011, 2012 Karel Zak -License: LGPL-2.1+ - -Files: */mbsalign.* -Copyright: 2009-2010 Free Software Foundation, Inc. - 2010-2013 Karel Zak -License: LGPL-2.1+ - -Files: */readutmp.* -Copyright: 1992-2007, 2009-2014 Free Software Foundation, Inc. -License: GPL-3+ - -Files: */timeutils.* -Copyright: 2010 Lennart Poettering -License: LGPL-2.1+ - -Files: include/list.h -Copyright: 2008 Karel Zak - 1999-2008 by Theodore Ts'o -License: LGPL - -Files: libblkid/* - libblkid/src/* - libblkid/samples/* - libblkid/src/partitions/* - libblkid/src/superblocks/* - libblkid/src/topology/* -Copyright: 1999, 2001 Andries Brouwer - 1995, 1995, 1996, 1997, 1999, 2000, 2001, 2002, 2003, 2004 - Theodore Ts'o. - 2001 Andreas Dilger (adilger@turbolinux.com) - 2004-2008 Kay Sievers - 2008-2013 Karel Zak - 2009 Bastian Friedrich - 2009 Corentin Chary - 2009 Mike Hommey - 2009 Red Hat, Inc. - 2009-2010 Andreas Dilger - 2010 Andrew Nayenko - 2010 Jeroen Oortwijn - 2010 Jiro SEKIBA - 2011 Philipp Marek - 2012 Milan Broz - 2013 Alejandro Martinez Ruiz - 2013 Eric Sandeen - 2013 Rolf Fokkens - 2013 Zeeshan Ali (Khattak) -License: LGPL-2.1+ - -Files: include/cpuset.h - lib/randutils.c -Copyright: *unknown* -License: LGPL - -Files: misc-utils/blkid.c -Copyright: 2001 Andreas Dilger -License: LGPL - -Files: libmount/* - libmount/src/* -Copyright: 2008-2012 Karel Zak -License: LGPL-2.1+ - -Files: libmount/python/* -Copyright: 2013, Red Hat, Inc. -License: LGPL-3+ - -Files: libsmartcols/* -Copyright: 2009-2014 Karel Zak - 2014 Ondrej Oprala -License: LGPL - -Files: debian/* -Copyright: Guy Maor - Sean 'Shaleh' Perry - Adrian Bunk - LaMont Jones - 2014 Andreas Henriksson -License: GPL-2+ - - -License: public-domain - The files tagged with this license contains the following paragraphs: - . - No copyright is claimed. This code is in the public domain; do with - it what you wish. - . - Written by Karel Zak - -License: GPL-2 - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License, v2, as - published by the Free Software Foundation - . - 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. - . - 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. - . - On Debian systems, the complete text of the GNU General Public - License version 2 can be found in `/usr/share/common-licenses/GPL-2'. - -License: GPL-2+ - 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. - . - 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. - . - 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. - . - On Debian systems, the complete text of the GNU General Public - License version 2 can be found in `/usr/share/common-licenses/GPL-2'. - -License: GPL-3+ - 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 3 of the License, or - (at your option) any later version. - . - 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. - . - You should have received a copy of the GNU General Public License - along with this program. If not, see . - . - On Debian systems, the complete text of the GNU General Public - License version 3 can be found in `/usr/share/common-licenses/GPL-3'. - -License: BSD-2-clause - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - -License: BSD-3-clause - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are met: - . - 1) Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. - . - 2) Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. - . - 3) Neither the name of the ORGANIZATION nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - . - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE - LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - POSSIBILITY OF SUCH DAMAGE. - -License: BSD-4-clause - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - 3. All advertising materials mentioning features or use of this software - must display the following acknowledgement: - This product includes software developed by the University of - California, Berkeley and its contributors. - 4. Neither the name of the University nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - . - THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND - ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -License: LGPL - This file may be redistributed under the terms of the - GNU Lesser General Public License. - . - On Debian systems, the complete text of the GNU Lesser General Public - License can be found in ‘/usr/share/common-licenses/LGPL’. - -License: LGPL-2+ - This program is free software: you can redistribute it and/or modify - it under the terms of the GNU Lesser General Public License as published by - the Free Software Foundation, either version 2 of the License, or - (at your option) any later version. - . - 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 Lesser General Public License for more details. - . - You should have received a copy of the GNU Lesser General Public License - along with this program. If not, see . - . - The complete text of the GNU Lesser General Public License - can be found in /usr/share/common-licenses/LGPL-2 file. - -License: LGPL-2.1+ - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU Lesser General Public License as published by - the Free Software Foundation; either version 2.1, or (at your option) - any later version. - . - 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 Lesser General Public License for more details. - . - You should have received a copy of the GNU Lesser 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. - . - On Debian systems, the complete text of the GNU Lesser General Public - License version 2.1 can be found in ‘/usr/share/common-licenses/LGPL-2.1’. - -License: LGPL-3+ - This package is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 3 of the License, or (at your option) any later version. - . - This package 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 - Lesser General Public License for more details. - . - You should have received a copy of the GNU General Public License - along with this program. If not, see . - . - On Debian systems, the complete text of the GNU Lesser General - Public License can be found in "/usr/share/common-licenses/LGPL-3". - -License: MIT - Permission is hereby granted, free of charge, to any person - obtaining a copy of this software and associated documentation files - (the "Software"), to deal in the Software without restriction, - including without limitation the rights to use, copy, modify, merge, - publish, distribute, sublicense, and/or sell copies of the Software, - and to permit persons to whom the Software is furnished to do so, - subject to the following conditions: - . - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - . - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS - BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN - ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN - CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - SOFTWARE. - - - ----------------------------------------- -zlib1g version 1:1.2.11.dfsg-1 - - -Copyright: - -Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ -Upstream-Name: zlib -Upstream-Contact: zlib@gzip.org -Source: http://zlib.net/ -Comment: This is the pre-packaged Debian Linux version of the zlib compression - library. It was packaged by Michael Alan Dorman - from sources originally retrieved from ftp.uu.net in the directory - /pub/archiving/zip/zlib as the file zlib-1.0.4.tar.gz. - . - The deflate format used by zlib was defined by Phil Katz. The deflate - and zlib specifications were written by Peter Deutsch. Thanks to all the - people who reported problems and suggested various improvements in zlib; - they are too numerous to cite here. -Files-Excluded: - contrib/ada - contrib/amd64 - contrib/asm686 - contrib/blast - contrib/delphi - contrib/dotzlib - contrib/gcc_gvmat64 - contrib/infback9 - contrib/inflate86 - contrib/iostream - contrib/iostream2 - contrib/iostream3 - contrib/masmx64 - contrib/masmx86 - contrib/pascal - contrib/puff - contrib/testzlib - contrib/untgz - contrib/vstudio - doc/rfc1950.txt - doc/rfc1951.txt - doc/rfc1952.txt - -Files: * -Copyright: 1995-2013 Jean-loup Gailly and Mark Adler -License: Zlib - -Files: amiga/Makefile.pup -Copyright: 1998 by Andreas R. Kleinert -License: Zlib - -Files: contrib/minizip/* -Copyright: 1998-2010 Gilles Vollant - 2007-2008 Even Rouault - 2009-2010 Mathias Svensson -License: Zlib - -Files: debian/* -Copyright: 2000-2017 Mark Brown -License: Zlib - -License: Zlib - This software is provided 'as-is', without any express or implied - warranty. In no event will the authors be held liable for any damages - arising from the use of this software. - . - Permission is granted to anyone to use this software for any purpose, - including commercial applications, and to alter it and redistribute it - freely, subject to the following restrictions: - . - 1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. - 2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. - 3. This notice may not be removed or altered from any source distribution. - . - Jean-loup Gailly Mark Adler - jloup@gzip.org madler@alumni.caltech.edu - . - If you use the zlib library in a product, we would appreciate *not* receiving - lengthy legal documents to sign. The sources are provided for free but without - warranty of any kind. The library has been entirely written by Jean-loup - Gailly and Mark Adler; it does not include third-party code. - . - If you redistribute modified sources, we would appreciate that you include in - the file ChangeLog history information documenting your changes. Please read - the FAQ for more information on the distribution of modified source versions. - - ----------------------------------------- -ca-certificates version 20200601~deb10u1 - - -Copyright: - -Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ -Source: http://ftp.debian.org/debian/pool/main/c/ca-certificates/ - -Files: debian/* - examples/* - Makefile - mozilla/* - sbin/* -Copyright: 2003 Fumitoshi UKAI - 2009 Philipp Kern - 2011 Michael Shuler - Various Debian Contributors -License: GPL-2+ - 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. - . - 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. - . - 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 St, Fifth Floor, Boston, MA 02110-1301, - USA. - . - On Debian GNU/Linux systems, the complete text of the GNU General Public - License can be found in '/usr/share/common-licenses/GPL-2'. - -Files: mozilla/certdata.txt - mozilla/nssckbi.h -Copyright: Mozilla Contributors -Comment: Original Copyright: 1994-2000 Netscape Communications Corporation - (certdata.txt <= CVS Revision: 1.82) - NSS no longer contains explicit copyright. Upstream indicates - that "Mozilla Contributors" is an appropriate attibution for the - required Copyright: field in Debian's machine-readable format. - https://bugzilla.mozilla.org/show_bug.cgi?id=850003 -License: MPL-2.0 - Mozilla Public License Version 2.0 - ================================== - . - 1. Definitions - -------------- - . - 1.1. "Contributor" - means each individual or legal entity that creates, contributes to - the creation of, or owns Covered Software. - . - 1.2. "Contributor Version" - means the combination of the Contributions of others (if any) used - by a Contributor and that particular Contributor's Contribution. - . - 1.3. "Contribution" - means Covered Software of a particular Contributor. - . - 1.4. "Covered Software" - means Source Code Form to which the initial Contributor has attached - the notice in Exhibit A, the Executable Form of such Source Code - Form, and Modifications of such Source Code Form, in each case - including portions thereof. - . - 1.5. "Incompatible With Secondary Licenses" - means - . - (a) that the initial Contributor has attached the notice described - in Exhibit B to the Covered Software; or - . - (b) that the Covered Software was made available under the terms of - version 1.1 or earlier of the License, but not also under the - terms of a Secondary License. - . - 1.6. "Executable Form" - means any form of the work other than Source Code Form. - . - 1.7. "Larger Work" - means a work that combines Covered Software with other material, in - a separate file or files, that is not Covered Software. - . - 1.8. "License" - means this document. - . - 1.9. "Licensable" - means having the right to grant, to the maximum extent possible, - whether at the time of the initial grant or subsequently, any and - all of the rights conveyed by this License. - . - 1.10. "Modifications" - means any of the following: - . - (a) any file in Source Code Form that results from an addition to, - deletion from, or modification of the contents of Covered - Software; or - . - (b) any new file in Source Code Form that contains any Covered - Software. - . - 1.11. "Patent Claims" of a Contributor - means any patent claim(s), including without limitation, method, - process, and apparatus claims, in any patent Licensable by such - Contributor that would be infringed, but for the grant of the - License, by the making, using, selling, offering for sale, having - made, import, or transfer of either its Contributions or its - Contributor Version. - . - 1.12. "Secondary License" - means either the GNU General Public License, Version 2.0, the GNU - Lesser General Public License, Version 2.1, the GNU Affero General - Public License, Version 3.0, or any later versions of those - licenses. - . - 1.13. "Source Code Form" - means the form of the work preferred for making modifications. - . - 1.14. "You" (or "Your") - means an individual or a legal entity exercising rights under this - License. For legal entities, "You" includes any entity that - controls, is controlled by, or is under common control with You. For - purposes of this definition, "control" means (a) the power, direct - or indirect, to cause the direction or management of such entity, - whether by contract or otherwise, or (b) ownership of more than - fifty percent (50%) of the outstanding shares or beneficial - ownership of such entity. - . - 2. License Grants and Conditions - -------------------------------- - . - 2.1. Grants - . - Each Contributor hereby grants You a world-wide, royalty-free, - non-exclusive license: - . - (a) under intellectual property rights (other than patent or trademark) - Licensable by such Contributor to use, reproduce, make available, - modify, display, perform, distribute, and otherwise exploit its - Contributions, either on an unmodified basis, with Modifications, or - as part of a Larger Work; and - . - (b) under Patent Claims of such Contributor to make, use, sell, offer - for sale, have made, import, and otherwise transfer either its - Contributions or its Contributor Version. - . - 2.2. Effective Date - . - The licenses granted in Section 2.1 with respect to any Contribution - become effective for each Contribution on the date the Contributor first - distributes such Contribution. - . - 2.3. Limitations on Grant Scope - . - The licenses granted in this Section 2 are the only rights granted under - this License. No additional rights or licenses will be implied from the - distribution or licensing of Covered Software under this License. - Notwithstanding Section 2.1(b) above, no patent license is granted by a - Contributor: - . - (a) for any code that a Contributor has removed from Covered Software; - or - . - (b) for infringements caused by: (i) Your and any other third party's - modifications of Covered Software, or (ii) the combination of its - Contributions with other software (except as part of its Contributor - Version); or - . - (c) under Patent Claims infringed by Covered Software in the absence of - its Contributions. - . - This License does not grant any rights in the trademarks, service marks, - or logos of any Contributor (except as may be necessary to comply with - the notice requirements in Section 3.4). - . - 2.4. Subsequent Licenses - . - No Contributor makes additional grants as a result of Your choice to - distribute the Covered Software under a subsequent version of this - License (see Section 10.2) or under the terms of a Secondary License (if - permitted under the terms of Section 3.3). - . - 2.5. Representation - . - Each Contributor represents that the Contributor believes its - Contributions are its original creation(s) or it has sufficient rights - to grant the rights to its Contributions conveyed by this License. - . - 2.6. Fair Use - . - This License is not intended to limit any rights You have under - applicable copyright doctrines of fair use, fair dealing, or other - equivalents. - . - 2.7. Conditions - . - Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted - in Section 2.1. - . - 3. Responsibilities - ------------------- - . - 3.1. Distribution of Source Form - . - All distribution of Covered Software in Source Code Form, including any - Modifications that You create or to which You contribute, must be under - the terms of this License. You must inform recipients that the Source - Code Form of the Covered Software is governed by the terms of this - License, and how they can obtain a copy of this License. You may not - attempt to alter or restrict the recipients' rights in the Source Code - Form. - . - 3.2. Distribution of Executable Form - . - If You distribute Covered Software in Executable Form then: - . - (a) such Covered Software must also be made available in Source Code - Form, as described in Section 3.1, and You must inform recipients of - the Executable Form how they can obtain a copy of such Source Code - Form by reasonable means in a timely manner, at a charge no more - than the cost of distribution to the recipient; and - . - (b) You may distribute such Executable Form under the terms of this - License, or sublicense it under different terms, provided that the - license for the Executable Form does not attempt to limit or alter - the recipients' rights in the Source Code Form under this License. - . - 3.3. Distribution of a Larger Work - . - You may create and distribute a Larger Work under terms of Your choice, - provided that You also comply with the requirements of this License for - the Covered Software. If the Larger Work is a combination of Covered - Software with a work governed by one or more Secondary Licenses, and the - Covered Software is not Incompatible With Secondary Licenses, this - License permits You to additionally distribute such Covered Software - under the terms of such Secondary License(s), so that the recipient of - the Larger Work may, at their option, further distribute the Covered - Software under the terms of either this License or such Secondary - License(s). - . - 3.4. Notices - . - You may not remove or alter the substance of any license notices - (including copyright notices, patent notices, disclaimers of warranty, - or limitations of liability) contained within the Source Code Form of - the Covered Software, except that You may alter any license notices to - the extent required to remedy known factual inaccuracies. - . - 3.5. Application of Additional Terms - . - You may choose to offer, and to charge a fee for, warranty, support, - indemnity or liability obligations to one or more recipients of Covered - Software. However, You may do so only on Your own behalf, and not on - behalf of any Contributor. You must make it absolutely clear that any - such warranty, support, indemnity, or liability obligation is offered by - You alone, and You hereby agree to indemnify every Contributor for any - liability incurred by such Contributor as a result of warranty, support, - indemnity or liability terms You offer. You may include additional - disclaimers of warranty and limitations of liability specific to any - jurisdiction. - . - 4. Inability to Comply Due to Statute or Regulation - --------------------------------------------------- - . - If it is impossible for You to comply with any of the terms of this - License with respect to some or all of the Covered Software due to - statute, judicial order, or regulation then You must: (a) comply with - the terms of this License to the maximum extent possible; and (b) - describe the limitations and the code they affect. Such description must - be placed in a text file included with all distributions of the Covered - Software under this License. Except to the extent prohibited by statute - or regulation, such description must be sufficiently detailed for a - recipient of ordinary skill to be able to understand it. - . - 5. Termination - -------------- - . - 5.1. The rights granted under this License will terminate automatically - if You fail to comply with any of its terms. However, if You become - compliant, then the rights granted under this License from a particular - Contributor are reinstated (a) provisionally, unless and until such - Contributor explicitly and finally terminates Your grants, and (b) on an - ongoing basis, if such Contributor fails to notify You of the - non-compliance by some reasonable means prior to 60 days after You have - come back into compliance. Moreover, Your grants from a particular - Contributor are reinstated on an ongoing basis if such Contributor - notifies You of the non-compliance by some reasonable means, this is the - first time You have received notice of non-compliance with this License - from such Contributor, and You become compliant prior to 30 days after - Your receipt of the notice. - . - 5.2. If You initiate litigation against any entity by asserting a patent - infringement claim (excluding declaratory judgment actions, - counter-claims, and cross-claims) alleging that a Contributor Version - directly or indirectly infringes any patent, then the rights granted to - You by any and all Contributors for the Covered Software under Section - 2.1 of this License shall terminate. - . - 5.3. In the event of termination under Sections 5.1 or 5.2 above, all - end user license agreements (excluding distributors and resellers) which - have been validly granted by You or Your distributors under this License - prior to termination shall survive termination. - . - ************************************************************************ - * * - * 6. Disclaimer of Warranty * - * ------------------------- * - * * - * Covered Software is provided under this License on an "as is" * - * basis, without warranty of any kind, either expressed, implied, or * - * statutory, including, without limitation, warranties that the * - * Covered Software is free of defects, merchantable, fit for a * - * particular purpose or non-infringing. The entire risk as to the * - * quality and performance of the Covered Software is with You. * - * Should any Covered Software prove defective in any respect, You * - * (not any Contributor) assume the cost of any necessary servicing, * - * repair, or correction. This disclaimer of warranty constitutes an * - * essential part of this License. No use of any Covered Software is * - * authorized under this License except under this disclaimer. * - * * - ************************************************************************ - . - ************************************************************************ - * * - * 7. Limitation of Liability * - * -------------------------- * - * * - * Under no circumstances and under no legal theory, whether tort * - * (including negligence), contract, or otherwise, shall any * - * Contributor, or anyone who distributes Covered Software as * - * permitted above, be liable to You for any direct, indirect, * - * special, incidental, or consequential damages of any character * - * including, without limitation, damages for lost profits, loss of * - * goodwill, work stoppage, computer failure or malfunction, or any * - * and all other commercial damages or losses, even if such party * - * shall have been informed of the possibility of such damages. This * - * limitation of liability shall not apply to liability for death or * - * personal injury resulting from such party's negligence to the * - * extent applicable law prohibits such limitation. Some * - * jurisdictions do not allow the exclusion or limitation of * - * incidental or consequential damages, so this exclusion and * - * limitation may not apply to You. * - * * - ************************************************************************ - . - 8. Litigation - ------------- - . - Any litigation relating to this License may be brought only in the - courts of a jurisdiction where the defendant maintains its principal - place of business and such litigation shall be governed by laws of that - jurisdiction, without reference to its conflict-of-law provisions. - Nothing in this Section shall prevent a party's ability to bring - cross-claims or counter-claims. - . - 9. Miscellaneous - ---------------- - . - This License represents the complete agreement concerning the subject - matter hereof. If any provision of this License is held to be - unenforceable, such provision shall be reformed only to the extent - necessary to make it enforceable. Any law or regulation which provides - that the language of a contract shall be construed against the drafter - shall not be used to construe this License against a Contributor. - . - 10. Versions of the License - --------------------------- - . - 10.1. New Versions - . - Mozilla Foundation is the license steward. Except as provided in Section - 10.3, no one other than the license steward has the right to modify or - publish new versions of this License. Each version will be given a - distinguishing version number. - . - 10.2. Effect of New Versions - . - You may distribute the Covered Software under the terms of the version - of the License under which You originally received the Covered Software, - or under the terms of any subsequent version published by the license - steward. - . - 10.3. Modified Versions - . - If you create software not governed by this License, and you want to - create a new license for such software, you may create and use a - modified version of this License if you rename the license and remove - any references to the name of the license steward (except to note that - such modified license differs from this License). - . - 10.4. Distributing Source Code Form that is Incompatible With Secondary - Licenses - . - If You choose to distribute Source Code Form that is Incompatible With - Secondary Licenses under the terms of this version of the License, the - notice described in Exhibit B of this License must be attached. - . - Exhibit A - Source Code Form License Notice - ------------------------------------------- - . - This Source Code Form is subject to the terms of the Mozilla Public - License, v. 2.0. If a copy of the MPL was not distributed with this - file, You can obtain one at http://mozilla.org/MPL/2.0/. - . - If it is not possible or desirable to put the notice in a particular - file, then You may include the notice in a location (such as a LICENSE - file in a relevant directory) where a recipient would be likely to look - for such a notice. - . - You may add additional accurate notices of copyright ownership. - . - Exhibit B - "Incompatible With Secondary Licenses" Notice - --------------------------------------------------------- - . - This Source Code Form is "Incompatible With Secondary Licenses", as - defined by the Mozilla Public License, v. 2.0. - - ----------------------------------------- -libssl1.1 version 1.1.1d-0+deb10u3 - - -Copyright: - -This package was debianized by Christoph Martin martin@uni-mainz.de on -Fri, 22 Nov 1996 21:29:51 +0100. - -Copyright (c) 1998-2004 The OpenSSL Project -Copyright (c) 1995-1998 Eric A. Young, Tim J. Hudson - -The upstream sources were obtained from https://www.openssl.org/ - - - LICENSE ISSUES - ============== - - The OpenSSL toolkit stays under a dual license, i.e. both the conditions of - the OpenSSL License and the original SSLeay license apply to the toolkit. - See below for the actual license texts. Actually both licenses are BSD-style - Open Source licenses. In case of any license issues related to OpenSSL - please contact openssl-core@openssl.org. - - OpenSSL License - --------------- - -/* ==================================================================== - * Copyright (c) 1998-2004 The OpenSSL Project. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in - * the documentation and/or other materials provided with the - * distribution. - * - * 3. All advertising materials mentioning features or use of this - * software must display the following acknowledgment: - * "This product includes software developed by the OpenSSL Project - * for use in the OpenSSL Toolkit. (http://www.openssl.org/)" - * - * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - * endorse or promote products derived from this software without - * prior written permission. For written permission, please contact - * openssl-core@openssl.org. - * - * 5. Products derived from this software may not be called "OpenSSL" - * nor may "OpenSSL" appear in their names without prior written - * permission of the OpenSSL Project. - * - * 6. Redistributions of any form whatsoever must retain the following - * acknowledgment: - * "This product includes software developed by the OpenSSL Project - * for use in the OpenSSL Toolkit (http://www.openssl.org/)" - * - * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY - * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR - * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT - * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, - * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED - * OF THE POSSIBILITY OF SUCH DAMAGE. - * ==================================================================== - * - * This product includes cryptographic software written by Eric Young - * (eay@cryptsoft.com). This product includes software written by Tim - * Hudson (tjh@cryptsoft.com). - * - */ - - Original SSLeay License - ----------------------- - -/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) - * All rights reserved. - * - * This package is an SSL implementation written - * by Eric Young (eay@cryptsoft.com). - * The implementation was written so as to conform with Netscapes SSL. - * - * This library is free for commercial and non-commercial use as long as - * the following conditions are aheared to. The following conditions - * apply to all code found in this distribution, be it the RC4, RSA, - * lhash, DES, etc., code; not just the SSL code. The SSL documentation - * included with this distribution is covered by the same copyright terms - * except that the holder is Tim Hudson (tjh@cryptsoft.com). - * - * Copyright remains Eric Young's, and as such any Copyright notices in - * the code are not to be removed. - * If this package is used in a product, Eric Young should be given attribution - * as the author of the parts of the library used. - * This can be in the form of a textual message at program startup or - * in documentation (online or textual) provided with the package. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. All advertising materials mentioning features or use of this software - * must display the following acknowledgement: - * "This product includes cryptographic software written by - * Eric Young (eay@cryptsoft.com)" - * The word 'cryptographic' can be left out if the rouines from the library - * being used are not cryptographic related :-). - * 4. If you include any Windows specific code (or a derivative thereof) from - * the apps directory (application code) you must include an acknowledgement: - * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" - * - * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - * - * The licence and distribution terms for any publically available version or - * derivative of this code cannot be changed. i.e. this code cannot simply be - * copied and put under another distribution licence - * [including the GNU Public Licence.] - */ - - - ----------------------------------------- -openssl version 1.1.1d-0+deb10u3 - - -Copyright: - -This package was debianized by Christoph Martin martin@uni-mainz.de on -Fri, 22 Nov 1996 21:29:51 +0100. - -Copyright (c) 1998-2004 The OpenSSL Project -Copyright (c) 1995-1998 Eric A. Young, Tim J. Hudson - -The upstream sources were obtained from https://www.openssl.org/ - - - LICENSE ISSUES - ============== - - The OpenSSL toolkit stays under a dual license, i.e. both the conditions of - the OpenSSL License and the original SSLeay license apply to the toolkit. - See below for the actual license texts. Actually both licenses are BSD-style - Open Source licenses. In case of any license issues related to OpenSSL - please contact openssl-core@openssl.org. - - OpenSSL License - --------------- - -/* ==================================================================== - * Copyright (c) 1998-2004 The OpenSSL Project. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in - * the documentation and/or other materials provided with the - * distribution. - * - * 3. All advertising materials mentioning features or use of this - * software must display the following acknowledgment: - * "This product includes software developed by the OpenSSL Project - * for use in the OpenSSL Toolkit. (http://www.openssl.org/)" - * - * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - * endorse or promote products derived from this software without - * prior written permission. For written permission, please contact - * openssl-core@openssl.org. - * - * 5. Products derived from this software may not be called "OpenSSL" - * nor may "OpenSSL" appear in their names without prior written - * permission of the OpenSSL Project. - * - * 6. Redistributions of any form whatsoever must retain the following - * acknowledgment: - * "This product includes software developed by the OpenSSL Project - * for use in the OpenSSL Toolkit (http://www.openssl.org/)" - * - * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY - * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR - * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT - * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, - * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED - * OF THE POSSIBILITY OF SUCH DAMAGE. - * ==================================================================== - * - * This product includes cryptographic software written by Eric Young - * (eay@cryptsoft.com). This product includes software written by Tim - * Hudson (tjh@cryptsoft.com). - * - */ - - Original SSLeay License - ----------------------- - -/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) - * All rights reserved. - * - * This package is an SSL implementation written - * by Eric Young (eay@cryptsoft.com). - * The implementation was written so as to conform with Netscapes SSL. - * - * This library is free for commercial and non-commercial use as long as - * the following conditions are aheared to. The following conditions - * apply to all code found in this distribution, be it the RC4, RSA, - * lhash, DES, etc., code; not just the SSL code. The SSL documentation - * included with this distribution is covered by the same copyright terms - * except that the holder is Tim Hudson (tjh@cryptsoft.com). - * - * Copyright remains Eric Young's, and as such any Copyright notices in - * the code are not to be removed. - * If this package is used in a product, Eric Young should be given attribution - * as the author of the parts of the library used. - * This can be in the form of a textual message at program startup or - * in documentation (online or textual) provided with the package. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. All advertising materials mentioning features or use of this software - * must display the following acknowledgement: - * "This product includes cryptographic software written by - * Eric Young (eay@cryptsoft.com)" - * The word 'cryptographic' can be left out if the rouines from the library - * being used are not cryptographic related :-). - * 4. If you include any Windows specific code (or a derivative thereof) from - * the apps directory (application code) you must include an acknowledgement: - * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" - * - * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - * - * The licence and distribution terms for any publically available version or - * derivative of this code cannot be changed. i.e. this code cannot simply be - * copied and put under another distribution licence - * [including the GNU Public Licence.] - */ - - - ----------------------------------------- -p11-kit version 0.23.15-2 - - -Copyright: - -Format: http://dep.debian.net/deps/dep5 -Upstream-Name: p11-kit -Source: https://p11-glue.github.io/p11-glue/p11-kit.html - -Files: * -Copyright: 2011 Collabora Ltd. -License: BSD-3-Clause - -Files: p11-kit/conf.* p11-kit/proxy.c - common/dict.c common/dict.h -Copyright: 2011 Collabora Ltd. - 2004 Stefan Walter -License: BSD-3-Clause - -Files: p11-kit/modules.c - common/dict.c common/dict.h -Copyright: 2008 Stefan Walter - 2011 Collabora Ltd. - 2017 Red Hat, Inc. -License: BSD-3-Clause - -Files: common/buffer.c common/buffer.h -Copyright: 2007, 2012 Stefan Walter - 2013 Red Hat Inc. -License: BSD-3-Clause - -Files: common/library.c common/library.h common/message.c - p11-kit/client-init.c p11-kit/proxy-init.c common/init.h -Copyright: 2011 Collabora Ltd. - 2012 Stef Walter -License: BSD-3-Clause - -Files: common/url.c common/url.h -Copyright: 2011 Collabora Ltd. - 2013 Red Hat Inc. -License: BSD-3-Clause - -Files: p11-kit/log.c -Copyright: 2007, Stefan Walter - 2013, Red Hat Inc. -License: BSD-3-Clause - -Files: common/pkcs11.h -Copyright: 2006, 2007 g10 Code GmbH - 2006 Andreas Jellinghaus - Copyright 2017 Red Hat, Inc. -License: permissive-like-automake-output - This file is free software; as a special exception the author gives - unlimited permission to copy and/or distribute it, with or without - modifications, as long as this notice is preserved. - . - This file is distributed in the hope that it will be useful, but - WITHOUT ANY WARRANTY, to the extent permitted by law; without even - the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR - PURPOSE. */ - -Files: common/argv.c common/argv.h common/hash.h - trust/oid.c trust/oid.h - trust/pem.c trust/pem.h common/argv.c common/argv.h common/pkcs11x.h - common/pkcs11i.h - common/test-constants.c common/test-hash.c - p11-kit/pkcs11.h p11-kit/test-managed.c - trust/builder.c trust/builder.h trust/digest.h trust/module.c - trust/module.h trust/module-init.c trust/pem.c - trust/pem.h trust/oid.c trust/oid.h trust/parser.h - trust/session.c trust/session.h trust/frob-cert.c - trust/frob-eku.c trust/frob-token.c - trust/test-digest.c trust/test-enumerate.c - trust/test-index.c trust/test-module.c trust/test-oid.c - trust/test-parser.c trust/test-pem.c trust/test-token.c - trust/token.c trust/token.h trust/test-trust.c - trust/test-trust.h trust/x509.c trust/x509.h p11-kit/frob-setuid.c -Copyright: 2012 Red Hat Inc. -License: BSD-3-Clause - -Files: common/attrs.c common/attrs.h -Copyright: 2012, Redhat Inc. - 2011, Collabora Ltd. -License: BSD-3-Clause - - -Files: common/test-attrs.c common/test-buffer.c - trust/frob-ku.c trust/frob-oid.c trust/test-asn1.c -Copyright: 2012, Redhat Inc. -License: BSD-3-Clause - - -Files: p11-kit/test-modules.c -Copyright: 2012, 2015, 2016 Red Hat Inc -License: BSD-3-Clause - - -Files: common/constants.c common/constants.h common/test.c - common/test.h common/test-compat.c common/test-tests.c - common/tool.h p11-kit/deprecated.h - p11-kit/docs.h p11-kit/log.h p11-kit/modules.h p11-kit/proxy.h - p11-kit/test-log.c trust/anchor.c trust/anchor.h - trust/enumerate.c trust/enumerate.h trust/extract.c - trust/extract-cer.c trust/extract.h - trust/extract-openssl.c trust/extract-pem.c trust/index.c - trust/index.h trust/list.c trust/list.h trust/persist.c - trust/persist.h trust/save.c trust/save.h trust/frob-bc.c - trust/frob-ext.c trust/frob-pow.c - trust/test-base64.c - trust/test-builder.c trust/test-save.c - trust/test-utf8.c trust/test-x509.c - trust/types.h trust/utf8.c trust/utf8.h -Copyright: 2013, Redhat Inc. -License: BSD-3-Clause - -Files: p11-kit/remote.h common/frob-getenv.c - common/unix-peer.h -Copyright: 2014 Red Hat Inc. -License: BSD-3-Clause - - -Files: p11-kit/server.c - common/unix-peer.h -Copyright: 2014 Red Hat Inc. -License: BSD-3-Clause -Comment: make_private_security_descriptor() and the helper functions were - * copied from putty/windows/winsecur.c in the PuTTY source code as of - * git commit 12bd5a6c722152aa27f24598785593e72b3284ea. - * - * PuTTY is copyright 1997-2017 Simon Tatham. - * - * Portions copyright Robert de Bath, Joris van Rantwijk, Delian - * Delchev, Andreas Schultz, Jeroen Massar, Wez Furlong, Nicolas Barry, - * Justin Bradford, Ben Harris, Malcolm Smith, Ahmad Khalifa, Markus - * Kuhn, Colin Watson, Christopher Staite, and CORE SDI S.A. - * - * Permission is hereby granted, free of charge, to any person - * obtaining a copy of this software and associated documentation files - * (the "Software"), to deal in the Software without restriction, - * including without limitation the rights to use, copy, modify, merge, - * publish, distribute, sublicense, and/or sell copies of the Software, - * and to permit persons to whom the Software is furnished to do so, - * subject to the following conditions: - * - * The above copyright notice and this permission notice shall be - * included in all copies or substantial portions of the Software. - - -Files: p11-kit/remote.c -Copyright: 2014,2016 Red Hat Inc. -License: BSD-3-Clause - - -Files: p11-kit/test-mock.c -Copyright: 2012 Stefan Walter - 2012-2013 Red Hat Inc. -License: BSD-3-Clause - -Files: p11-kit/test-virtual.c -Copyright: 2012 Stefan Walter - 2012 Red Hat Inc. -License: BSD-3-Clause - - -Files: p11-kit/test-transport.c -Copyright: 2012 Stefan Walter - 2012-2017 Red Hat Inc. -License: BSD-3-Clause - - -Files: p11-kit/test-rpc.c -Copyright: 2012 Stefan Walter - Copyright (C) 2012-2017 Red Hat Inc. -License: BSD-3-Clause - - -Files: common/runtime.* common/test-runtime.c p11-kit/test-server.* - trust/extract-edk2.c -Copyright: (C) 2018 Red Hat Inc. -License: BSD-3-Clause - -Files: p11-kit/mock-module-ep5.c -Copyright: 2012 Stefan Walter - 2018 Red Hat Inc. -License: BSD-3-Clause - -Files: trust/test-edk2.c -Copyright: 2011, Collabora Ltd. - 2018 Red Hat Inc. -License: BSD-3-Clause - -Files: trust/extract-jks.c trust/test-jks.c -Copyright: 2019, Red Hat Inc. -License: BSD-3-Clause - -Files: p11-kit/rpc-transport.c -Copyright: 2012 Stefan Walter - 2013 Red Hat Inc. -License: BSD-3-Clause - -Files: p11-kit/test-deprecated.c -Copyright: 2011, Collabora Ltd. - 2012 Red Hat Inc. -License: BSD-3-Clause - -Files: p11-kit/virtual.c trust/asn1.c trust/asn1.h p11-kit/rpc-client.c - p11-kit/rpc-message.c p11-kit/rpc-message.h p11-kit/rpc-server.c -Copyright: 2008 Stefan Walter - 2012 Red Hat Inc. -License: BSD-3-Clause - -Files: p11-kit/rpc.h -Copyright: 2012-2013 Stefan Walter -License: BSD-3-Clause - -Files: trust/digest.c trust/digest.c common/hash.c -Copyright: 2004, 2005, 2007, 2011 Internet Systems Consortium, Inc. ("ISC") - 2000, 2001, 2003 Internet Software Consortium. -License: ISC - Permission to use, copy, modify, and/or distribute this software for any - purpose with or without fee is hereby granted, provided that the above - copyright notice and this permission notice appear in all copies. - . - THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH - REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY - AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, - INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM - LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE - OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR - PERFORMANCE OF THIS SOFTWARE. - - -Files: trust/base64.c trust/base64.h -Copyright: 1996, 1998 by Internet Software Consortium - Portions Copyright (c) 1995 by International Business Machines, Inc. -License: ISC+IBM - Copyright (c) 1996, 1998 by Internet Software Consortium. - . - Permission to use, copy, modify, and distribute this software for any - purpose with or without fee is hereby granted, provided that the above - copyright notice and this permission notice appear in all copies. - . - THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS - ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE - CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL - DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR - PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS - ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS - SOFTWARE. - . - . - Portions Copyright (c) 1995 by International Business Machines, Inc. - . - International Business Machines, Inc. (hereinafter called IBM) grants - permission under its copyrights to use, copy, modify, and distribute this - Software with or without fee, provided that the above copyright notice and - all paragraphs of this notice appear in all copies, and that the name of IBM - not be used in connection with the marketing of any product incorporating - the Software or modifications thereof, without specific, written prior - permission. - . - To the extent it has a right to do so, IBM grants an immunity from suit - under its patents, if any, for the use, sale or manufacture of products to - the extent that such products are used for performing Domain Name System - dynamic updates in TCP/IP networks by means of the Software. No immunity is - granted for any product per se or for any other function of any product. - . - THE SOFTWARE IS PROVIDED "AS IS", AND IBM DISCLAIMS ALL WARRANTIES, - INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A - PARTICULAR PURPOSE. IN NO EVENT SHALL IBM BE LIABLE FOR ANY SPECIAL, - DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER ARISING - OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE, EVEN - IF IBM IS APPRISED OF THE POSSIBILITY OF SUCH DAMAGES. - -Files: common/lexer.c common/lexer.h common/path.c -Copyright: 2005 Stefan Walter - 2011 Collabora Ltd. - 2013 Red Hat Inc. -License: BSD-3-Clause - -Files: common/compat.c -Copyright: Copyright (c) 2011 Collabora Ltd. - Portions of this file are covered by the following copyright: - Copyright (c) 2001 Mike Barcroft - Copyright (c) 1990, 1993 - Copyright (c) 1987, 1993 - The Regents of the University of California. -Comment: This code is derived from software contributed to Berkeley by - Chris Torek. -License: BSD-3-Clause - -Files: common/mock.h common/path.h common/frob-getauxval.c - common/test-lexer.c common/test-message.c - common/test-path.c common/test-url.c - p11-kit/test-proxy.c p11-kit/virtual.h p11-kit/test-util.c - trust/frob-nss-trust.c trust/test-parser.c - trust/test-persist.c p11-kit/client.h -Copyright: 2013 Red Hat Inc. -License: BSD-3-Clause - - -Files: p11-kit/iter.c p11-kit/iter.h p11-kit/test-iter.c p11-kit/iter.gnu.c -Copyright: 2013,2016 Red Hat Inc. -License: BSD-3-Clause - - -Files: p11-kit/client.c p11-kit/filter.c p11-kit/filter.h - p11-kit/test-filter.c p11-kit/virtual-fixed.h -Copyright: 2016 Red Hat Inc. -License: BSD-3-Clause - - -Files: common/test-argv.c -Copyright: 2017 Red Hat Inc. -License: BSD-3-Clause - - -Files: p11-kit/mock-module-ep.c p11-kit/test-progname.c - p11-kit/mock-module-ep3.c p11-kit/mock-module-ep4.c -Copyright: 2012 Stefan Walter -License: BSD-3-Clause - - -Files: common/unix-peer.c -Copyright: 2013 Nikos Mavrogiannopoulos -License: BSD-3-Clause - - -Files: debian/* -Copyright: 2011 Chris Coulson - 2011-2013 Andreas Metzler -License: BSD-3-Clause - - -Files: po/de.po -Copyright: 2011 Chris Leick -Comment: This file is distributed under the same license as the - debian files of the p11-kit package. -License: BSD-3-Clause - -Files: po/fi.po -Copyright: 2012 Rosetta Contributors and Canonical Ltd 2012 - Eerik Uusi-Illikainen https://launchpad.net/~ekiuusi-4, 2012 - Timo Jyrinki , 2012 -License: same-as-rest-of-p11kit - This file is distributed under the same license as the p11-kit - package. - - -License: BSD-3-Clause - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - 3. Neither the name of the University nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - . - THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND - ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - - ----------------------------------------- -p11-kit-modules version 0.23.15-2 - - -Copyright: - -Format: http://dep.debian.net/deps/dep5 -Upstream-Name: p11-kit -Source: https://p11-glue.github.io/p11-glue/p11-kit.html - -Files: * -Copyright: 2011 Collabora Ltd. -License: BSD-3-Clause - -Files: p11-kit/conf.* p11-kit/proxy.c - common/dict.c common/dict.h -Copyright: 2011 Collabora Ltd. - 2004 Stefan Walter -License: BSD-3-Clause - -Files: p11-kit/modules.c - common/dict.c common/dict.h -Copyright: 2008 Stefan Walter - 2011 Collabora Ltd. - 2017 Red Hat, Inc. -License: BSD-3-Clause - -Files: common/buffer.c common/buffer.h -Copyright: 2007, 2012 Stefan Walter - 2013 Red Hat Inc. -License: BSD-3-Clause - -Files: common/library.c common/library.h common/message.c - p11-kit/client-init.c p11-kit/proxy-init.c common/init.h -Copyright: 2011 Collabora Ltd. - 2012 Stef Walter -License: BSD-3-Clause - -Files: common/url.c common/url.h -Copyright: 2011 Collabora Ltd. - 2013 Red Hat Inc. -License: BSD-3-Clause - -Files: p11-kit/log.c -Copyright: 2007, Stefan Walter - 2013, Red Hat Inc. -License: BSD-3-Clause - -Files: common/pkcs11.h -Copyright: 2006, 2007 g10 Code GmbH - 2006 Andreas Jellinghaus - Copyright 2017 Red Hat, Inc. -License: permissive-like-automake-output - This file is free software; as a special exception the author gives - unlimited permission to copy and/or distribute it, with or without - modifications, as long as this notice is preserved. - . - This file is distributed in the hope that it will be useful, but - WITHOUT ANY WARRANTY, to the extent permitted by law; without even - the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR - PURPOSE. */ - -Files: common/argv.c common/argv.h common/hash.h - trust/oid.c trust/oid.h - trust/pem.c trust/pem.h common/argv.c common/argv.h common/pkcs11x.h - common/pkcs11i.h - common/test-constants.c common/test-hash.c - p11-kit/pkcs11.h p11-kit/test-managed.c - trust/builder.c trust/builder.h trust/digest.h trust/module.c - trust/module.h trust/module-init.c trust/pem.c - trust/pem.h trust/oid.c trust/oid.h trust/parser.h - trust/session.c trust/session.h trust/frob-cert.c - trust/frob-eku.c trust/frob-token.c - trust/test-digest.c trust/test-enumerate.c - trust/test-index.c trust/test-module.c trust/test-oid.c - trust/test-parser.c trust/test-pem.c trust/test-token.c - trust/token.c trust/token.h trust/test-trust.c - trust/test-trust.h trust/x509.c trust/x509.h p11-kit/frob-setuid.c -Copyright: 2012 Red Hat Inc. -License: BSD-3-Clause - -Files: common/attrs.c common/attrs.h -Copyright: 2012, Redhat Inc. - 2011, Collabora Ltd. -License: BSD-3-Clause - - -Files: common/test-attrs.c common/test-buffer.c - trust/frob-ku.c trust/frob-oid.c trust/test-asn1.c -Copyright: 2012, Redhat Inc. -License: BSD-3-Clause - - -Files: p11-kit/test-modules.c -Copyright: 2012, 2015, 2016 Red Hat Inc -License: BSD-3-Clause - - -Files: common/constants.c common/constants.h common/test.c - common/test.h common/test-compat.c common/test-tests.c - common/tool.h p11-kit/deprecated.h - p11-kit/docs.h p11-kit/log.h p11-kit/modules.h p11-kit/proxy.h - p11-kit/test-log.c trust/anchor.c trust/anchor.h - trust/enumerate.c trust/enumerate.h trust/extract.c - trust/extract-cer.c trust/extract.h - trust/extract-openssl.c trust/extract-pem.c trust/index.c - trust/index.h trust/list.c trust/list.h trust/persist.c - trust/persist.h trust/save.c trust/save.h trust/frob-bc.c - trust/frob-ext.c trust/frob-pow.c - trust/test-base64.c - trust/test-builder.c trust/test-save.c - trust/test-utf8.c trust/test-x509.c - trust/types.h trust/utf8.c trust/utf8.h -Copyright: 2013, Redhat Inc. -License: BSD-3-Clause - -Files: p11-kit/remote.h common/frob-getenv.c - common/unix-peer.h -Copyright: 2014 Red Hat Inc. -License: BSD-3-Clause - - -Files: p11-kit/server.c - common/unix-peer.h -Copyright: 2014 Red Hat Inc. -License: BSD-3-Clause -Comment: make_private_security_descriptor() and the helper functions were - * copied from putty/windows/winsecur.c in the PuTTY source code as of - * git commit 12bd5a6c722152aa27f24598785593e72b3284ea. - * - * PuTTY is copyright 1997-2017 Simon Tatham. - * - * Portions copyright Robert de Bath, Joris van Rantwijk, Delian - * Delchev, Andreas Schultz, Jeroen Massar, Wez Furlong, Nicolas Barry, - * Justin Bradford, Ben Harris, Malcolm Smith, Ahmad Khalifa, Markus - * Kuhn, Colin Watson, Christopher Staite, and CORE SDI S.A. - * - * Permission is hereby granted, free of charge, to any person - * obtaining a copy of this software and associated documentation files - * (the "Software"), to deal in the Software without restriction, - * including without limitation the rights to use, copy, modify, merge, - * publish, distribute, sublicense, and/or sell copies of the Software, - * and to permit persons to whom the Software is furnished to do so, - * subject to the following conditions: - * - * The above copyright notice and this permission notice shall be - * included in all copies or substantial portions of the Software. - - -Files: p11-kit/remote.c -Copyright: 2014,2016 Red Hat Inc. -License: BSD-3-Clause - - -Files: p11-kit/test-mock.c -Copyright: 2012 Stefan Walter - 2012-2013 Red Hat Inc. -License: BSD-3-Clause - -Files: p11-kit/test-virtual.c -Copyright: 2012 Stefan Walter - 2012 Red Hat Inc. -License: BSD-3-Clause - - -Files: p11-kit/test-transport.c -Copyright: 2012 Stefan Walter - 2012-2017 Red Hat Inc. -License: BSD-3-Clause - - -Files: p11-kit/test-rpc.c -Copyright: 2012 Stefan Walter - Copyright (C) 2012-2017 Red Hat Inc. -License: BSD-3-Clause - - -Files: common/runtime.* common/test-runtime.c p11-kit/test-server.* - trust/extract-edk2.c -Copyright: (C) 2018 Red Hat Inc. -License: BSD-3-Clause - -Files: p11-kit/mock-module-ep5.c -Copyright: 2012 Stefan Walter - 2018 Red Hat Inc. -License: BSD-3-Clause - -Files: trust/test-edk2.c -Copyright: 2011, Collabora Ltd. - 2018 Red Hat Inc. -License: BSD-3-Clause - -Files: trust/extract-jks.c trust/test-jks.c -Copyright: 2019, Red Hat Inc. -License: BSD-3-Clause - -Files: p11-kit/rpc-transport.c -Copyright: 2012 Stefan Walter - 2013 Red Hat Inc. -License: BSD-3-Clause - -Files: p11-kit/test-deprecated.c -Copyright: 2011, Collabora Ltd. - 2012 Red Hat Inc. -License: BSD-3-Clause - -Files: p11-kit/virtual.c trust/asn1.c trust/asn1.h p11-kit/rpc-client.c - p11-kit/rpc-message.c p11-kit/rpc-message.h p11-kit/rpc-server.c -Copyright: 2008 Stefan Walter - 2012 Red Hat Inc. -License: BSD-3-Clause - -Files: p11-kit/rpc.h -Copyright: 2012-2013 Stefan Walter -License: BSD-3-Clause - -Files: trust/digest.c trust/digest.c common/hash.c -Copyright: 2004, 2005, 2007, 2011 Internet Systems Consortium, Inc. ("ISC") - 2000, 2001, 2003 Internet Software Consortium. -License: ISC - Permission to use, copy, modify, and/or distribute this software for any - purpose with or without fee is hereby granted, provided that the above - copyright notice and this permission notice appear in all copies. - . - THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH - REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY - AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, - INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM - LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE - OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR - PERFORMANCE OF THIS SOFTWARE. - - -Files: trust/base64.c trust/base64.h -Copyright: 1996, 1998 by Internet Software Consortium - Portions Copyright (c) 1995 by International Business Machines, Inc. -License: ISC+IBM - Copyright (c) 1996, 1998 by Internet Software Consortium. - . - Permission to use, copy, modify, and distribute this software for any - purpose with or without fee is hereby granted, provided that the above - copyright notice and this permission notice appear in all copies. - . - THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS - ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE - CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL - DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR - PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS - ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS - SOFTWARE. - . - . - Portions Copyright (c) 1995 by International Business Machines, Inc. - . - International Business Machines, Inc. (hereinafter called IBM) grants - permission under its copyrights to use, copy, modify, and distribute this - Software with or without fee, provided that the above copyright notice and - all paragraphs of this notice appear in all copies, and that the name of IBM - not be used in connection with the marketing of any product incorporating - the Software or modifications thereof, without specific, written prior - permission. - . - To the extent it has a right to do so, IBM grants an immunity from suit - under its patents, if any, for the use, sale or manufacture of products to - the extent that such products are used for performing Domain Name System - dynamic updates in TCP/IP networks by means of the Software. No immunity is - granted for any product per se or for any other function of any product. - . - THE SOFTWARE IS PROVIDED "AS IS", AND IBM DISCLAIMS ALL WARRANTIES, - INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A - PARTICULAR PURPOSE. IN NO EVENT SHALL IBM BE LIABLE FOR ANY SPECIAL, - DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER ARISING - OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE, EVEN - IF IBM IS APPRISED OF THE POSSIBILITY OF SUCH DAMAGES. - -Files: common/lexer.c common/lexer.h common/path.c -Copyright: 2005 Stefan Walter - 2011 Collabora Ltd. - 2013 Red Hat Inc. -License: BSD-3-Clause - -Files: common/compat.c -Copyright: Copyright (c) 2011 Collabora Ltd. - Portions of this file are covered by the following copyright: - Copyright (c) 2001 Mike Barcroft - Copyright (c) 1990, 1993 - Copyright (c) 1987, 1993 - The Regents of the University of California. -Comment: This code is derived from software contributed to Berkeley by - Chris Torek. -License: BSD-3-Clause - -Files: common/mock.h common/path.h common/frob-getauxval.c - common/test-lexer.c common/test-message.c - common/test-path.c common/test-url.c - p11-kit/test-proxy.c p11-kit/virtual.h p11-kit/test-util.c - trust/frob-nss-trust.c trust/test-parser.c - trust/test-persist.c p11-kit/client.h -Copyright: 2013 Red Hat Inc. -License: BSD-3-Clause - - -Files: p11-kit/iter.c p11-kit/iter.h p11-kit/test-iter.c p11-kit/iter.gnu.c -Copyright: 2013,2016 Red Hat Inc. -License: BSD-3-Clause - - -Files: p11-kit/client.c p11-kit/filter.c p11-kit/filter.h - p11-kit/test-filter.c p11-kit/virtual-fixed.h -Copyright: 2016 Red Hat Inc. -License: BSD-3-Clause - - -Files: common/test-argv.c -Copyright: 2017 Red Hat Inc. -License: BSD-3-Clause - - -Files: p11-kit/mock-module-ep.c p11-kit/test-progname.c - p11-kit/mock-module-ep3.c p11-kit/mock-module-ep4.c -Copyright: 2012 Stefan Walter -License: BSD-3-Clause - - -Files: common/unix-peer.c -Copyright: 2013 Nikos Mavrogiannopoulos -License: BSD-3-Clause - - -Files: debian/* -Copyright: 2011 Chris Coulson - 2011-2013 Andreas Metzler -License: BSD-3-Clause - - -Files: po/de.po -Copyright: 2011 Chris Leick -Comment: This file is distributed under the same license as the - debian files of the p11-kit package. -License: BSD-3-Clause - -Files: po/fi.po -Copyright: 2012 Rosetta Contributors and Canonical Ltd 2012 - Eerik Uusi-Illikainen https://launchpad.net/~ekiuusi-4, 2012 - Timo Jyrinki , 2012 -License: same-as-rest-of-p11kit - This file is distributed under the same license as the p11-kit - package. - - -License: BSD-3-Clause - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - 3. Neither the name of the University nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - . - THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND - ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - - ----------------------------------------- -lsb-base version 10.2019051400 - - -Copyright: - -Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ -Upstream-Name: LSB implementation package - -Files: * -Copyright: 2002-2010, Chris Lawrence -License: GPL-2 - -Files: init-functions.d/50-ubuntu-logging -Copyright: 2005-2011, Canonical Ltd. -License: GPL-2 - -Files: init-functions -Copyright: 2002-2009, Chris Lawrence -License: BSD-3-clause - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - 3. Neither the name of the author nor the names of other contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - . - THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' - AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, - THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS - BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR - BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, - WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE - OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -License: GPL-2 - 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 dated June 1991. - . - 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. - . - You should have received a copy of the GNU General Public - License along with this package; if not, write to the Free - Software Foundation, Inc., 51 Franklin St, Fifth Floor, - Boston, MA 02110-1301 USA - . - On Debian systems, the full text of the GNU General Public - License version 2 can be found in the file - `/usr/share/common-licenses/GPL-2'. - - ----------------------------------------- -curl version 7.64.0-4+deb10u1 - - -Copyright: - -Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ -Upstream-Name: curl -Source: http://curl.haxx.se - -Files: * -Copyright: 1996-2015, Daniel Stenberg -License: curl - -Files: lib/vtls/darwinssl.* -Copyright: 2012-2014, Nick Zitzmann - 2012-2015, Daniel Stenberg -License: curl - -Files: lib/curl_rtmp.* -Copyright: 2010, Howard Chu -License: curl - -Files: lib/vtls/schannel.* -Copyright: 2012-2014, Marc Hoersken - 2012, Mark Salisbury - 2012-2015, Daniel Stenberg -License: curl - -Files: lib/inet_pton.c - lib/inet_ntop.c -Copyright: 1996-2001 Internet Software Consortium -License: ISC - -Files: lib/krb5.c - lib/security.c -Copyright: 2004-2015 Daniel Stenberg - 1995-1999 Kungliga Tekniska Högskolan -License: BSD-3-Clause - -Files: lib/md4.c -Copyright: 2001, Solar Designer -License: public-domain - -Files: lib/openldap.* -Copyright: 2011-2015, Daniel Stenberg - 2010, Howard Chu -License: curl - -Files: lib/vtls/polarssl.* -Copyright: 2010-2011, Hoi-Ho Chan - 2012-2015, Daniel Stenberg -License: curl - -Files: lib/socks_gssapi.c - lib/socks_sspi.* -Copyright: 2009, 2011, Markus Moeller, - 2012-2015, Daniel Stenberg, -License: curl - -Files: tests/certs/scripts/genroot.sh - tests/certs/scripts/genserv.sh -Copyright: 2000-2009, EdelWeb for EdelKey and OpenEvidence -License: curl - -Files: tests/server/tftpd.c -Copyright: 1983 Regents of the University of California -License: BSD-4-Clause - -Files: tests/server/fake_ntlm.c -Copyright: 2010, Mandy Wu - 2011-2013, Daniel Stenberg -License: curl - -Files: docs/examples/fopen.c -Copyright: 2003, Simtec Electronics -License: BSD-3-Clause - -Files: docs/examples/rtsp.c -Copyright: 2011, Jim Hollinger -License: BSD-3-Clause - -Files: docs/examples/curlgtk.c -Copyright: 2003, The OpenEvidence Project -License: curl - -Files: docs/examples/curlx.c -Copyright: 2003, The OpenEvidence Project -License: other - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - . - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions, the following disclaimer, - and the original OpenSSL and SSLeay Licences below. - . - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions, the following disclaimer - and the original OpenSSL and SSLeay Licences below in - the documentation and/or other materials provided with the - distribution. - . - 3. All advertising materials mentioning features or use of this - software must display the following acknowledgments: - "This product includes software developed by the Openevidence Project - for use in the OpenEvidence Toolkit. (http://www.openevidence.org/)" - This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.openssl.org/)" - This product includes cryptographic software written by Eric Young - (eay@cryptsoft.com). This product includes software written by Tim - Hudson (tjh@cryptsoft.com)." - . - 4. The names "OpenEvidence Toolkit" and "OpenEvidence Project" must not be - used to endorse or promote products derived from this software without - prior written permission. For written permission, please contact - openevidence-core@openevidence.org. - . - 5. Products derived from this software may not be called "OpenEvidence" - nor may "OpenEvidence" appear in their names without prior written - permission of the OpenEvidence Project. - . - 6. Redistributions of any form whatsoever must retain the following - acknowledgments: - "This product includes software developed by the OpenEvidence Project - for use in the OpenEvidence Toolkit (http://www.openevidence.org/) - This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.openssl.org/)" - This product includes cryptographic software written by Eric Young - (eay@cryptsoft.com). This product includes software written by Tim - Hudson (tjh@cryptsoft.com)." - . - THIS SOFTWARE IS PROVIDED BY THE OpenEvidence PROJECT ``AS IS'' AND ANY - EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenEvidence PROJECT OR - ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT - NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, - STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED - OF THE POSSIBILITY OF SUCH DAMAGE. - -Files: src/macos/src/macos_main.cpp -Copyright: 2001, Eric Lavigne -License: other - Permission is granted to anyone to use this software for any purpose on any computer system, and to redistribute it freely, subject to the following restrictions: - The author is not responsible for the consequences of use of this software, no matter how awful, even if they arise from defects in it. - The origin of this software must not be misrepresented, either by explicit claim or by omission. - You are allowed to distributed modified copies of the software, in source and binary form, provided they are marked plainly as altered versions, and are not misrepresented as being the original software. - -Files: debian/* -Copyright: 2000-2010, Domenico Andreoli - 2010-2011, Ramakrishnan Muthukrishnan - 2011, Alessandro Ghedini -License: curl - -License: curl - All rights reserved. - . - Permission to use, copy, modify, and distribute this software for any purpose - with or without fee is hereby granted, provided that the above copyright - notice and this permission notice appear in all copies. - . - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN - NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, - DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR - OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE - OR OTHER DEALINGS IN THE SOFTWARE. - . - Except as contained in this notice, the name of a copyright holder shall not - be used in advertising or otherwise to promote the sale, use or other dealings - in this Software without prior written authorization of the copyright holder. - -License: BSD-3-Clause - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - . - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - . - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - . - 3. Neither the name of the Institute nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - . - THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND - ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -License: BSD-4-Clause - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - . - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - . - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - . - 3. Neither the name of the Institute nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - . - 4. Neither the name of the nor the - names of its contributors may be used to endorse or promote products - derived from this software without specific prior written permission. - . - THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND - ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -License: ISC - Permission to use, copy, modify, and/or distribute this software for any - purpose with or without fee is hereby granted, provided that the above - copyright notice and this permission notice appear in all copies. - . - THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES - WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF - MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR - ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES - WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN - ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF - OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - - ----------------------------------------- -groff version 1.22.4-3 - - -Copyright: - -This is the Debian GNU/Linux prepackaged version of the GNU groff -document formatting system. -GNU groff was written by James Clark . - -This Debian package was previously maintained by Fabrizio Polacco -. -It is now maintained by Colin Watson . - -The original tarball came from : - 48fa768dd6fdeb7968041dd5ae8e2b02 groff-1.20.1.tar.gz -and was simply renamed to groff_1.20.1.orig.tar.gz. - -Some patches have been applied to groff outside the debian directory. - -The Debian diff also appends /usr/share/groff/tmac to the default macro path -for compatibility with versions of groff earlier than 1.17 (patch by Colin -Watson). - -========================================================================= - -Copyright (C) 1989-2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, - 2008, 2009 -Free Software Foundation, Inc. - Written by James Clark (jjc@jclark.com) - -This file is part of groff. - -groff 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 3 of the License, or -(at your option) any later version. - -groff 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. - -You should have received a copy of the GNU General Public License -along with this program. If not, see . - -On Debian systems, a copy of the GNU General Public License is available -in /usr/share/common-licenses/GPL-3 as part of the base-files package. - -========================================================================= - -Included in this release are implementations of troff, pic, eqn, tbl, -grn, refer, -man, -mdoc, and -ms macros, and drivers for PostScript, TeX -dvi format, HP LaserJet 4 printers, Canon CAPSL printers, HTML format -(still alpha), and typewriter-like devices. Also included is a modified -version of the Berkeley -me macros, an enhanced version of the X11 -xditview previewer, and an implementation of the -mm macros contributed -by Joergen Haegg (jh@axis.se). - -xditview is copyrighted by MIT under the usual X terms. - -/* - * Copyright 1991 Massachusetts Institute of Technology - * - * Permission to use, copy, modify, distribute, and sell this software and its - * documentation for any purpose is hereby granted without fee, provided that - * the above copyright notice appear in all copies and that both that - * copyright notice and this permission notice appear in supporting - * documentation, and that the name of M.I.T. not be used in advertising or - * publicity pertaining to distribution of the software without specific, - * written prior permission. M.I.T. makes no representations about the - * suitability of this software for any purpose. It is provided "as is" - * without express or implied warranty. - * - * M.I.T. DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL M.I.T. - * BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES - * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION - * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN - * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - * - */ - -========================================================================= - -The groff manual is also distributed under the terms of the GNU Free -Documentation License version 1.3. On Debian systems, this is available in -/usr/share/common-licenses/GFDL-1.3 as part of the base-files package. -However, Debian does not consider this free when the Front-Cover Texts or -Back-Cover Texts options are used. groff is distributed with a LICENSES -file containing the following text (excerpted): - - The groff program is a free software project. It is licensed under the GNU - General Public License (GNU GPL), version 3 or later. - - The file COPYING in the top directory of the groff source package contains a - copy of the GPL that was downloaded from the GNU web site - http://www.gnu.org/copyleft/gpl.txt at 3 jan 2009. - - All files part of groff are licensed under this version of the GPL (or - licenses which are compatible with the GPL). You are free to choose - version 3 or any subsequent version of the GPL. - -I e-mailed the upstream maintainer to clarify the intent of this. Here is -the relevant part of the reply: - - From: Werner LEMBERG - To: cjwatson@debian.org - Subject: Re: Clarifying the scope of groff/LICENSE - Date: Thu, 18 Nov 2004 00:19:52 +0100 (CET) - - > Since "compatible with the GPL" means to all intents and purposes - > "may be distributed under the terms of the GPL", can I correctly - > assume that groff/LICENSE grants me permission to distribute - > groff/doc/groff.texinfo and groff/doc/pic.ms under the terms of the - > GPL? - - This is the intention, of course. - - > If not, is the FDL thing from yesteryear going to be resolved some - > other way? I just want to make sure that I don't get forced to - > remove the groff manual, since that would really diminish the - > quality of the Debian package IMHO. - - Sigh. I haven't found time to revert the FDL stuff back to GPL. It - basically affects only Bernd Warken and me, and we have both agreed to - return to GPL in case FDL makes problems. - -(Note that this e-mail predates the current wording in LICENSES.) - -It is therefore my understanding that the copyright holders of the groff -documentation intend it to be distributable under the terms of the GPL -version 3 or later. The reference above to the FDL text in -/usr/share/common-licenses/ is for information only. - -========================================================================= - -The following material is based on that in the groff LICENSES file, which -itself is licensed as follows: - - Copyright 2003, 2006, 2007, 2009 - Free Software Foundation, Inc. - - Copying and distribution of this file, with or without modification, - are permitted in any medium without royalty provided the copyright - notice and this notice are preserved. - -========================================================================= - -The grn preprocessor was written by Barry Roitblat and -David Slattengren . These files have been part of the -original Berkeley ditroff distribution, without AT&T code, and are in the -public domain. - -========================================================================= - -The gxditview output device was based on X11's xditview program and thus has -the X licence. - - Copyright 1991 Massachusetts Institute of Technology - - Permission to use, copy, modify, distribute, and sell this software and its - documentation for any purpose is hereby granted without fee, provided that - the above copyright notice appear in all copies and that both that - copyright notice and this permission notice appear in supporting - documentation, and that the name of M.I.T. not be used in advertising or - publicity pertaining to distribution of the software without specific, - written prior permission. M.I.T. makes no representations about the - suitability of this software for any purpose. It is provided "as is" - without express or implied warranty. - - M.I.T. DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL M.I.T. - BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES - WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION - OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN - CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - -========================================================================= - -The -mdoc and -me macro sets are distributed under the terms of the BSD -licence. - - Copyright (c) 1991, 1993 - The Regents of the University of California. All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - 3. [Deleted. See - ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change] - 4. Neither the name of the University nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND - ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -========================================================================= - -The file tmac/hyphen.us is identical to the file hyphen.tex, part of the TeX -system written by Donald E. Knuth; the master file can be found at: - - ftp://labrea.stanford.edu/pub/tex/dist/lib/hyphen.tex - -It has been renamed for consistency, i.e., to make patterns available under -the filenames hyphen., e.g. hyphen.de or hyphen.uk. - - Unlimited copying and redistribution of this file are permitted as long - as this file is not modified. Modifications are permitted, but only if - the resulting file is not named hyphen.tex. - -========================================================================= - -The file tmac/hyphen.fr contains the same patterns as the file frhyph.tex -(for TeX), which can be found at: - - http://dante.ctan.org/CTAN/language/hyphenation/frhyph.tex - -The patterns have been converted to a format groff can understand. - - frhyph.tex % French hyphenation patterns - %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% - This file is available for free and can used and redistributed - asis for free. Modified versions should have another name. - %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% - % \message{frhyph.tex - French hyphenation patterns (V2.11) <2002/01/16>} - -========================================================================= - -The file tmac/hyphen.sv is identical to the file svhyph.tex, which can be -found at: - - http://dante.ctan.org/CTAN/language/hyphenation/svhyph.tex - - Copyright 1994 by Jan Michael Rynning. All rights reserved. - This program may be distributed and/or modified under the conditions of - the LaTeX Project Public License, either version 1.2 of this license or - (at your option) any later version. The latest version of this license - is in http://www.latex-project.org/lppl.txt and version 1.2 or later is - part of all distributions of LaTeX version 1999/12/01 or later. - -========================================================================= - -The files tmac/hyphen.det and tmac/hyphen.den contain the same patterns as -the files `dehypht-x-2017-03-31.pat' and `dehyphn-x-2017-03-31.pat' (for -TeX), respectively, which can be found at: - - http://ctan.org/tex-archive/language/hyphenation/dehyph-exptl - -The patterns have been converted to latin-1. - - Copyright (C) 1988,1991 Rechenzentrum der Ruhr-Universitaet Bochum - [german hyphen patterns] - Copyright (C) 1993,1994,1999 Bernd Raichle/DANTE e.V. - [macros, adaption for TeX 2] - Copyright (C) 1998--2001 Walter Schmidt - [adaption to new German orthography] - - ----------------------------------------------------------------- - IMPORTANT NOTICE: - - This program can be redistributed and/or modified under the terms - of the LaTeX Project Public License Distributed from CTAN - archives in directory macros/latex/base/lppl.txt; either - version 1 of the License, or any later version. - ----------------------------------------------------------------- - -========================================================================= - -The file tmac/hyphen.cs contains the same patterns as the file czhyphen.tex -(for TeX), which can be found in the archive: - - http://dante.ctan.org/CTAN/macros/cstex/base/csplain.tar.gz - -The patterns have been converted to a format groff can understand. - - This 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. - - This file 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. - - You should have received a copy of the GNU General Public License - along with this program. If not, see . - -========================================================================= - -doc/meintro.me and doc/meref.me are distributed under the following terms: - - Copyright (c) 1986 The Regents of the University of California. - All rights reserved. - - Redistribution and use in source and binary forms are permitted - provided that the above copyright notice and this paragraph are - duplicated in all such forms and that any documentation, - advertising materials, and other materials related to such - distribution and use acknowledge that the software was developed - by the University of California, Berkeley. The name of the - University may not be used to endorse or promote products derived - from this software without specific prior written permission. - THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR - IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED - WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. - - ----------------------------------------- -groff-base version 1.22.4-3 - - -Copyright: - -This is the Debian GNU/Linux prepackaged version of the GNU groff -document formatting system. -GNU groff was written by James Clark . - -This Debian package was previously maintained by Fabrizio Polacco -. -It is now maintained by Colin Watson . - -The original tarball came from : - 48fa768dd6fdeb7968041dd5ae8e2b02 groff-1.20.1.tar.gz -and was simply renamed to groff_1.20.1.orig.tar.gz. - -Some patches have been applied to groff outside the debian directory. - -The Debian diff also appends /usr/share/groff/tmac to the default macro path -for compatibility with versions of groff earlier than 1.17 (patch by Colin -Watson). - -========================================================================= - -Copyright (C) 1989-2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, - 2008, 2009 -Free Software Foundation, Inc. - Written by James Clark (jjc@jclark.com) - -This file is part of groff. - -groff 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 3 of the License, or -(at your option) any later version. - -groff 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. - -You should have received a copy of the GNU General Public License -along with this program. If not, see . - -On Debian systems, a copy of the GNU General Public License is available -in /usr/share/common-licenses/GPL-3 as part of the base-files package. - -========================================================================= - -Included in this release are implementations of troff, pic, eqn, tbl, -grn, refer, -man, -mdoc, and -ms macros, and drivers for PostScript, TeX -dvi format, HP LaserJet 4 printers, Canon CAPSL printers, HTML format -(still alpha), and typewriter-like devices. Also included is a modified -version of the Berkeley -me macros, an enhanced version of the X11 -xditview previewer, and an implementation of the -mm macros contributed -by Joergen Haegg (jh@axis.se). - -xditview is copyrighted by MIT under the usual X terms. - -/* - * Copyright 1991 Massachusetts Institute of Technology - * - * Permission to use, copy, modify, distribute, and sell this software and its - * documentation for any purpose is hereby granted without fee, provided that - * the above copyright notice appear in all copies and that both that - * copyright notice and this permission notice appear in supporting - * documentation, and that the name of M.I.T. not be used in advertising or - * publicity pertaining to distribution of the software without specific, - * written prior permission. M.I.T. makes no representations about the - * suitability of this software for any purpose. It is provided "as is" - * without express or implied warranty. - * - * M.I.T. DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL M.I.T. - * BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES - * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION - * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN - * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - * - */ - -========================================================================= - -The groff manual is also distributed under the terms of the GNU Free -Documentation License version 1.3. On Debian systems, this is available in -/usr/share/common-licenses/GFDL-1.3 as part of the base-files package. -However, Debian does not consider this free when the Front-Cover Texts or -Back-Cover Texts options are used. groff is distributed with a LICENSES -file containing the following text (excerpted): - - The groff program is a free software project. It is licensed under the GNU - General Public License (GNU GPL), version 3 or later. - - The file COPYING in the top directory of the groff source package contains a - copy of the GPL that was downloaded from the GNU web site - http://www.gnu.org/copyleft/gpl.txt at 3 jan 2009. - - All files part of groff are licensed under this version of the GPL (or - licenses which are compatible with the GPL). You are free to choose - version 3 or any subsequent version of the GPL. - -I e-mailed the upstream maintainer to clarify the intent of this. Here is -the relevant part of the reply: - - From: Werner LEMBERG - To: cjwatson@debian.org - Subject: Re: Clarifying the scope of groff/LICENSE - Date: Thu, 18 Nov 2004 00:19:52 +0100 (CET) - - > Since "compatible with the GPL" means to all intents and purposes - > "may be distributed under the terms of the GPL", can I correctly - > assume that groff/LICENSE grants me permission to distribute - > groff/doc/groff.texinfo and groff/doc/pic.ms under the terms of the - > GPL? - - This is the intention, of course. - - > If not, is the FDL thing from yesteryear going to be resolved some - > other way? I just want to make sure that I don't get forced to - > remove the groff manual, since that would really diminish the - > quality of the Debian package IMHO. - - Sigh. I haven't found time to revert the FDL stuff back to GPL. It - basically affects only Bernd Warken and me, and we have both agreed to - return to GPL in case FDL makes problems. - -(Note that this e-mail predates the current wording in LICENSES.) - -It is therefore my understanding that the copyright holders of the groff -documentation intend it to be distributable under the terms of the GPL -version 3 or later. The reference above to the FDL text in -/usr/share/common-licenses/ is for information only. - -========================================================================= - -The following material is based on that in the groff LICENSES file, which -itself is licensed as follows: - - Copyright 2003, 2006, 2007, 2009 - Free Software Foundation, Inc. - - Copying and distribution of this file, with or without modification, - are permitted in any medium without royalty provided the copyright - notice and this notice are preserved. - -========================================================================= - -The grn preprocessor was written by Barry Roitblat and -David Slattengren . These files have been part of the -original Berkeley ditroff distribution, without AT&T code, and are in the -public domain. - -========================================================================= - -The gxditview output device was based on X11's xditview program and thus has -the X licence. - - Copyright 1991 Massachusetts Institute of Technology - - Permission to use, copy, modify, distribute, and sell this software and its - documentation for any purpose is hereby granted without fee, provided that - the above copyright notice appear in all copies and that both that - copyright notice and this permission notice appear in supporting - documentation, and that the name of M.I.T. not be used in advertising or - publicity pertaining to distribution of the software without specific, - written prior permission. M.I.T. makes no representations about the - suitability of this software for any purpose. It is provided "as is" - without express or implied warranty. - - M.I.T. DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL M.I.T. - BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES - WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION - OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN - CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - -========================================================================= - -The -mdoc and -me macro sets are distributed under the terms of the BSD -licence. - - Copyright (c) 1991, 1993 - The Regents of the University of California. All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - 3. [Deleted. See - ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change] - 4. Neither the name of the University nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND - ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -========================================================================= - -The file tmac/hyphen.us is identical to the file hyphen.tex, part of the TeX -system written by Donald E. Knuth; the master file can be found at: - - ftp://labrea.stanford.edu/pub/tex/dist/lib/hyphen.tex - -It has been renamed for consistency, i.e., to make patterns available under -the filenames hyphen., e.g. hyphen.de or hyphen.uk. - - Unlimited copying and redistribution of this file are permitted as long - as this file is not modified. Modifications are permitted, but only if - the resulting file is not named hyphen.tex. - -========================================================================= - -The file tmac/hyphen.fr contains the same patterns as the file frhyph.tex -(for TeX), which can be found at: - - http://dante.ctan.org/CTAN/language/hyphenation/frhyph.tex - -The patterns have been converted to a format groff can understand. - - frhyph.tex % French hyphenation patterns - %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% - This file is available for free and can used and redistributed - asis for free. Modified versions should have another name. - %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% - % \message{frhyph.tex - French hyphenation patterns (V2.11) <2002/01/16>} - -========================================================================= - -The file tmac/hyphen.sv is identical to the file svhyph.tex, which can be -found at: - - http://dante.ctan.org/CTAN/language/hyphenation/svhyph.tex - - Copyright 1994 by Jan Michael Rynning. All rights reserved. - This program may be distributed and/or modified under the conditions of - the LaTeX Project Public License, either version 1.2 of this license or - (at your option) any later version. The latest version of this license - is in http://www.latex-project.org/lppl.txt and version 1.2 or later is - part of all distributions of LaTeX version 1999/12/01 or later. - -========================================================================= - -The files tmac/hyphen.det and tmac/hyphen.den contain the same patterns as -the files `dehypht-x-2017-03-31.pat' and `dehyphn-x-2017-03-31.pat' (for -TeX), respectively, which can be found at: - - http://ctan.org/tex-archive/language/hyphenation/dehyph-exptl - -The patterns have been converted to latin-1. - - Copyright (C) 1988,1991 Rechenzentrum der Ruhr-Universitaet Bochum - [german hyphen patterns] - Copyright (C) 1993,1994,1999 Bernd Raichle/DANTE e.V. - [macros, adaption for TeX 2] - Copyright (C) 1998--2001 Walter Schmidt - [adaption to new German orthography] - - ----------------------------------------------------------------- - IMPORTANT NOTICE: - - This program can be redistributed and/or modified under the terms - of the LaTeX Project Public License Distributed from CTAN - archives in directory macros/latex/base/lppl.txt; either - version 1 of the License, or any later version. - ----------------------------------------------------------------- - -========================================================================= - -The file tmac/hyphen.cs contains the same patterns as the file czhyphen.tex -(for TeX), which can be found in the archive: - - http://dante.ctan.org/CTAN/macros/cstex/base/csplain.tar.gz - -The patterns have been converted to a format groff can understand. - - This 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. - - This file 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. - - You should have received a copy of the GNU General Public License - along with this program. If not, see . - -========================================================================= - -doc/meintro.me and doc/meref.me are distributed under the following terms: - - Copyright (c) 1986 The Regents of the University of California. - All rights reserved. - - Redistribution and use in source and binary forms are permitted - provided that the above copyright notice and this paragraph are - duplicated in all such forms and that any documentation, - advertising materials, and other materials related to such - distribution and use acknowledge that the software was developed - by the University of California, Berkeley. The name of the - University may not be used to endorse or promote products derived - from this software without specific prior written permission. - THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR - IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED - WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. - - ----------------------------------------- -iproute2 version 4.20.0-2 - - -Copyright: - -Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ -Upstream-Name: iproute2 -Source: https://www.kernel.org/pub/linux/utils/net/iproute2/ -Comment: - The former upstream was: - http://devresources.linuxfoundation.org/dev/iproute2/download/ - http://developer.osdl.org/dev/iproute2 - ftp://ftp.inr.ac.ru/ip-routing/iproute2-2.4.7-now-ss010824.tar.gz - -Files: * -Copyright: 1996-2001 Alexey Kuznetsov - 1996-2017 Stephen Hemminger - 1999 Pavel Golubev - 2001-2004 Lubomir Bulej - 2001 Robert Olsson - 2000-2002 Joakim Axelsson - 2000-2002 J Hadi Salim - 2002-2007 Volkswagen Group Electronic Research - 2003-2010 Jozsef Kadlecsik - 2004 Harald Welte - 2004-2007 USAGI/WIDE Project - 2006,2008 Junio C Hamano - 2008 Intel Corporation. - 2009 Wolfgang Grandegger - 2011 Czech Technical University in Prague - 2011 Volkswagen Group Research - 2011-2012 Kathleen Nichols - 2011-2012 Van Jacobson - 2012 Michael D. Taht - 2012 Eric Dumazet -License: GPL-2 - -Files: debian/* -Copyright: 1996 Tom Lees - 1998 Christoph Lameter - 1998-1999 Roberto Lumbreras - 1999-2003 Juan Cespedes - 2005-2017 Alexander Wirt - 2008-2015 Andreas Henriksson - 2017 Luca Boccassi -License: GPL-2 - -License: GPL-2 - This package is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License version 2 as - published by the Free Software Foundation. - . - This package 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. - . - You should have received a copy of the GNU General Public License - along with this package; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA - . - On Debian systems, the complete text of the GNU General Public License version - 2 can be found in `/usr/share/common-licenses/GPL-2'. - - ----------------------------------------- -libbsd0 version 0.9.1-2 - - -Copyright: - -Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ - -Files: - * -Copyright: - Copyright © 2004-2006, 2008-2018 Guillem Jover -License: BSD-3-clause - -Files: - man/arc4random.3bsd - man/tree.3bsd -Copyright: - Copyright 1997 Niels Provos - All rights reserved. -License: BSD-4-clause-Niels-Provos - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - 3. All advertising materials mentioning features or use of this software - must display the following acknowledgement: - This product includes software developed by Niels Provos. - 4. The name of the author may not be used to endorse or promote products - derived from this software without specific prior written permission. - . - THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR - IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, - INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT - NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -Files: - man/getprogname.3bsd -Copyright: - Copyright © 2001 Christopher G. Demetriou - All rights reserved. -License: BSD-4-clause-Christopher-G-Demetriou - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - 3. All advertising materials mentioning features or use of this software - must display the following acknowledgement: - This product includes software developed for the - NetBSD Project. See http://www.netbsd.org/ for - information about NetBSD. - 4. The name of the author may not be used to endorse or promote products - derived from this software without specific prior written permission. - . - THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR - IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, - INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT - NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -Files: - include/bsd/err.h - include/bsd/stdlib.h - include/bsd/unistd.h - src/bsd_getopt.c - src/err.c - src/fgetln.c - src/progname.c -Copyright: - Copyright © 2005, 2008-2012 Guillem Jover - Copyright © 2005 Hector Garcia Alvarez - Copyright © 2005 Aurelien Jarno - Copyright © 2006 Robert Millan -License: BSD-3-clause - -Files: - include/bsd/netinet/ip_icmp.h - include/bsd/sys/bitstring.h - include/bsd/sys/queue.h - include/bsd/sys/time.h - include/bsd/timeconv.h - include/bsd/vis.h - man/bitstring.3bsd - man/errc.3bsd - man/explicit_bzero.3bsd - man/fgetln.3bsd - man/fgetwln.3bsd - man/fpurge.3bsd - man/funopen.3bsd - man/getbsize.3bsd - man/heapsort.3bsd - man/nlist.3bsd - man/queue.3bsd - man/radixsort.3bsd - man/reallocarray.3bsd - man/reallocf.3bsd - man/setmode.3bsd - man/strmode.3bsd - man/strnstr.3bsd - man/strtoi.3bsd - man/strtou.3bsd - man/unvis.3bsd - man/vis.3bsd - man/wcslcpy.3bsd - src/getbsize.c - src/heapsort.c - src/merge.c - src/nlist.c - src/radixsort.c - src/setmode.c - src/strmode.c - src/strnstr.c - src/strtoi.c - src/strtou.c - src/unvis.c -Copyright: - Copyright © 1980, 1982, 1986, 1989-1994 - The Regents of the University of California. All rights reserved. - Copyright © 2001 Mike Barcroft - . - Some code is derived from software contributed to Berkeley by - the American National Standards Committee X3, on Information - Processing Systems. - . - Some code is derived from software contributed to Berkeley by - Peter McIlroy. - . - Some code is derived from software contributed to Berkeley by - Ronnie Kon at Mindcraft Inc., Kevin Lew and Elmer Yglesias. - . - Some code is derived from software contributed to Berkeley by - Dave Borman at Cray Research, Inc. - . - Some code is derived from software contributed to Berkeley by - Paul Vixie. - . - Some code is derived from software contributed to Berkeley by - Chris Torek. - . - Copyright © UNIX System Laboratories, Inc. - All or some portions of this file are derived from material licensed - to the University of California by American Telephone and Telegraph - Co. or Unix System Laboratories, Inc. and are reproduced herein with - the permission of UNIX System Laboratories, Inc. -License: BSD-3-clause-Regents - -Files: - src/vis.c -Copyright: - Copyright © 1989, 1993 - The Regents of the University of California. All rights reserved. - . - Copyright © 1999, 2005 The NetBSD Foundation, Inc. - All rights reserved. -License: BSD-3-clause-Regents and BSD-2-clause-NetBSD - -Files: - include/bsd/libutil.h -Copyright: - Copyright © 1996 Peter Wemm . - All rights reserved. - Copyright © 2002 Networks Associates Technology, Inc. - All rights reserved. -License: BSD-3-clause-author - -Files: - man/timeradd.3bsd -Copyright: - Copyright © 2009 Jukka Ruohonen - Copyright © 1999 Kelly Yancey - All rights reserved. -License: BSD-3-clause-John-Birrell - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - 3. Neither the name of the author nor the names of any co-contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - . - THIS SOFTWARE IS PROVIDED BY JOHN BIRRELL AND CONTRIBUTORS ``AS IS'' AND - ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -Files: - man/setproctitle.3bsd -Copyright: - Copyright © 1995 Peter Wemm - All rights reserved. -License: BSD-5-clause-Peter-Wemm - Redistribution and use in source and binary forms, with or without - modification, is permitted provided that the following conditions - are met: - 1. Redistributions of source code must retain the above copyright - notice immediately at the beginning of the file, without modification, - this list of conditions, and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - 3. This work was done expressly for inclusion into FreeBSD. Other use - is permitted provided this notation is included. - 4. Absolutely no warranty of function or purpose is made by the author - Peter Wemm. - 5. Modifications may be freely made to this file providing the above - conditions are met. - -Files: - include/bsd/stringlist.h - man/fmtcheck.3bsd - man/humanize_number.3bsd - man/stringlist.3bsd - man/timeval.3bsd - src/fmtcheck.c - src/humanize_number.c - src/stringlist.c - src/strtonum.c -Copyright: - Copyright © 1994, 1997-2000, 2002, 2008, 2010, 2014 - The NetBSD Foundation, Inc. - Copyright © 2013 John-Mark Gurney - All rights reserved. - . - Some code was contributed to The NetBSD Foundation by Allen Briggs. - . - Some code was contributed to The NetBSD Foundation by Luke Mewburn. - . - Some code is derived from software contributed to The NetBSD Foundation - by Jason R. Thorpe of the Numerical Aerospace Simulation Facility, - NASA Ames Research Center, by Luke Mewburn and by Tomas Svensson. - . - Some code is derived from software contributed to The NetBSD Foundation - by Julio M. Merino Vidal, developed as part of Google's Summer of Code - 2005 program. - . - Some code is derived from software contributed to The NetBSD Foundation - by Christos Zoulas. - . - Some code is derived from software contributed to The NetBSD Foundation - by Jukka Ruohonen. -License: BSD-2-clause-NetBSD - -Files: - include/bsd/sys/endian.h - man/byteorder.3bsd - man/closefrom.3bsd - man/expand_number.3bsd - man/flopen.3bsd - man/getpeereid.3bsd - man/pidfile.3bsd - src/expand_number.c - src/hash/sha512.h - src/hash/sha512c.c - src/pidfile.c - src/reallocf.c - src/timeconv.c -Copyright: - Copyright © 1998, M. Warner Losh - All rights reserved. - . - Copyright © 2001 Dima Dorfman. - All rights reserved. - . - Copyright © 2001 FreeBSD Inc. - All rights reserved. - . - Copyright © 2002 Thomas Moestl - All rights reserved. - . - Copyright © 2002 Mike Barcroft - All rights reserved. - . - Copyright © 2005 Pawel Jakub Dawidek - All rights reserved. - . - Copyright © 2005 Colin Percival - All rights reserved. - . - Copyright © 2007 Eric Anderson - Copyright © 2007 Pawel Jakub Dawidek - All rights reserved. - . - Copyright © 2007 Dag-Erling Coïdan Smørgrav - All rights reserved. - . - Copyright © 2009 Advanced Computing Technologies LLC - Written by: John H. Baldwin - All rights reserved. - . - Copyright © 2011 Guillem Jover -License: BSD-2-clause - -Files: - src/flopen.c -Copyright: - Copyright © 2007-2009 Dag-Erling Coïdan Smørgrav - All rights reserved. -License: BSD-2-clause-verbatim - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer - in this position and unchanged. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - . - THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND - ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -Files: - include/bsd/sys/tree.h - man/fparseln.3bsd - src/fparseln.c -Copyright: - Copyright © 1997 Christos Zoulas. - All rights reserved. - . - Copyright © 2002 Niels Provos - All rights reserved. -License: BSD-2-clause-author - -Files: - include/bsd/readpassphrase.h - man/readpassphrase.3bsd - man/strlcpy.3bsd - man/strtonum.3bsd - src/arc4random.c - src/arc4random_linux.h - src/arc4random_openbsd.h - src/arc4random_uniform.c - src/arc4random_unix.h - src/arc4random_win.h - src/closefrom.c - src/getentropy_aix.c - src/getentropy_bsd.c - src/getentropy_hpux.c - src/getentropy_hurd.c - src/getentropy_linux.c - src/getentropy_osx.c - src/getentropy_solaris.c - src/getentropy_win.c - src/readpassphrase.c - src/reallocarray.c - src/strlcat.c - src/strlcpy.c -Copyright: - Copyright © 2004 Ted Unangst and Todd Miller - All rights reserved. - . - Copyright © 1996 David Mazieres - Copyright © 1998, 2000-2002, 2004-2005, 2007, 2010, 2012-2015 - Todd C. Miller - Copyright © 2004 Ted Unangst - Copyright © 2008 Damien Miller - Copyright © 2008 Otto Moerbeek - Copyright © 2013 Markus Friedl - Copyright © 2014 Bob Beck - Copyright © 2014 Brent Cook - Copyright © 2014 Pawel Jakub Dawidek - Copyright © 2014 Theo de Raadt - Copyright © 2015 Michael Felt - Copyright © 2015 Guillem Jover -License: ISC - Permission to use, copy, modify, and distribute this software for any - purpose with or without fee is hereby granted, provided that the above - copyright notice and this permission notice appear in all copies. - . - THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES - WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF - MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR - ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES - WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN - ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF - OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - -Files: - src/inet_net_pton.c -Copyright: - Copyright © 1996 by Internet Software Consortium. -License: ISC-Original - Permission to use, copy, modify, and distribute this software for any - purpose with or without fee is hereby granted, provided that the above - copyright notice and this permission notice appear in all copies. - . - THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS - ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE - CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL - DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR - PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS - ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS - SOFTWARE. - -Files: - src/setproctitle.c -Copyright: - Copyright © 2010 William Ahern - Copyright © 2012 Guillem Jover -License: Expat - Permission is hereby granted, free of charge, to any person obtaining a - copy of this software and associated documentation files (the - "Software"), to deal in the Software without restriction, including - without limitation the rights to use, copy, modify, merge, publish, - distribute, sublicense, and/or sell copies of the Software, and to permit - persons to whom the Software is furnished to do so, subject to the - following conditions: - . - The above copyright notice and this permission notice shall be included - in all copies or substantial portions of the Software. - . - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS - OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN - NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, - DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR - OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE - USE OR OTHER DEALINGS IN THE SOFTWARE. - -Files: - include/bsd/md5.h - src/hash/md5.c -Copyright: - None -License: public-domain-Colin-Plumb - This code implements the MD5 message-digest algorithm. - The algorithm is due to Ron Rivest. This code was - written by Colin Plumb in 1993, no copyright is claimed. - This code is in the public domain; do with it what you wish. - -Files: - src/explicit_bzero.c - src/chacha_private.h -Copyright: - None -License: public-domain - Public domain. - -Files: - man/mdX.3bsd - src/hash/md5hl.c - src/hash/helper.c -Copyright: - None -License: Beerware - "THE BEER-WARE LICENSE" (Revision 42): - wrote this file. As long as you retain this notice you - can do whatever you want with this stuff. If we meet some day, and you think - this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp - -License: BSD-3-clause-Regents - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - 3. Neither the name of the University nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - . - THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND - ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -License: BSD-3-clause-author - Redistribution and use in source and binary forms, with or without - modification, is permitted provided that the following conditions - are met: - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - 3. The name of the author may not be used to endorse or promote - products derived from this software without specific prior written - permission. - . - THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND - ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -License: BSD-3-clause - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - 3. The name of the author may not be used to endorse or promote products - derived from this software without specific prior written permission. - . - THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, - INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY - AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL - THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, - PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; - OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, - WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF - ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -License: BSD-2-clause-NetBSD - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - . - THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS - ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED - TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS - BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - POSSIBILITY OF SUCH DAMAGE. - -License: BSD-2-clause-author - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - . - THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR - IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, - INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT - NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -License: BSD-2-clause - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - . - THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND - ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - - ----------------------------------------- -libcap2 version 1:2.25-2 - - -Copyright: - -Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ -Upstream-Name: libcap -Upstream-Contact: Andrew G. Morgan -Source: https://www.kernel.org/pub/linux/libs/security/linux-privs/libcap2/ - -Files: * -Copyright: 1997-2016 Andrew G. Morgan -License: BSD-3-clause or GPL-2 - -Files: libcap/cap_text.c -Copyright: 1997-2008 Andrew G. Morgan - 1997 Andrew Main -License: BSD-3-clause or GPL-2 - -Files: libcap/include/sys/capability.h -Copyright: 1997-2008 Andrew G. Morgan - 1997 Aleph One -License: BSD-3-clause or GPL-2 - -Files: libcap/include/sys/securebits.h -Copyright: 2010 Serge Hallyn -License: BSD-3-clause or GPL-2 - -Files: progs/old/sucap.c -Copyright: 1998 Finn Arne Gangstad -License: BSD-3-clause or GPL-2 - -Files: contrib/* -Copyright: 2006, Matt Kern - 2008, Andrew G. Morgan - 2008, Chris Friedhoff -License: BSD-3-clause or GPL-2 - -Files: debian/* -Copyright: 2014, Daniel Baumann - 2014-2018, Christian Kastner -License: BSD-3-clause or GPL-2+ - -Files: debian/manpages/* -Copyright: 1997-2014 Andrew G. Morgan - 2011 Scott Schaefer -License: BSD-3-clause or GPL-2 - -Files: debian/patches/* -Copyright: 2011, Andrew Straw - 2011, Zhi Li - 2014-2016, Christian Kastner - 2015, Helmut Grohne -License: BSD-3-clause or GPL-2+ - -License: BSD-3-clause - Redistribution and use in source and binary forms of libcap, with - or without modification, are permitted provided that the following - conditions are met: - . - 1. Redistributions of source code must retain any existing copyright - notice, and this entire permission notice in its entirety, - including the disclaimer of warranties. - . - 2. Redistributions in binary form must reproduce all prior and current - copyright notices, this list of conditions, and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - . - 3. The name of any author may not be used to endorse or promote - products derived from this software without their specific prior - written permission. - . - THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF - MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT, INDIRECT, - INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, - BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS - OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR - TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE - USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH - DAMAGE. - -License: GPL-2 - 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 of the License. - . - 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. - . - You should have received a copy of the GNU General Public License - along with this program. If not, see . - . - The complete text of the GNU General Public License - can be found in /usr/share/common-licenses/GPL-2 file. - -License: GPL-2+ - 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. - . - 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. - . - You should have received a copy of the GNU General Public License - along with this program. If not, see . - . - The complete text of the GNU General Public License - can be found in /usr/share/common-licenses/GPL-2 file. - - ----------------------------------------- -libcap2-bin version 1:2.25-2 - - -Copyright: - -Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ -Upstream-Name: libcap -Upstream-Contact: Andrew G. Morgan -Source: https://www.kernel.org/pub/linux/libs/security/linux-privs/libcap2/ - -Files: * -Copyright: 1997-2016 Andrew G. Morgan -License: BSD-3-clause or GPL-2 - -Files: libcap/cap_text.c -Copyright: 1997-2008 Andrew G. Morgan - 1997 Andrew Main -License: BSD-3-clause or GPL-2 - -Files: libcap/include/sys/capability.h -Copyright: 1997-2008 Andrew G. Morgan - 1997 Aleph One -License: BSD-3-clause or GPL-2 - -Files: libcap/include/sys/securebits.h -Copyright: 2010 Serge Hallyn -License: BSD-3-clause or GPL-2 - -Files: progs/old/sucap.c -Copyright: 1998 Finn Arne Gangstad -License: BSD-3-clause or GPL-2 - -Files: contrib/* -Copyright: 2006, Matt Kern - 2008, Andrew G. Morgan - 2008, Chris Friedhoff -License: BSD-3-clause or GPL-2 - -Files: debian/* -Copyright: 2014, Daniel Baumann - 2014-2018, Christian Kastner -License: BSD-3-clause or GPL-2+ - -Files: debian/manpages/* -Copyright: 1997-2014 Andrew G. Morgan - 2011 Scott Schaefer -License: BSD-3-clause or GPL-2 - -Files: debian/patches/* -Copyright: 2011, Andrew Straw - 2011, Zhi Li - 2014-2016, Christian Kastner - 2015, Helmut Grohne -License: BSD-3-clause or GPL-2+ - -License: BSD-3-clause - Redistribution and use in source and binary forms of libcap, with - or without modification, are permitted provided that the following - conditions are met: - . - 1. Redistributions of source code must retain any existing copyright - notice, and this entire permission notice in its entirety, - including the disclaimer of warranties. - . - 2. Redistributions in binary form must reproduce all prior and current - copyright notices, this list of conditions, and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - . - 3. The name of any author may not be used to endorse or promote - products derived from this software without their specific prior - written permission. - . - THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF - MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT, INDIRECT, - INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, - BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS - OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR - TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE - USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH - DAMAGE. - -License: GPL-2 - 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 of the License. - . - 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. - . - You should have received a copy of the GNU General Public License - along with this program. If not, see . - . - The complete text of the GNU General Public License - can be found in /usr/share/common-licenses/GPL-2 file. - -License: GPL-2+ - 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. - . - 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. - . - You should have received a copy of the GNU General Public License - along with this program. If not, see . - . - The complete text of the GNU General Public License - can be found in /usr/share/common-licenses/GPL-2 file. - - ----------------------------------------- -libcurl4 version 7.64.0-4+deb10u1 - - -Copyright: - -Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ -Upstream-Name: curl -Source: http://curl.haxx.se - -Files: * -Copyright: 1996-2015, Daniel Stenberg -License: curl - -Files: lib/vtls/darwinssl.* -Copyright: 2012-2014, Nick Zitzmann - 2012-2015, Daniel Stenberg -License: curl - -Files: lib/curl_rtmp.* -Copyright: 2010, Howard Chu -License: curl - -Files: lib/vtls/schannel.* -Copyright: 2012-2014, Marc Hoersken - 2012, Mark Salisbury - 2012-2015, Daniel Stenberg -License: curl - -Files: lib/inet_pton.c - lib/inet_ntop.c -Copyright: 1996-2001 Internet Software Consortium -License: ISC - -Files: lib/krb5.c - lib/security.c -Copyright: 2004-2015 Daniel Stenberg - 1995-1999 Kungliga Tekniska Högskolan -License: BSD-3-Clause - -Files: lib/md4.c -Copyright: 2001, Solar Designer -License: public-domain - -Files: lib/openldap.* -Copyright: 2011-2015, Daniel Stenberg - 2010, Howard Chu -License: curl - -Files: lib/vtls/polarssl.* -Copyright: 2010-2011, Hoi-Ho Chan - 2012-2015, Daniel Stenberg -License: curl - -Files: lib/socks_gssapi.c - lib/socks_sspi.* -Copyright: 2009, 2011, Markus Moeller, - 2012-2015, Daniel Stenberg, -License: curl - -Files: tests/certs/scripts/genroot.sh - tests/certs/scripts/genserv.sh -Copyright: 2000-2009, EdelWeb for EdelKey and OpenEvidence -License: curl - -Files: tests/server/tftpd.c -Copyright: 1983 Regents of the University of California -License: BSD-4-Clause - -Files: tests/server/fake_ntlm.c -Copyright: 2010, Mandy Wu - 2011-2013, Daniel Stenberg -License: curl - -Files: docs/examples/fopen.c -Copyright: 2003, Simtec Electronics -License: BSD-3-Clause - -Files: docs/examples/rtsp.c -Copyright: 2011, Jim Hollinger -License: BSD-3-Clause - -Files: docs/examples/curlgtk.c -Copyright: 2003, The OpenEvidence Project -License: curl - -Files: docs/examples/curlx.c -Copyright: 2003, The OpenEvidence Project -License: other - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - . - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions, the following disclaimer, - and the original OpenSSL and SSLeay Licences below. - . - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions, the following disclaimer - and the original OpenSSL and SSLeay Licences below in - the documentation and/or other materials provided with the - distribution. - . - 3. All advertising materials mentioning features or use of this - software must display the following acknowledgments: - "This product includes software developed by the Openevidence Project - for use in the OpenEvidence Toolkit. (http://www.openevidence.org/)" - This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.openssl.org/)" - This product includes cryptographic software written by Eric Young - (eay@cryptsoft.com). This product includes software written by Tim - Hudson (tjh@cryptsoft.com)." - . - 4. The names "OpenEvidence Toolkit" and "OpenEvidence Project" must not be - used to endorse or promote products derived from this software without - prior written permission. For written permission, please contact - openevidence-core@openevidence.org. - . - 5. Products derived from this software may not be called "OpenEvidence" - nor may "OpenEvidence" appear in their names without prior written - permission of the OpenEvidence Project. - . - 6. Redistributions of any form whatsoever must retain the following - acknowledgments: - "This product includes software developed by the OpenEvidence Project - for use in the OpenEvidence Toolkit (http://www.openevidence.org/) - This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.openssl.org/)" - This product includes cryptographic software written by Eric Young - (eay@cryptsoft.com). This product includes software written by Tim - Hudson (tjh@cryptsoft.com)." - . - THIS SOFTWARE IS PROVIDED BY THE OpenEvidence PROJECT ``AS IS'' AND ANY - EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenEvidence PROJECT OR - ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT - NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, - STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED - OF THE POSSIBILITY OF SUCH DAMAGE. - -Files: src/macos/src/macos_main.cpp -Copyright: 2001, Eric Lavigne -License: other - Permission is granted to anyone to use this software for any purpose on any computer system, and to redistribute it freely, subject to the following restrictions: - The author is not responsible for the consequences of use of this software, no matter how awful, even if they arise from defects in it. - The origin of this software must not be misrepresented, either by explicit claim or by omission. - You are allowed to distributed modified copies of the software, in source and binary form, provided they are marked plainly as altered versions, and are not misrepresented as being the original software. - -Files: debian/* -Copyright: 2000-2010, Domenico Andreoli - 2010-2011, Ramakrishnan Muthukrishnan - 2011, Alessandro Ghedini -License: curl - -License: curl - All rights reserved. - . - Permission to use, copy, modify, and distribute this software for any purpose - with or without fee is hereby granted, provided that the above copyright - notice and this permission notice appear in all copies. - . - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN - NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, - DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR - OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE - OR OTHER DEALINGS IN THE SOFTWARE. - . - Except as contained in this notice, the name of a copyright holder shall not - be used in advertising or otherwise to promote the sale, use or other dealings - in this Software without prior written authorization of the copyright holder. - -License: BSD-3-Clause - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - . - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - . - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - . - 3. Neither the name of the Institute nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - . - THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND - ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -License: BSD-4-Clause - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - . - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - . - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - . - 3. Neither the name of the Institute nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - . - 4. Neither the name of the nor the - names of its contributors may be used to endorse or promote products - derived from this software without specific prior written permission. - . - THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND - ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -License: ISC - Permission to use, copy, modify, and/or distribute this software for any - purpose with or without fee is hereby granted, provided that the above - copyright notice and this permission notice appear in all copies. - . - THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES - WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF - MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR - ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES - WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN - ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF - OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - - ----------------------------------------- -libelf1 version 0.176-1.1 - - -Copyright: - -This package was debianized by Kurt Roeckx on -Sun, 21 May 2006 15:03:01 +0000. - -It was downloaded from -https://sourceware.org/elfutils/ftp/0.168/ - -It was original a .tar.bz2. It has been decompressed and -recompressed again using gzip. - -Copyright Holder: - Copyright (C) 2000 - 2016 Red Hat, Inc. - - Written by: - Ulrich Drepper - Jeff Johnson - Alexander Larsson - Jakub Jelinek - Roland McGrath - - -License: - -Most of the libraries (lib, libelf, libebl, libdw, libdwfl) have the following license: - - This file is free software; you can redistribute it and/or modify - it under the terms of either - - * the GNU Lesser General Public License as published by the Free - Software Foundation; either version 3 of the License, or (at - your option) any later version - - or - - * 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 - - or both in parallel, as here. - - elfutils 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. - - You should have received copies of the GNU General Public License and - the GNU Lesser General Public License along with this program. If - not, see . */ - -The other files are covered by the following license: - - This file 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 3 of the License, or - (at your option) any later version. - - elfutils 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. - - You should have received a copy of the GNU General Public License - along with this program. If not, see . */ - -On Debian GNU/Linux systems, the complete text of the GNU General -Public License version 2 can be found in -`/usr/share/common-licenses/GPL-2', the complete text of the GNU -General Public License version 3 can be found in -`/usr/share/common-licenses/GPL-3' and the complete text of the GNU -Lesser General Public License version 3 can be found in -`/usr/share/common-licenses/LGPL-'. - - - ----------------------------------------- -libgdbm-compat4 version 1.18.1-4 - - -Copyright: - -Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ -Upstream-Name: gdbm -Upstream-Contact: bug-gdbm@gnu.org -Source: https://www.gnu.org.ua/software/gdbm/download.html - -Files: * -Copyright: 1990-2018 Free Software Foundation, Inc. -License: GPL-3+ - -Files: tests/* -Copyright: 2011, 2016-2018 Free Software Foundation, Inc. -License: GPL-2+ - -Files: git2chg.awk -Copyright: 2007, 2009-2014 Sergey Poznyakoff -License: GPL-3+ - -Files: debian/* -Copyright: 1995 Ray Dassen. - 1996,1997 Mark Eichin - 1996,1997 Christoph Lameter. - 1998-2006 James Troup. - 2016 Dmitry Bogatov -License: GPL-3+ - -Files: doc/* -Copyright: 1989-1999, 2007-2011, 2013, 2016-2017 Free Software Foundation, Inc. -License: GFDL-NIV-1.3+ - -License: GPL-3+ - 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 3 - of the License, or (at your option) any later version. - . - 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. - . - You should have received a copy of the GNU General Public License - along with this program. If not, see . - . - On Debian system, copy of GNU Lesser General Public License version 3 - is also located at `/usr/share/common-licenses/GPL-3' - -License: GPL-2+ - 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. - . - 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. - . - You should have received a copy of the GNU General Public License - along with this program. If not, see . - . - On Debian system, copy of GNU Lesser General Public License version 2 - is also located at `/usr/share/common-licenses/GPL-2' - -License: GFDL-NIV-1.3+ - Permission is granted to copy, distribute and/or modify this document - under the terms of the GNU Free Documentation License, Version 1.3 or - any later version published by the Free Software Foundation; with no - Invariant Sections, no Front-Cover texts, and no Back-Cover texts. - A copy of the license is included in the section entitled ``GNU Free - Documentation License''. - - ----------------------------------------- -libgdbm6 version 1.18.1-4 - - -Copyright: - -Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ -Upstream-Name: gdbm -Upstream-Contact: bug-gdbm@gnu.org -Source: https://www.gnu.org.ua/software/gdbm/download.html - -Files: * -Copyright: 1990-2018 Free Software Foundation, Inc. -License: GPL-3+ - -Files: tests/* -Copyright: 2011, 2016-2018 Free Software Foundation, Inc. -License: GPL-2+ - -Files: git2chg.awk -Copyright: 2007, 2009-2014 Sergey Poznyakoff -License: GPL-3+ - -Files: debian/* -Copyright: 1995 Ray Dassen. - 1996,1997 Mark Eichin - 1996,1997 Christoph Lameter. - 1998-2006 James Troup. - 2016 Dmitry Bogatov -License: GPL-3+ - -Files: doc/* -Copyright: 1989-1999, 2007-2011, 2013, 2016-2017 Free Software Foundation, Inc. -License: GFDL-NIV-1.3+ - -License: GPL-3+ - 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 3 - of the License, or (at your option) any later version. - . - 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. - . - You should have received a copy of the GNU General Public License - along with this program. If not, see . - . - On Debian system, copy of GNU Lesser General Public License version 3 - is also located at `/usr/share/common-licenses/GPL-3' - -License: GPL-2+ - 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. - . - 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. - . - You should have received a copy of the GNU General Public License - along with this program. If not, see . - . - On Debian system, copy of GNU Lesser General Public License version 2 - is also located at `/usr/share/common-licenses/GPL-2' - -License: GFDL-NIV-1.3+ - Permission is granted to copy, distribute and/or modify this document - under the terms of the GNU Free Documentation License, Version 1.3 or - any later version published by the Free Software Foundation; with no - Invariant Sections, no Front-Cover texts, and no Back-Cover texts. - A copy of the license is included in the section entitled ``GNU Free - Documentation License''. - - ----------------------------------------- -libgssapi-krb5-2 version 1.17-3+deb10u1 - - -Copyright: - -This package was debianized by Sam Hartman on -Thu, 19 Oct 2000 16:05:06 -0400. - -It was downloaded from: - - - -Upstream Maintainers: - - MIT Kerberos Team - -Copyright: - -Copyright (C) 1985-2018 by the Massachusetts Institute of Technology. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - -* Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -* Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -Downloading of this software may constitute an export of cryptographic -software from the United States of America that is subject to the -United States Export Administration Regulations (EAR), 15 CFR 730-774. -Additional laws or regulations may apply. It is the responsibility of -the person or entity contemplating export to comply with all -applicable export laws and regulations, including obtaining any -required license from the U.S. government. - -The U.S. government prohibits export of encryption source code to -certain countries and individuals, including, but not limited to, the -countries of Cuba, Iran, North Korea, Sudan, Syria, and residents and -nationals of those countries. - -Documentation components of this software distribution are licensed -under a Creative Commons Attribution-ShareAlike 3.0 Unported License. -(http://creativecommons.org/licenses/by-sa/3.0/) - -Individual source code files are copyright MIT, Cygnus Support, -Novell, OpenVision Technologies, Oracle, Red Hat, Sun Microsystems, -FundsXpress, and others. - -Project Athena, Athena, Athena MUSE, Discuss, Hesiod, Kerberos, Moira, -and Zephyr are trademarks of the Massachusetts Institute of Technology -(MIT). No commercial use of these trademarks may be made without -prior written permission of MIT. - -"Commercial use" means use of a name in a product or other for-profit -manner. It does NOT prevent a commercial firm from referring to the -MIT trademarks in order to convey information (although in doing so, -recognition of their trademark status should be given). - -====================================================================== - -The following copyright and permission notice applies to the -OpenVision Kerberos Administration system located in "kadmin/create", -"kadmin/dbutil", "kadmin/passwd", "kadmin/server", "lib/kadm5", and -portions of "lib/rpc": - - Copyright, OpenVision Technologies, Inc., 1993-1996, All Rights - Reserved - - WARNING: Retrieving the OpenVision Kerberos Administration system - source code, as described below, indicates your acceptance of the - following terms. If you do not agree to the following terms, do - not retrieve the OpenVision Kerberos administration system. - - You may freely use and distribute the Source Code and Object Code - compiled from it, with or without modification, but this Source - Code is provided to you "AS IS" EXCLUSIVE OF ANY WARRANTY, - INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY OR - FITNESS FOR A PARTICULAR PURPOSE, OR ANY OTHER WARRANTY, WHETHER - EXPRESS OR IMPLIED. IN NO EVENT WILL OPENVISION HAVE ANY LIABILITY - FOR ANY LOST PROFITS, LOSS OF DATA OR COSTS OF PROCUREMENT OF - SUBSTITUTE GOODS OR SERVICES, OR FOR ANY SPECIAL, INDIRECT, OR - CONSEQUENTIAL DAMAGES ARISING OUT OF THIS AGREEMENT, INCLUDING, - WITHOUT LIMITATION, THOSE RESULTING FROM THE USE OF THE SOURCE - CODE, OR THE FAILURE OF THE SOURCE CODE TO PERFORM, OR FOR ANY - OTHER REASON. - - OpenVision retains all copyrights in the donated Source Code. - OpenVision also retains copyright to derivative works of the Source - Code, whether created by OpenVision or by a third party. The - OpenVision copyright notice must be preserved if derivative works - are made based on the donated Source Code. - - OpenVision Technologies, Inc. has donated this Kerberos - Administration system to MIT for inclusion in the standard Kerberos - 5 distribution. This donation underscores our commitment to - continuing Kerberos technology development and our gratitude for - the valuable work which has been performed by MIT and the Kerberos - community. - -====================================================================== - - Portions contributed by Matt Crawford "crawdad@fnal.gov" were work - performed at Fermi National Accelerator Laboratory, which is - operated by Universities Research Association, Inc., under contract - DE-AC02-76CHO3000 with the U.S. Department of Energy. - -====================================================================== - -Portions of "src/lib/crypto" have the following copyright: - - Copyright (C) 1998 by the FundsXpress, INC. - - All rights reserved. - - Export of this software from the United States of America may - require a specific license from the United States Government. - It is the responsibility of any person or organization - contemplating export to obtain such a license before exporting. - - WITHIN THAT CONSTRAINT, permission to use, copy, modify, and - distribute this software and its documentation for any purpose and - without fee is hereby granted, provided that the above copyright - notice appear in all copies and that both that copyright notice and - this permission notice appear in supporting documentation, and that - the name of FundsXpress. not be used in advertising or publicity - pertaining to distribution of the software without specific, - written prior permission. FundsXpress makes no representations - about the suitability of this software for any purpose. It is - provided "as is" without express or implied warranty. - - THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR - IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED - WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. - -====================================================================== - -The implementation of the AES encryption algorithm in -"src/lib/crypto/builtin/aes" has the following copyright: - - Copyright (C) 2001, Dr Brian Gladman "brg@gladman.uk.net", Worcester, UK. - All rights reserved. - - LICENSE TERMS - - The free distribution and use of this software in both source and - binary form is allowed (with or without changes) provided that: - - 1. distributions of this source code include the above copyright - notice, this list of conditions and the following disclaimer; - - 2. distributions in binary form include the above copyright notice, - this list of conditions and the following disclaimer in the - documentation and/or other associated materials; - - 3. the copyright holder's name is not used to endorse products - built using this software without specific written permission. - - DISCLAIMER - - This software is provided 'as is' with no explcit or implied - warranties in respect of any properties, including, but not limited - to, correctness and fitness for purpose. - -====================================================================== - -Portions contributed by Red Hat, including the pre-authentication -plug-in framework and the NSS crypto implementation, contain the -following copyright: - - Copyright (C) 2006 Red Hat, Inc. - Portions copyright (C) 2006 Massachusetts Institute of Technology - All Rights Reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of Red Hat, Inc., nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS - FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE - COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, - INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR - SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, - STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED - OF THE POSSIBILITY OF SUCH DAMAGE. - -====================================================================== - -The bundled verto source code is subject to the following license: - - Copyright 2011 Red Hat, Inc. - - Permission is hereby granted, free of charge, to any person - obtaining a copy of this software and associated documentation - files (the "Software"), to deal in the Software without - restriction, including without limitation the rights to use, copy, - modify, merge, publish, distribute, sublicense, and/or sell copies - of the Software, and to permit persons to whom the Software is - furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT - HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, - WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER - DEALINGS IN THE SOFTWARE. - -====================================================================== - -The MS-KKDCP client implementation has the following copyright: - - Copyright 2013,2014 Red Hat, Inc. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above - copyright notice, this list of conditions and the following - disclaimer. - - 2. Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials - provided with the distribution. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS - FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE - COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, - INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR - SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, - STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED - OF THE POSSIBILITY OF SUCH DAMAGE. - -====================================================================== - -The implementations of GSSAPI mechglue in GSSAPI-SPNEGO in -"src/lib/gssapi", including the following files: - - lib/gssapi/generic/gssapi_err_generic.et - lib/gssapi/mechglue/g_accept_sec_context.c - lib/gssapi/mechglue/g_acquire_cred.c - lib/gssapi/mechglue/g_canon_name.c - lib/gssapi/mechglue/g_compare_name.c - lib/gssapi/mechglue/g_context_time.c - lib/gssapi/mechglue/g_delete_sec_context.c - lib/gssapi/mechglue/g_dsp_name.c - lib/gssapi/mechglue/g_dsp_status.c - lib/gssapi/mechglue/g_dup_name.c - lib/gssapi/mechglue/g_exp_sec_context.c - lib/gssapi/mechglue/g_export_name.c - lib/gssapi/mechglue/g_glue.c - lib/gssapi/mechglue/g_imp_name.c - lib/gssapi/mechglue/g_imp_sec_context.c - lib/gssapi/mechglue/g_init_sec_context.c - lib/gssapi/mechglue/g_initialize.c - lib/gssapi/mechglue/g_inquire_context.c - lib/gssapi/mechglue/g_inquire_cred.c - lib/gssapi/mechglue/g_inquire_names.c - lib/gssapi/mechglue/g_process_context.c - lib/gssapi/mechglue/g_rel_buffer.c - lib/gssapi/mechglue/g_rel_cred.c - lib/gssapi/mechglue/g_rel_name.c - lib/gssapi/mechglue/g_rel_oid_set.c - lib/gssapi/mechglue/g_seal.c - lib/gssapi/mechglue/g_sign.c - lib/gssapi/mechglue/g_store_cred.c - lib/gssapi/mechglue/g_unseal.c - lib/gssapi/mechglue/g_userok.c - lib/gssapi/mechglue/g_utils.c - lib/gssapi/mechglue/g_verify.c - lib/gssapi/mechglue/gssd_pname_to_uid.c - lib/gssapi/mechglue/mglueP.h - lib/gssapi/mechglue/oid_ops.c - lib/gssapi/spnego/gssapiP_spnego.h - lib/gssapi/spnego/spnego_mech.c - -and the initial implementation of incremental propagation, including -the following new or changed files: - - include/iprop_hdr.h - kadmin/server/ipropd_svc.c - lib/kdb/iprop.x - lib/kdb/kdb_convert.c - lib/kdb/kdb_log.c - lib/kdb/kdb_log.h - lib/krb5/error_tables/kdb5_err.et - slave/kpropd_rpc.c - slave/kproplog.c - -are subject to the following license: - - Copyright (C) 2004 Sun Microsystems, Inc. - - Permission is hereby granted, free of charge, to any person - obtaining a copy of this software and associated documentation - files (the "Software"), to deal in the Software without - restriction, including without limitation the rights to use, copy, - modify, merge, publish, distribute, sublicense, and/or sell copies - of the Software, and to permit persons to whom the Software is - furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS - BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN - ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN - CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - SOFTWARE. - -====================================================================== - -Kerberos V5 includes documentation and software developed at the -University of California at Berkeley, which includes this copyright -notice: - - Copyright (C) 1983 Regents of the University of California. - All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - 2. Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - 3. Neither the name of the University nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS "AS IS" - AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED - TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A - PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS - OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF - USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, - OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT - OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -====================================================================== - -Portions contributed by Novell, Inc., including the LDAP database -backend, are subject to the following license: - - Copyright (C) 2004-2005, Novell, Inc. - All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * The copyright holder's name is not used to endorse or promote - products derived from this software without specific prior - written permission. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS - FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE - COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, - INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR - SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, - STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED - OF THE POSSIBILITY OF SUCH DAMAGE. - -====================================================================== - -Portions funded by Sandia National Laboratory and developed by the -University of Michigan's Center for Information Technology -Integration, including the PKINIT implementation, are subject to the -following license: - - COPYRIGHT (C) 2006-2007 - THE REGENTS OF THE UNIVERSITY OF MICHIGAN - ALL RIGHTS RESERVED - - Permission is granted to use, copy, create derivative works and - redistribute this software and such derivative works for any - purpose, so long as the name of The University of Michigan is not - used in any advertising or publicity pertaining to the use of - distribution of this software without specific, written prior - authorization. If the above copyright notice or any other - identification of the University of Michigan is included in any - copy of any portion of this software, then the disclaimer below - must also be included. - - THIS SOFTWARE IS PROVIDED AS IS, WITHOUT REPRESENTATION FROM THE - UNIVERSITY OF MICHIGAN AS TO ITS FITNESS FOR ANY PURPOSE, AND - WITHOUT WARRANTY BY THE UNIVERSITY OF MICHIGAN OF ANY KIND, EITHER - EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION THE IMPLIED - WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. - THE REGENTS OF THE UNIVERSITY OF MICHIGAN SHALL NOT BE LIABLE FOR - ANY DAMAGES, INCLUDING SPECIAL, INDIRECT, INCIDENTAL, OR - CONSEQUENTIAL DAMAGES, WITH RESPECT TO ANY CLAIM ARISING OUT OF OR - IN CONNECTION WITH THE USE OF THE SOFTWARE, EVEN IF IT HAS BEEN OR - IS HEREAFTER ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. - -====================================================================== - -The pkcs11.h file included in the PKINIT code has the following -license: - - Copyright 2006 g10 Code GmbH - Copyright 2006 Andreas Jellinghaus - - This file is free software; as a special exception the author gives - unlimited permission to copy and/or distribute it, with or without - modifications, as long as this notice is preserved. - - This file is distributed in the hope that it will be useful, but - WITHOUT ANY WARRANTY, to the extent permitted by law; without even - the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR - PURPOSE. - -====================================================================== - -Portions contributed by Apple Inc. are subject to the following -license: - - Copyright 2004-2008 Apple Inc. All Rights Reserved. - - Export of this software from the United States of America may - require a specific license from the United States Government. - It is the responsibility of any person or organization - contemplating export to obtain such a license before exporting. - - WITHIN THAT CONSTRAINT, permission to use, copy, modify, and - distribute this software and its documentation for any purpose and - without fee is hereby granted, provided that the above copyright - notice appear in all copies and that both that copyright notice and - this permission notice appear in supporting documentation, and that - the name of Apple Inc. not be used in advertising or publicity - pertaining to distribution of the software without specific, - written prior permission. Apple Inc. makes no representations - about the suitability of this software for any purpose. It is - provided "as is" without express or implied warranty. - - THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR - IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED - WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. - -====================================================================== - -The implementations of UTF-8 string handling in src/util/support and -src/lib/krb5/unicode are subject to the following copyright and -permission notice: - - The OpenLDAP Public License - Version 2.8, 17 August 2003 - - Redistribution and use of this software and associated - documentation ("Software"), with or without modification, are - permitted provided that the following conditions are met: - - 1. Redistributions in source form must retain copyright statements - and notices, - - 2. Redistributions in binary form must reproduce applicable - copyright statements and notices, this list of conditions, and - the following disclaimer in the documentation and/or other - materials provided with the distribution, and - - 3. Redistributions must contain a verbatim copy of this document. - - The OpenLDAP Foundation may revise this license from time to time. - Each revision is distinguished by a version number. You may use - this Software under terms of this license revision or under the - terms of any subsequent revision of the license. - - THIS SOFTWARE IS PROVIDED BY THE OPENLDAP FOUNDATION AND ITS - CONTRIBUTORS "AS IS" AND ANY EXPRESSED OR IMPLIED WARRANTIES, - INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF - MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - DISCLAIMED. IN NO EVENT SHALL THE OPENLDAP FOUNDATION, ITS - CONTRIBUTORS, OR THE AUTHOR(S) OR OWNER(S) OF THE SOFTWARE BE - LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT - OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR - BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF - LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE - USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH - DAMAGE. - - The names of the authors and copyright holders must not be used in - advertising or otherwise to promote the sale, use or other dealing - in this Software without specific, written prior permission. Title - to copyright in this Software shall at all times remain with - copyright holders. - - OpenLDAP is a registered trademark of the OpenLDAP Foundation. - - Copyright 1999-2003 The OpenLDAP Foundation, Redwood City, - California, USA. All Rights Reserved. Permission to copy and - distribute verbatim copies of this document is granted. - -====================================================================== - -Marked test programs in src/lib/krb5/krb have the following copyright: - - Copyright (C) 2006 Kungliga Tekniska Högskola - (Royal Institute of Technology, Stockholm, Sweden). - All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - 2. Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - 3. Neither the name of KTH nor the names of its contributors may be - used to endorse or promote products derived from this software - without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY KTH AND ITS CONTRIBUTORS "AS IS" AND - ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, - THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A - PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL KTH OR ITS - CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF - USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, - OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT - OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -====================================================================== - -The KCM Mach RPC definition file used on OS X has the following -copyright: - - Copyright (C) 2009 Kungliga Tekniska Högskola - (Royal Institute of Technology, Stockholm, Sweden). - All rights reserved. - - Portions Copyright (C) 2009 Apple Inc. All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above - copyright notice, this list of conditions and the following - disclaimer. - - 2. Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - 3. Neither the name of the Institute nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS "AS IS" - AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED - TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A - PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE - OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF - USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, - OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT - OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -====================================================================== - -Portions of the RPC implementation in src/lib/rpc and -src/include/gssrpc have the following copyright and permission notice: - - Copyright (C) 2010, Oracle America, Inc. - - All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - 2. Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - 3. Neither the name of the "Oracle America, Inc." nor the names of - its contributors may be used to endorse or promote products - derived from this software without specific prior written - permission. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS - FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE - COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, - INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR - SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, - STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED - OF THE POSSIBILITY OF SUCH DAMAGE. - -====================================================================== - - Copyright (C) 2006,2007,2009 NTT (Nippon Telegraph and Telephone - Corporation). All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer as - the first lines of this file unmodified. - - 2. Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - THIS SOFTWARE IS PROVIDED BY NTT "AS IS" AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - DISCLAIMED. IN NO EVENT SHALL NTT BE LIABLE FOR ANY DIRECT, - INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR - SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, - STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED - OF THE POSSIBILITY OF SUCH DAMAGE. - -====================================================================== - - Copyright 2000 by Carnegie Mellon University - - All Rights Reserved - - Permission to use, copy, modify, and distribute this software and - its documentation for any purpose and without fee is hereby - granted, provided that the above copyright notice appear in all - copies and that both that copyright notice and this permission - notice appear in supporting documentation, and that the name of - Carnegie Mellon University not be used in advertising or publicity - pertaining to distribution of the software without specific, - written prior permission. - - CARNEGIE MELLON UNIVERSITY DISCLAIMS ALL WARRANTIES WITH REGARD TO - THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY - AND FITNESS, IN NO EVENT SHALL CARNEGIE MELLON UNIVERSITY BE LIABLE - FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES - WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN - AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING - OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS - SOFTWARE. - -====================================================================== - - Copyright (C) 2002 Naval Research Laboratory (NRL/CCS) - - Permission to use, copy, modify and distribute this software and - its documentation is hereby granted, provided that both the - copyright notice and this permission notice appear in all copies of - the software, derivative works or modified versions, and any - portions thereof. - - NRL ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS" CONDITION AND - DISCLAIMS ANY LIABILITY OF ANY KIND FOR ANY DAMAGES WHATSOEVER - RESULTING FROM THE USE OF THIS SOFTWARE. - -====================================================================== - -Portions extracted from Internet RFCs have the following copyright -notice: - - Copyright (C) The Internet Society (2006). - - This document is subject to the rights, licenses and restrictions - contained in BCP 78, and except as set forth therein, the authors - retain all their rights. - - This document and the information contained herein are provided on - an "AS IS" basis and THE CONTRIBUTOR, THE ORGANIZATION HE/SHE - REPRESENTS OR IS SPONSORED BY (IF ANY), THE INTERNET SOCIETY AND - THE INTERNET ENGINEERING TASK FORCE DISCLAIM ALL WARRANTIES, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT - THE USE OF THE INFORMATION HEREIN WILL NOT INFRINGE ANY RIGHTS OR - ANY IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A - PARTICULAR PURPOSE. - -====================================================================== - - Copyright (C) 1991, 1992, 1994 by Cygnus Support. - - Permission to use, copy, modify, and distribute this software and - its documentation for any purpose and without fee is hereby - granted, provided that the above copyright notice appear in all - copies and that both that copyright notice and this permission - notice appear in supporting documentation. Cygnus Support makes no - representations about the suitability of this software for any - purpose. It is provided "as is" without express or implied - warranty. - -====================================================================== - - Copyright (C) 2006 Secure Endpoints Inc. - - Permission is hereby granted, free of charge, to any person - obtaining a copy of this software and associated documentation - files (the "Software"), to deal in the Software without - restriction, including without limitation the rights to use, copy, - modify, merge, publish, distribute, sublicense, and/or sell copies - of the Software, and to permit persons to whom the Software is - furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS - BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN - ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN - CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - SOFTWARE. - -====================================================================== - -Portions of the implementation of the Fortuna-like PRNG are subject to -the following notice: - - Copyright (C) 2005 Marko Kreen - All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - 2. Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS "AS IS" - AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED - TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A - PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR - CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF - USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, - OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT - OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - - Copyright (C) 1994 by the University of Southern California - - EXPORT OF THIS SOFTWARE from the United States of America may - require a specific license from the United States Government. It - is the responsibility of any person or organization - contemplating export to obtain such a license before exporting. - - WITHIN THAT CONSTRAINT, permission to copy, modify, and distribute - this software and its documentation in source and binary forms is - hereby granted, provided that any documentation or other materials - related to such distribution or use acknowledge that the software - was developed by the University of Southern California. - - DISCLAIMER OF WARRANTY. THIS SOFTWARE IS PROVIDED "AS IS". The - University of Southern California MAKES NO REPRESENTATIONS OR - WARRANTIES, EXPRESS OR IMPLIED. By way of example, but not - limitation, the University of Southern California MAKES NO - REPRESENTATIONS OR WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY - PARTICULAR PURPOSE. The University of Southern California shall not - be held liable for any liability nor for any direct, indirect, or - consequential damages with respect to any claim by the user or - distributor of the ksu software. - -====================================================================== - - Copyright (C) 1995 - The President and Fellows of Harvard University - - This code is derived from software contributed to Harvard by Jeremy - Rassen. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - 2. Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - 3. All advertising materials mentioning features or use of this - software must display the following acknowledgement: - - This product includes software developed by the University of - California, Berkeley and its contributors. - - 4. Neither the name of the University nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS "AS IS" - AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED - TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A - PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS - OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF - USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, - OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT - OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -====================================================================== - - Copyright (C) 2008 by the Massachusetts Institute of Technology. - Copyright 1995 by Richard P. Basch. All Rights Reserved. - Copyright 1995 by Lehman Brothers, Inc. All Rights Reserved. - - Export of this software from the United States of America may - require a specific license from the United States Government. It - is the responsibility of any person or organization - contemplating export to obtain such a license before exporting. - - WITHIN THAT CONSTRAINT, permission to use, copy, modify, and - distribute this software and its documentation for any purpose and - without fee is hereby granted, provided that the above copyright - notice appear in all copies and that both that copyright notice and - this permission notice appear in supporting documentation, and that - the name of Richard P. Basch, Lehman Brothers and M.I.T. not be - used in advertising or publicity pertaining to distribution of the - software without specific, written prior permission. Richard P. - Basch, Lehman Brothers and M.I.T. make no representations about the - suitability of this software for any purpose. It is provided "as - is" without express or implied warranty. - -====================================================================== - -The following notice applies to "src/lib/krb5/krb/strptime.c" and -"src/include/k5-queue.h". - - Copyright (C) 1997, 1998 The NetBSD Foundation, Inc. - All rights reserved. - - This code was contributed to The NetBSD Foundation by Klaus Klein. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - 2. Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - 3. All advertising materials mentioning features or use of this - software must display the following acknowledgement: - - This product includes software developed by the NetBSD - Foundation, Inc. and its contributors. - - 4. Neither the name of The NetBSD Foundation nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND - CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, - INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF - MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS BE - LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT - OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR - BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF - LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE - USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH - DAMAGE. - -====================================================================== - -The following notice applies to Unicode library files in -"src/lib/krb5/unicode": - - Copyright 1997, 1998, 1999 Computing Research Labs, - New Mexico State University - - Permission is hereby granted, free of charge, to any person - obtaining a copy of this software and associated documentation - files (the "Software"), to deal in the Software without - restriction, including without limitation the rights to use, copy, - modify, merge, publish, distribute, sublicense, and/or sell copies - of the Software, and to permit persons to whom the Software is - furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE COMPUTING RESEARCH LAB OR - NEW MEXICO STATE UNIVERSITY BE LIABLE FOR ANY CLAIM, DAMAGES OR - OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR - OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE - OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -====================================================================== - -The following notice applies to "src/util/support/strlcpy.c": - - Copyright (C) 1998 Todd C. Miller "Todd.Miller@courtesan.com" - - Permission to use, copy, modify, and distribute this software for - any purpose with or without fee is hereby granted, provided that - the above copyright notice and this permission notice appear in all - copies. - - THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL - WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED - WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE - AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR - CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS - OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, - NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN - CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - -====================================================================== - -The following notice applies to "src/util/profile/argv_parse.c" and -"src/util/profile/argv_parse.h": - - Copyright 1999 by Theodore Ts'o. - - Permission to use, copy, modify, and distribute this software for - any purpose with or without fee is hereby granted, provided that - the above copyright notice and this permission notice appear in all - copies. THE SOFTWARE IS PROVIDED "AS IS" AND THEODORE TS'O (THE - AUTHOR) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, - INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN - NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, - INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER - RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION - OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR - IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. (Isn't - it sick that the U.S. culture of lawsuit-happy lawyers requires - this kind of disclaimer?) - -====================================================================== - -The following notice applies to SWIG-generated code in -"src/util/profile/profile_tcl.c": - - Copyright (C) 1999-2000, The University of Chicago - - This file may be freely redistributed without license or fee - provided this copyright message remains intact. - -====================================================================== - -The following notice applies to portiions of "src/lib/rpc" and -"src/include/gssrpc": - - Copyright (C) 2000 The Regents of the University of Michigan. All - rights reserved. - - Copyright (C) 2000 Dug Song "dugsong@UMICH.EDU". All rights - reserved, all wrongs reversed. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - 2. Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - 3. Neither the name of the University nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT - OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR - BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF - LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE - USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH - DAMAGE. - -====================================================================== - -Implementations of the MD4 algorithm are subject to the following -notice: - - Copyright (C) 1990, RSA Data Security, Inc. All rights reserved. - - License to copy and use this software is granted provided that it - is identified as the "RSA Data Security, Inc. MD4 Message Digest - Algorithm" in all material mentioning or referencing this software - or this function. - - License is also granted to make and use derivative works provided - that such works are identified as "derived from the RSA Data - Security, Inc. MD4 Message Digest Algorithm" in all material - mentioning or referencing the derived work. - - RSA Data Security, Inc. makes no representations concerning either - the merchantability of this software or the suitability of this - software for any particular purpose. It is provided "as is" - without express or implied warranty of any kind. - - These notices must be retained in any copies of any part of this - documentation and/or software. - -====================================================================== - -Implementations of the MD5 algorithm are subject to the following -notice: - - Copyright (C) 1990, RSA Data Security, Inc. All rights reserved. - - License to copy and use this software is granted provided that it - is identified as the "RSA Data Security, Inc. MD5 Message- Digest - Algorithm" in all material mentioning or referencing this software - or this function. - - License is also granted to make and use derivative works provided - that such works are identified as "derived from the RSA Data - Security, Inc. MD5 Message-Digest Algorithm" in all material - mentioning or referencing the derived work. - - RSA Data Security, Inc. makes no representations concerning either - the merchantability of this software or the suitability of this - software for any particular purpose. It is provided "as is" - without express or implied warranty of any kind. - - These notices must be retained in any copies of any part of this - documentation and/or software. - -====================================================================== - -The following notice applies to -"src/lib/crypto/crypto_tests/t_mddriver.c": - - Copyright (C) 1990-2, RSA Data Security, Inc. Created 1990. All - rights reserved. - - RSA Data Security, Inc. makes no representations concerning either - the merchantability of this software or the suitability of this - software for any particular purpose. It is provided "as is" without - express or implied warranty of any kind. - - These notices must be retained in any copies of any part of this - documentation and/or software. - -====================================================================== - -Portions of "src/lib/krb5" are subject to the following notice: - - Copyright (C) 1994 CyberSAFE Corporation. - Copyright 1990,1991,2007,2008 by the Massachusetts Institute of Technology. - All Rights Reserved. - - Export of this software from the United States of America may - require a specific license from the United States Government. It - is the responsibility of any person or organization - contemplating export to obtain such a license before exporting. - - WITHIN THAT CONSTRAINT, permission to use, copy, modify, and - distribute this software and its documentation for any purpose and - without fee is hereby granted, provided that the above copyright - notice appear in all copies and that both that copyright notice and - this permission notice appear in supporting documentation, and that - the name of M.I.T. not be used in advertising or publicity - pertaining to distribution of the software without specific, - written prior permission. Furthermore if you modify this software - you must label your software as modified software and not - distribute it in such a fashion that it might be confused with the - original M.I.T. software. Neither M.I.T., the Open Computing - Security Group, nor CyberSAFE Corporation make any representations - about the suitability of this software for any purpose. It is - provided "as is" without express or implied warranty. - -====================================================================== - -Portions contributed by PADL Software are subject to the following -license: - - Copyright (c) 2011, PADL Software Pty Ltd. All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - 2. Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - 3. Neither the name of PADL Software nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY PADL SOFTWARE AND CONTRIBUTORS "AS IS" - AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED - TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A - PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL PADL SOFTWARE - OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF - USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, - OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT - OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -====================================================================== - -The bundled libev source code is subject to the following license: - - All files in libev are Copyright (C)2007,2008,2009 Marc Alexander - Lehmann. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS - FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE - COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, - INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR - SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, - STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED - OF THE POSSIBILITY OF SUCH DAMAGE. - - Alternatively, the contents of this package may be used under the - terms of the GNU General Public License ("GPL") version 2 or any - later version, in which case the provisions of the GPL are - applicable instead of the above. If you wish to allow the use of - your version of this package only under the terms of the GPL and - not to allow others to use your version of this file under the BSD - license, indicate your decision by deleting the provisions above - and replace them with the notice and other provisions required by - the GPL in this and the other files of this package. If you do not - delete the provisions above, a recipient may use your version of - this file under either the BSD or the GPL. - - On Debian systems, the complete text of the GNU General Public License - version 2 can be found in `/usr/share/common-licenses/GPL-2'. - -====================================================================== - -Files copied from the Intel AESNI Sample Library are subject to the -following license: - - Copyright (C) 2010, Intel Corporation - All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials - provided with the distribution. - - * Neither the name of Intel Corporation nor the names of its - contributors may be used to endorse or promote products - derived from this software without specific prior written - permission. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS - FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE - COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, - INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR - SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, - STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED - OF THE POSSIBILITY OF SUCH DAMAGE. - -====================================================================== - -The following notice applies to -"src/ccapi/common/win/OldCC/autolock.hxx": - - Copyright (C) 1998 by Danilo Almeida. All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS - FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE - COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, - INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR - SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, - STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED - OF THE POSSIBILITY OF SUCH DAMAGE. - -====================================================================== - -The Debian Packaging is licensed under the same terms as MIT Kerberos. - - ----------------------------------------- -libice6 version 2:1.0.9-2 - - -Copyright: - -This package was downloaded from -http://xorg.freedesktop.org/releases/individual/lib/ - -Copyright 1993, 1998 The Open Group - -Permission to use, copy, modify, distribute, and sell this software and its -documentation for any purpose is hereby granted without fee, provided that -the above copyright notice appear in all copies and that both that -copyright notice and this permission notice appear in supporting -documentation. - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN -AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN -CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -Except as contained in this notice, the name of The Open Group shall not be -used in advertising or otherwise to promote the sale, use or other dealings -in this Software without prior written authorization from The Open Group. - -Author: Ralph Mor, X Consortium - - ----------------------------------------- -libio-pty-perl version 1:1.08-1.1+b5 - - -Copyright: - -This package was debianized by Brendan O'Dea on -Fri, 4 Jan 2002 23:07:10 +1100. - -It was downloaded from: - - http://www.cpan.org/modules/by-module/IO/IO-Tty-0.05.tar.gz - -Upstream Author: - - Roland Giersig . - -Copyright: - - Copyright (c) 1993 - Juergen Weigert (jnweiger@immd4.informatik.uni-erlangen.de) - Michael Schroeder (mlschroe@immd4.informatik.uni-erlangen.de) - Copyright (c) 1987 Oliver Laumann - - Most of the C code used in the XS file is covered by the GNU GENERAL - PUBLIC LICENSE. - - All other code is free software; you can redistribute it and/or modify - it under the same terms as Perl itself. - - On Debian GNU/Linux systems, the complete text of the GNU General - Public License and the Artistic licence under which Perl is - distributed can be found in `/usr/share/common-licenses/GPL' and - `/usr/share/common-licenses/Artistic' respectively. - - ----------------------------------------- -libipc-run-perl version 20180523.0-1 - - -Copyright: - -Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ -Upstream-Name: IPC-Run -Upstream-Contact: Adam Kennedy -Source: https://metacpan.org/release/IPC-Run - -Files: * -Copyright: - Some parts copyright 2008-2009 Adam Kennedy. - Copyright 1999 Barrie Slaymaker. -License: Artistic or GPL-1+ - -Files: lib/IPC/Run/Win32*.pm -Copyright: 2001, Barrie Slaymaker -License: Artistic or GPL-2 - -Files: debian/* -Copyright: 2002, 2003, Ardo van Rangelrooij - 2003, 2004, 2006, Jay Bonci - 2003, Jay Bonci - 2008-2018, gregor herrmann - 2009, Gunnar Wolf - 2010-2018, Salvatore Bonaccorso -License: Artistic or GPL-1+ - -License: Artistic - This program is free software; you can redistribute it and/or modify - it under the terms of the Artistic License, which comes with Perl. - . - On Debian systems, the complete text of the Artistic License can be - found in `/usr/share/common-licenses/Artistic'. - -License: GPL-1+ - 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 1, or (at your option) - any later version. - . - On Debian systems, the complete text of version 1 of the GNU General - Public License can be found in `/usr/share/common-licenses/GPL-1'. - -License: GPL-2 - 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 dated June, 1991. - . - On Debian systems, the complete text of version 1 of the GNU General - Public License can be found in `/usr/share/common-licenses/GPL-2'. - - ----------------------------------------- -libk5crypto3 version 1.17-3+deb10u1 - - -Copyright: - -This package was debianized by Sam Hartman on -Thu, 19 Oct 2000 16:05:06 -0400. - -It was downloaded from: - - - -Upstream Maintainers: - - MIT Kerberos Team - -Copyright: - -Copyright (C) 1985-2018 by the Massachusetts Institute of Technology. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - -* Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -* Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -Downloading of this software may constitute an export of cryptographic -software from the United States of America that is subject to the -United States Export Administration Regulations (EAR), 15 CFR 730-774. -Additional laws or regulations may apply. It is the responsibility of -the person or entity contemplating export to comply with all -applicable export laws and regulations, including obtaining any -required license from the U.S. government. - -The U.S. government prohibits export of encryption source code to -certain countries and individuals, including, but not limited to, the -countries of Cuba, Iran, North Korea, Sudan, Syria, and residents and -nationals of those countries. - -Documentation components of this software distribution are licensed -under a Creative Commons Attribution-ShareAlike 3.0 Unported License. -(http://creativecommons.org/licenses/by-sa/3.0/) - -Individual source code files are copyright MIT, Cygnus Support, -Novell, OpenVision Technologies, Oracle, Red Hat, Sun Microsystems, -FundsXpress, and others. - -Project Athena, Athena, Athena MUSE, Discuss, Hesiod, Kerberos, Moira, -and Zephyr are trademarks of the Massachusetts Institute of Technology -(MIT). No commercial use of these trademarks may be made without -prior written permission of MIT. - -"Commercial use" means use of a name in a product or other for-profit -manner. It does NOT prevent a commercial firm from referring to the -MIT trademarks in order to convey information (although in doing so, -recognition of their trademark status should be given). - -====================================================================== - -The following copyright and permission notice applies to the -OpenVision Kerberos Administration system located in "kadmin/create", -"kadmin/dbutil", "kadmin/passwd", "kadmin/server", "lib/kadm5", and -portions of "lib/rpc": - - Copyright, OpenVision Technologies, Inc., 1993-1996, All Rights - Reserved - - WARNING: Retrieving the OpenVision Kerberos Administration system - source code, as described below, indicates your acceptance of the - following terms. If you do not agree to the following terms, do - not retrieve the OpenVision Kerberos administration system. - - You may freely use and distribute the Source Code and Object Code - compiled from it, with or without modification, but this Source - Code is provided to you "AS IS" EXCLUSIVE OF ANY WARRANTY, - INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY OR - FITNESS FOR A PARTICULAR PURPOSE, OR ANY OTHER WARRANTY, WHETHER - EXPRESS OR IMPLIED. IN NO EVENT WILL OPENVISION HAVE ANY LIABILITY - FOR ANY LOST PROFITS, LOSS OF DATA OR COSTS OF PROCUREMENT OF - SUBSTITUTE GOODS OR SERVICES, OR FOR ANY SPECIAL, INDIRECT, OR - CONSEQUENTIAL DAMAGES ARISING OUT OF THIS AGREEMENT, INCLUDING, - WITHOUT LIMITATION, THOSE RESULTING FROM THE USE OF THE SOURCE - CODE, OR THE FAILURE OF THE SOURCE CODE TO PERFORM, OR FOR ANY - OTHER REASON. - - OpenVision retains all copyrights in the donated Source Code. - OpenVision also retains copyright to derivative works of the Source - Code, whether created by OpenVision or by a third party. The - OpenVision copyright notice must be preserved if derivative works - are made based on the donated Source Code. - - OpenVision Technologies, Inc. has donated this Kerberos - Administration system to MIT for inclusion in the standard Kerberos - 5 distribution. This donation underscores our commitment to - continuing Kerberos technology development and our gratitude for - the valuable work which has been performed by MIT and the Kerberos - community. - -====================================================================== - - Portions contributed by Matt Crawford "crawdad@fnal.gov" were work - performed at Fermi National Accelerator Laboratory, which is - operated by Universities Research Association, Inc., under contract - DE-AC02-76CHO3000 with the U.S. Department of Energy. - -====================================================================== - -Portions of "src/lib/crypto" have the following copyright: - - Copyright (C) 1998 by the FundsXpress, INC. - - All rights reserved. - - Export of this software from the United States of America may - require a specific license from the United States Government. - It is the responsibility of any person or organization - contemplating export to obtain such a license before exporting. - - WITHIN THAT CONSTRAINT, permission to use, copy, modify, and - distribute this software and its documentation for any purpose and - without fee is hereby granted, provided that the above copyright - notice appear in all copies and that both that copyright notice and - this permission notice appear in supporting documentation, and that - the name of FundsXpress. not be used in advertising or publicity - pertaining to distribution of the software without specific, - written prior permission. FundsXpress makes no representations - about the suitability of this software for any purpose. It is - provided "as is" without express or implied warranty. - - THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR - IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED - WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. - -====================================================================== - -The implementation of the AES encryption algorithm in -"src/lib/crypto/builtin/aes" has the following copyright: - - Copyright (C) 2001, Dr Brian Gladman "brg@gladman.uk.net", Worcester, UK. - All rights reserved. - - LICENSE TERMS - - The free distribution and use of this software in both source and - binary form is allowed (with or without changes) provided that: - - 1. distributions of this source code include the above copyright - notice, this list of conditions and the following disclaimer; - - 2. distributions in binary form include the above copyright notice, - this list of conditions and the following disclaimer in the - documentation and/or other associated materials; - - 3. the copyright holder's name is not used to endorse products - built using this software without specific written permission. - - DISCLAIMER - - This software is provided 'as is' with no explcit or implied - warranties in respect of any properties, including, but not limited - to, correctness and fitness for purpose. - -====================================================================== - -Portions contributed by Red Hat, including the pre-authentication -plug-in framework and the NSS crypto implementation, contain the -following copyright: - - Copyright (C) 2006 Red Hat, Inc. - Portions copyright (C) 2006 Massachusetts Institute of Technology - All Rights Reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of Red Hat, Inc., nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS - FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE - COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, - INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR - SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, - STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED - OF THE POSSIBILITY OF SUCH DAMAGE. - -====================================================================== - -The bundled verto source code is subject to the following license: - - Copyright 2011 Red Hat, Inc. - - Permission is hereby granted, free of charge, to any person - obtaining a copy of this software and associated documentation - files (the "Software"), to deal in the Software without - restriction, including without limitation the rights to use, copy, - modify, merge, publish, distribute, sublicense, and/or sell copies - of the Software, and to permit persons to whom the Software is - furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT - HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, - WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER - DEALINGS IN THE SOFTWARE. - -====================================================================== - -The MS-KKDCP client implementation has the following copyright: - - Copyright 2013,2014 Red Hat, Inc. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above - copyright notice, this list of conditions and the following - disclaimer. - - 2. Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials - provided with the distribution. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS - FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE - COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, - INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR - SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, - STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED - OF THE POSSIBILITY OF SUCH DAMAGE. - -====================================================================== - -The implementations of GSSAPI mechglue in GSSAPI-SPNEGO in -"src/lib/gssapi", including the following files: - - lib/gssapi/generic/gssapi_err_generic.et - lib/gssapi/mechglue/g_accept_sec_context.c - lib/gssapi/mechglue/g_acquire_cred.c - lib/gssapi/mechglue/g_canon_name.c - lib/gssapi/mechglue/g_compare_name.c - lib/gssapi/mechglue/g_context_time.c - lib/gssapi/mechglue/g_delete_sec_context.c - lib/gssapi/mechglue/g_dsp_name.c - lib/gssapi/mechglue/g_dsp_status.c - lib/gssapi/mechglue/g_dup_name.c - lib/gssapi/mechglue/g_exp_sec_context.c - lib/gssapi/mechglue/g_export_name.c - lib/gssapi/mechglue/g_glue.c - lib/gssapi/mechglue/g_imp_name.c - lib/gssapi/mechglue/g_imp_sec_context.c - lib/gssapi/mechglue/g_init_sec_context.c - lib/gssapi/mechglue/g_initialize.c - lib/gssapi/mechglue/g_inquire_context.c - lib/gssapi/mechglue/g_inquire_cred.c - lib/gssapi/mechglue/g_inquire_names.c - lib/gssapi/mechglue/g_process_context.c - lib/gssapi/mechglue/g_rel_buffer.c - lib/gssapi/mechglue/g_rel_cred.c - lib/gssapi/mechglue/g_rel_name.c - lib/gssapi/mechglue/g_rel_oid_set.c - lib/gssapi/mechglue/g_seal.c - lib/gssapi/mechglue/g_sign.c - lib/gssapi/mechglue/g_store_cred.c - lib/gssapi/mechglue/g_unseal.c - lib/gssapi/mechglue/g_userok.c - lib/gssapi/mechglue/g_utils.c - lib/gssapi/mechglue/g_verify.c - lib/gssapi/mechglue/gssd_pname_to_uid.c - lib/gssapi/mechglue/mglueP.h - lib/gssapi/mechglue/oid_ops.c - lib/gssapi/spnego/gssapiP_spnego.h - lib/gssapi/spnego/spnego_mech.c - -and the initial implementation of incremental propagation, including -the following new or changed files: - - include/iprop_hdr.h - kadmin/server/ipropd_svc.c - lib/kdb/iprop.x - lib/kdb/kdb_convert.c - lib/kdb/kdb_log.c - lib/kdb/kdb_log.h - lib/krb5/error_tables/kdb5_err.et - slave/kpropd_rpc.c - slave/kproplog.c - -are subject to the following license: - - Copyright (C) 2004 Sun Microsystems, Inc. - - Permission is hereby granted, free of charge, to any person - obtaining a copy of this software and associated documentation - files (the "Software"), to deal in the Software without - restriction, including without limitation the rights to use, copy, - modify, merge, publish, distribute, sublicense, and/or sell copies - of the Software, and to permit persons to whom the Software is - furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS - BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN - ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN - CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - SOFTWARE. - -====================================================================== - -Kerberos V5 includes documentation and software developed at the -University of California at Berkeley, which includes this copyright -notice: - - Copyright (C) 1983 Regents of the University of California. - All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - 2. Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - 3. Neither the name of the University nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS "AS IS" - AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED - TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A - PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS - OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF - USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, - OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT - OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -====================================================================== - -Portions contributed by Novell, Inc., including the LDAP database -backend, are subject to the following license: - - Copyright (C) 2004-2005, Novell, Inc. - All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * The copyright holder's name is not used to endorse or promote - products derived from this software without specific prior - written permission. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS - FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE - COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, - INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR - SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, - STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED - OF THE POSSIBILITY OF SUCH DAMAGE. - -====================================================================== - -Portions funded by Sandia National Laboratory and developed by the -University of Michigan's Center for Information Technology -Integration, including the PKINIT implementation, are subject to the -following license: - - COPYRIGHT (C) 2006-2007 - THE REGENTS OF THE UNIVERSITY OF MICHIGAN - ALL RIGHTS RESERVED - - Permission is granted to use, copy, create derivative works and - redistribute this software and such derivative works for any - purpose, so long as the name of The University of Michigan is not - used in any advertising or publicity pertaining to the use of - distribution of this software without specific, written prior - authorization. If the above copyright notice or any other - identification of the University of Michigan is included in any - copy of any portion of this software, then the disclaimer below - must also be included. - - THIS SOFTWARE IS PROVIDED AS IS, WITHOUT REPRESENTATION FROM THE - UNIVERSITY OF MICHIGAN AS TO ITS FITNESS FOR ANY PURPOSE, AND - WITHOUT WARRANTY BY THE UNIVERSITY OF MICHIGAN OF ANY KIND, EITHER - EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION THE IMPLIED - WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. - THE REGENTS OF THE UNIVERSITY OF MICHIGAN SHALL NOT BE LIABLE FOR - ANY DAMAGES, INCLUDING SPECIAL, INDIRECT, INCIDENTAL, OR - CONSEQUENTIAL DAMAGES, WITH RESPECT TO ANY CLAIM ARISING OUT OF OR - IN CONNECTION WITH THE USE OF THE SOFTWARE, EVEN IF IT HAS BEEN OR - IS HEREAFTER ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. - -====================================================================== - -The pkcs11.h file included in the PKINIT code has the following -license: - - Copyright 2006 g10 Code GmbH - Copyright 2006 Andreas Jellinghaus - - This file is free software; as a special exception the author gives - unlimited permission to copy and/or distribute it, with or without - modifications, as long as this notice is preserved. - - This file is distributed in the hope that it will be useful, but - WITHOUT ANY WARRANTY, to the extent permitted by law; without even - the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR - PURPOSE. - -====================================================================== - -Portions contributed by Apple Inc. are subject to the following -license: - - Copyright 2004-2008 Apple Inc. All Rights Reserved. - - Export of this software from the United States of America may - require a specific license from the United States Government. - It is the responsibility of any person or organization - contemplating export to obtain such a license before exporting. - - WITHIN THAT CONSTRAINT, permission to use, copy, modify, and - distribute this software and its documentation for any purpose and - without fee is hereby granted, provided that the above copyright - notice appear in all copies and that both that copyright notice and - this permission notice appear in supporting documentation, and that - the name of Apple Inc. not be used in advertising or publicity - pertaining to distribution of the software without specific, - written prior permission. Apple Inc. makes no representations - about the suitability of this software for any purpose. It is - provided "as is" without express or implied warranty. - - THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR - IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED - WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. - -====================================================================== - -The implementations of UTF-8 string handling in src/util/support and -src/lib/krb5/unicode are subject to the following copyright and -permission notice: - - The OpenLDAP Public License - Version 2.8, 17 August 2003 - - Redistribution and use of this software and associated - documentation ("Software"), with or without modification, are - permitted provided that the following conditions are met: - - 1. Redistributions in source form must retain copyright statements - and notices, - - 2. Redistributions in binary form must reproduce applicable - copyright statements and notices, this list of conditions, and - the following disclaimer in the documentation and/or other - materials provided with the distribution, and - - 3. Redistributions must contain a verbatim copy of this document. - - The OpenLDAP Foundation may revise this license from time to time. - Each revision is distinguished by a version number. You may use - this Software under terms of this license revision or under the - terms of any subsequent revision of the license. - - THIS SOFTWARE IS PROVIDED BY THE OPENLDAP FOUNDATION AND ITS - CONTRIBUTORS "AS IS" AND ANY EXPRESSED OR IMPLIED WARRANTIES, - INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF - MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - DISCLAIMED. IN NO EVENT SHALL THE OPENLDAP FOUNDATION, ITS - CONTRIBUTORS, OR THE AUTHOR(S) OR OWNER(S) OF THE SOFTWARE BE - LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT - OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR - BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF - LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE - USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH - DAMAGE. - - The names of the authors and copyright holders must not be used in - advertising or otherwise to promote the sale, use or other dealing - in this Software without specific, written prior permission. Title - to copyright in this Software shall at all times remain with - copyright holders. - - OpenLDAP is a registered trademark of the OpenLDAP Foundation. - - Copyright 1999-2003 The OpenLDAP Foundation, Redwood City, - California, USA. All Rights Reserved. Permission to copy and - distribute verbatim copies of this document is granted. - -====================================================================== - -Marked test programs in src/lib/krb5/krb have the following copyright: - - Copyright (C) 2006 Kungliga Tekniska Högskola - (Royal Institute of Technology, Stockholm, Sweden). - All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - 2. Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - 3. Neither the name of KTH nor the names of its contributors may be - used to endorse or promote products derived from this software - without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY KTH AND ITS CONTRIBUTORS "AS IS" AND - ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, - THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A - PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL KTH OR ITS - CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF - USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, - OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT - OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -====================================================================== - -The KCM Mach RPC definition file used on OS X has the following -copyright: - - Copyright (C) 2009 Kungliga Tekniska Högskola - (Royal Institute of Technology, Stockholm, Sweden). - All rights reserved. - - Portions Copyright (C) 2009 Apple Inc. All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above - copyright notice, this list of conditions and the following - disclaimer. - - 2. Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - 3. Neither the name of the Institute nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS "AS IS" - AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED - TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A - PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE - OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF - USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, - OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT - OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -====================================================================== - -Portions of the RPC implementation in src/lib/rpc and -src/include/gssrpc have the following copyright and permission notice: - - Copyright (C) 2010, Oracle America, Inc. - - All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - 2. Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - 3. Neither the name of the "Oracle America, Inc." nor the names of - its contributors may be used to endorse or promote products - derived from this software without specific prior written - permission. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS - FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE - COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, - INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR - SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, - STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED - OF THE POSSIBILITY OF SUCH DAMAGE. - -====================================================================== - - Copyright (C) 2006,2007,2009 NTT (Nippon Telegraph and Telephone - Corporation). All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer as - the first lines of this file unmodified. - - 2. Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - THIS SOFTWARE IS PROVIDED BY NTT "AS IS" AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - DISCLAIMED. IN NO EVENT SHALL NTT BE LIABLE FOR ANY DIRECT, - INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR - SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, - STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED - OF THE POSSIBILITY OF SUCH DAMAGE. - -====================================================================== - - Copyright 2000 by Carnegie Mellon University - - All Rights Reserved - - Permission to use, copy, modify, and distribute this software and - its documentation for any purpose and without fee is hereby - granted, provided that the above copyright notice appear in all - copies and that both that copyright notice and this permission - notice appear in supporting documentation, and that the name of - Carnegie Mellon University not be used in advertising or publicity - pertaining to distribution of the software without specific, - written prior permission. - - CARNEGIE MELLON UNIVERSITY DISCLAIMS ALL WARRANTIES WITH REGARD TO - THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY - AND FITNESS, IN NO EVENT SHALL CARNEGIE MELLON UNIVERSITY BE LIABLE - FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES - WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN - AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING - OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS - SOFTWARE. - -====================================================================== - - Copyright (C) 2002 Naval Research Laboratory (NRL/CCS) - - Permission to use, copy, modify and distribute this software and - its documentation is hereby granted, provided that both the - copyright notice and this permission notice appear in all copies of - the software, derivative works or modified versions, and any - portions thereof. - - NRL ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS" CONDITION AND - DISCLAIMS ANY LIABILITY OF ANY KIND FOR ANY DAMAGES WHATSOEVER - RESULTING FROM THE USE OF THIS SOFTWARE. - -====================================================================== - -Portions extracted from Internet RFCs have the following copyright -notice: - - Copyright (C) The Internet Society (2006). - - This document is subject to the rights, licenses and restrictions - contained in BCP 78, and except as set forth therein, the authors - retain all their rights. - - This document and the information contained herein are provided on - an "AS IS" basis and THE CONTRIBUTOR, THE ORGANIZATION HE/SHE - REPRESENTS OR IS SPONSORED BY (IF ANY), THE INTERNET SOCIETY AND - THE INTERNET ENGINEERING TASK FORCE DISCLAIM ALL WARRANTIES, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT - THE USE OF THE INFORMATION HEREIN WILL NOT INFRINGE ANY RIGHTS OR - ANY IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A - PARTICULAR PURPOSE. - -====================================================================== - - Copyright (C) 1991, 1992, 1994 by Cygnus Support. - - Permission to use, copy, modify, and distribute this software and - its documentation for any purpose and without fee is hereby - granted, provided that the above copyright notice appear in all - copies and that both that copyright notice and this permission - notice appear in supporting documentation. Cygnus Support makes no - representations about the suitability of this software for any - purpose. It is provided "as is" without express or implied - warranty. - -====================================================================== - - Copyright (C) 2006 Secure Endpoints Inc. - - Permission is hereby granted, free of charge, to any person - obtaining a copy of this software and associated documentation - files (the "Software"), to deal in the Software without - restriction, including without limitation the rights to use, copy, - modify, merge, publish, distribute, sublicense, and/or sell copies - of the Software, and to permit persons to whom the Software is - furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS - BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN - ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN - CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - SOFTWARE. - -====================================================================== - -Portions of the implementation of the Fortuna-like PRNG are subject to -the following notice: - - Copyright (C) 2005 Marko Kreen - All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - 2. Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS "AS IS" - AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED - TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A - PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR - CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF - USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, - OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT - OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - - Copyright (C) 1994 by the University of Southern California - - EXPORT OF THIS SOFTWARE from the United States of America may - require a specific license from the United States Government. It - is the responsibility of any person or organization - contemplating export to obtain such a license before exporting. - - WITHIN THAT CONSTRAINT, permission to copy, modify, and distribute - this software and its documentation in source and binary forms is - hereby granted, provided that any documentation or other materials - related to such distribution or use acknowledge that the software - was developed by the University of Southern California. - - DISCLAIMER OF WARRANTY. THIS SOFTWARE IS PROVIDED "AS IS". The - University of Southern California MAKES NO REPRESENTATIONS OR - WARRANTIES, EXPRESS OR IMPLIED. By way of example, but not - limitation, the University of Southern California MAKES NO - REPRESENTATIONS OR WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY - PARTICULAR PURPOSE. The University of Southern California shall not - be held liable for any liability nor for any direct, indirect, or - consequential damages with respect to any claim by the user or - distributor of the ksu software. - -====================================================================== - - Copyright (C) 1995 - The President and Fellows of Harvard University - - This code is derived from software contributed to Harvard by Jeremy - Rassen. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - 2. Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - 3. All advertising materials mentioning features or use of this - software must display the following acknowledgement: - - This product includes software developed by the University of - California, Berkeley and its contributors. - - 4. Neither the name of the University nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS "AS IS" - AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED - TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A - PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS - OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF - USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, - OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT - OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -====================================================================== - - Copyright (C) 2008 by the Massachusetts Institute of Technology. - Copyright 1995 by Richard P. Basch. All Rights Reserved. - Copyright 1995 by Lehman Brothers, Inc. All Rights Reserved. - - Export of this software from the United States of America may - require a specific license from the United States Government. It - is the responsibility of any person or organization - contemplating export to obtain such a license before exporting. - - WITHIN THAT CONSTRAINT, permission to use, copy, modify, and - distribute this software and its documentation for any purpose and - without fee is hereby granted, provided that the above copyright - notice appear in all copies and that both that copyright notice and - this permission notice appear in supporting documentation, and that - the name of Richard P. Basch, Lehman Brothers and M.I.T. not be - used in advertising or publicity pertaining to distribution of the - software without specific, written prior permission. Richard P. - Basch, Lehman Brothers and M.I.T. make no representations about the - suitability of this software for any purpose. It is provided "as - is" without express or implied warranty. - -====================================================================== - -The following notice applies to "src/lib/krb5/krb/strptime.c" and -"src/include/k5-queue.h". - - Copyright (C) 1997, 1998 The NetBSD Foundation, Inc. - All rights reserved. - - This code was contributed to The NetBSD Foundation by Klaus Klein. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - 2. Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - 3. All advertising materials mentioning features or use of this - software must display the following acknowledgement: - - This product includes software developed by the NetBSD - Foundation, Inc. and its contributors. - - 4. Neither the name of The NetBSD Foundation nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND - CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, - INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF - MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS BE - LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT - OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR - BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF - LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE - USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH - DAMAGE. - -====================================================================== - -The following notice applies to Unicode library files in -"src/lib/krb5/unicode": - - Copyright 1997, 1998, 1999 Computing Research Labs, - New Mexico State University - - Permission is hereby granted, free of charge, to any person - obtaining a copy of this software and associated documentation - files (the "Software"), to deal in the Software without - restriction, including without limitation the rights to use, copy, - modify, merge, publish, distribute, sublicense, and/or sell copies - of the Software, and to permit persons to whom the Software is - furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE COMPUTING RESEARCH LAB OR - NEW MEXICO STATE UNIVERSITY BE LIABLE FOR ANY CLAIM, DAMAGES OR - OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR - OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE - OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -====================================================================== - -The following notice applies to "src/util/support/strlcpy.c": - - Copyright (C) 1998 Todd C. Miller "Todd.Miller@courtesan.com" - - Permission to use, copy, modify, and distribute this software for - any purpose with or without fee is hereby granted, provided that - the above copyright notice and this permission notice appear in all - copies. - - THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL - WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED - WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE - AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR - CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS - OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, - NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN - CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - -====================================================================== - -The following notice applies to "src/util/profile/argv_parse.c" and -"src/util/profile/argv_parse.h": - - Copyright 1999 by Theodore Ts'o. - - Permission to use, copy, modify, and distribute this software for - any purpose with or without fee is hereby granted, provided that - the above copyright notice and this permission notice appear in all - copies. THE SOFTWARE IS PROVIDED "AS IS" AND THEODORE TS'O (THE - AUTHOR) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, - INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN - NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, - INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER - RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION - OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR - IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. (Isn't - it sick that the U.S. culture of lawsuit-happy lawyers requires - this kind of disclaimer?) - -====================================================================== - -The following notice applies to SWIG-generated code in -"src/util/profile/profile_tcl.c": - - Copyright (C) 1999-2000, The University of Chicago - - This file may be freely redistributed without license or fee - provided this copyright message remains intact. - -====================================================================== - -The following notice applies to portiions of "src/lib/rpc" and -"src/include/gssrpc": - - Copyright (C) 2000 The Regents of the University of Michigan. All - rights reserved. - - Copyright (C) 2000 Dug Song "dugsong@UMICH.EDU". All rights - reserved, all wrongs reversed. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - 2. Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - 3. Neither the name of the University nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT - OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR - BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF - LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE - USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH - DAMAGE. - -====================================================================== - -Implementations of the MD4 algorithm are subject to the following -notice: - - Copyright (C) 1990, RSA Data Security, Inc. All rights reserved. - - License to copy and use this software is granted provided that it - is identified as the "RSA Data Security, Inc. MD4 Message Digest - Algorithm" in all material mentioning or referencing this software - or this function. - - License is also granted to make and use derivative works provided - that such works are identified as "derived from the RSA Data - Security, Inc. MD4 Message Digest Algorithm" in all material - mentioning or referencing the derived work. - - RSA Data Security, Inc. makes no representations concerning either - the merchantability of this software or the suitability of this - software for any particular purpose. It is provided "as is" - without express or implied warranty of any kind. - - These notices must be retained in any copies of any part of this - documentation and/or software. - -====================================================================== - -Implementations of the MD5 algorithm are subject to the following -notice: - - Copyright (C) 1990, RSA Data Security, Inc. All rights reserved. - - License to copy and use this software is granted provided that it - is identified as the "RSA Data Security, Inc. MD5 Message- Digest - Algorithm" in all material mentioning or referencing this software - or this function. - - License is also granted to make and use derivative works provided - that such works are identified as "derived from the RSA Data - Security, Inc. MD5 Message-Digest Algorithm" in all material - mentioning or referencing the derived work. - - RSA Data Security, Inc. makes no representations concerning either - the merchantability of this software or the suitability of this - software for any particular purpose. It is provided "as is" - without express or implied warranty of any kind. - - These notices must be retained in any copies of any part of this - documentation and/or software. - -====================================================================== - -The following notice applies to -"src/lib/crypto/crypto_tests/t_mddriver.c": - - Copyright (C) 1990-2, RSA Data Security, Inc. Created 1990. All - rights reserved. - - RSA Data Security, Inc. makes no representations concerning either - the merchantability of this software or the suitability of this - software for any particular purpose. It is provided "as is" without - express or implied warranty of any kind. - - These notices must be retained in any copies of any part of this - documentation and/or software. - -====================================================================== - -Portions of "src/lib/krb5" are subject to the following notice: - - Copyright (C) 1994 CyberSAFE Corporation. - Copyright 1990,1991,2007,2008 by the Massachusetts Institute of Technology. - All Rights Reserved. - - Export of this software from the United States of America may - require a specific license from the United States Government. It - is the responsibility of any person or organization - contemplating export to obtain such a license before exporting. - - WITHIN THAT CONSTRAINT, permission to use, copy, modify, and - distribute this software and its documentation for any purpose and - without fee is hereby granted, provided that the above copyright - notice appear in all copies and that both that copyright notice and - this permission notice appear in supporting documentation, and that - the name of M.I.T. not be used in advertising or publicity - pertaining to distribution of the software without specific, - written prior permission. Furthermore if you modify this software - you must label your software as modified software and not - distribute it in such a fashion that it might be confused with the - original M.I.T. software. Neither M.I.T., the Open Computing - Security Group, nor CyberSAFE Corporation make any representations - about the suitability of this software for any purpose. It is - provided "as is" without express or implied warranty. - -====================================================================== - -Portions contributed by PADL Software are subject to the following -license: - - Copyright (c) 2011, PADL Software Pty Ltd. All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - 2. Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - 3. Neither the name of PADL Software nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY PADL SOFTWARE AND CONTRIBUTORS "AS IS" - AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED - TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A - PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL PADL SOFTWARE - OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF - USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, - OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT - OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -====================================================================== - -The bundled libev source code is subject to the following license: - - All files in libev are Copyright (C)2007,2008,2009 Marc Alexander - Lehmann. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS - FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE - COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, - INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR - SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, - STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED - OF THE POSSIBILITY OF SUCH DAMAGE. - - Alternatively, the contents of this package may be used under the - terms of the GNU General Public License ("GPL") version 2 or any - later version, in which case the provisions of the GPL are - applicable instead of the above. If you wish to allow the use of - your version of this package only under the terms of the GPL and - not to allow others to use your version of this file under the BSD - license, indicate your decision by deleting the provisions above - and replace them with the notice and other provisions required by - the GPL in this and the other files of this package. If you do not - delete the provisions above, a recipient may use your version of - this file under either the BSD or the GPL. - - On Debian systems, the complete text of the GNU General Public License - version 2 can be found in `/usr/share/common-licenses/GPL-2'. - -====================================================================== - -Files copied from the Intel AESNI Sample Library are subject to the -following license: - - Copyright (C) 2010, Intel Corporation - All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials - provided with the distribution. - - * Neither the name of Intel Corporation nor the names of its - contributors may be used to endorse or promote products - derived from this software without specific prior written - permission. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS - FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE - COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, - INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR - SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, - STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED - OF THE POSSIBILITY OF SUCH DAMAGE. - -====================================================================== - -The following notice applies to -"src/ccapi/common/win/OldCC/autolock.hxx": - - Copyright (C) 1998 by Danilo Almeida. All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS - FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE - COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, - INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR - SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, - STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED - OF THE POSSIBILITY OF SUCH DAMAGE. - -====================================================================== - -The Debian Packaging is licensed under the same terms as MIT Kerberos. - - ----------------------------------------- -libkeyutils1 version 1.6-6 - - -Copyright: - -Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ -Upstream-Name: keyutils -Upstream-Contact: David Howells -Source: http://people.redhat.com/~dhowells/keyutils/ - -Files: * -Copyright: 2005-2018, Red Hat -License: GPL-2+ - -Files: keyutils.* -Copyright: 2005-2018, Red Hat -License: LGPL-2+ - -Files: debian/* -Copyright: 2006-2013, Daniel Baumann - 2013, Luk Claes - 2014-2019, Christian Kastner -License: LGPL-2+ - -License: GPL-2+ - 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. - . - 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. - . - You should have received a copy of the GNU General Public License - along with this program. If not, see . - . - The complete text of the GNU General Public License - can be found in /usr/share/common-licenses/GPL-2 file. - -License: LGPL-2+ - This program is free software: you can redistribute it and/or modify - it under the terms of the GNU Lesser General Public License as published by - the Free Software Foundation, either version 2 of the License, or - (at your option) any later version. - . - 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 Lesser General Public License for more details. - . - You should have received a copy of the GNU Lesser General Public License - along with this program. If not, see . - . - The complete text of the GNU Lesser General Public License - can be found in /usr/share/common-licenses/LGPL-2 file. - - ----------------------------------------- -libkrb5-3 version 1.17-3+deb10u1 - - -Copyright: - -This package was debianized by Sam Hartman on -Thu, 19 Oct 2000 16:05:06 -0400. - -It was downloaded from: - - - -Upstream Maintainers: - - MIT Kerberos Team - -Copyright: - -Copyright (C) 1985-2018 by the Massachusetts Institute of Technology. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - -* Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -* Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -Downloading of this software may constitute an export of cryptographic -software from the United States of America that is subject to the -United States Export Administration Regulations (EAR), 15 CFR 730-774. -Additional laws or regulations may apply. It is the responsibility of -the person or entity contemplating export to comply with all -applicable export laws and regulations, including obtaining any -required license from the U.S. government. - -The U.S. government prohibits export of encryption source code to -certain countries and individuals, including, but not limited to, the -countries of Cuba, Iran, North Korea, Sudan, Syria, and residents and -nationals of those countries. - -Documentation components of this software distribution are licensed -under a Creative Commons Attribution-ShareAlike 3.0 Unported License. -(http://creativecommons.org/licenses/by-sa/3.0/) - -Individual source code files are copyright MIT, Cygnus Support, -Novell, OpenVision Technologies, Oracle, Red Hat, Sun Microsystems, -FundsXpress, and others. - -Project Athena, Athena, Athena MUSE, Discuss, Hesiod, Kerberos, Moira, -and Zephyr are trademarks of the Massachusetts Institute of Technology -(MIT). No commercial use of these trademarks may be made without -prior written permission of MIT. - -"Commercial use" means use of a name in a product or other for-profit -manner. It does NOT prevent a commercial firm from referring to the -MIT trademarks in order to convey information (although in doing so, -recognition of their trademark status should be given). - -====================================================================== - -The following copyright and permission notice applies to the -OpenVision Kerberos Administration system located in "kadmin/create", -"kadmin/dbutil", "kadmin/passwd", "kadmin/server", "lib/kadm5", and -portions of "lib/rpc": - - Copyright, OpenVision Technologies, Inc., 1993-1996, All Rights - Reserved - - WARNING: Retrieving the OpenVision Kerberos Administration system - source code, as described below, indicates your acceptance of the - following terms. If you do not agree to the following terms, do - not retrieve the OpenVision Kerberos administration system. - - You may freely use and distribute the Source Code and Object Code - compiled from it, with or without modification, but this Source - Code is provided to you "AS IS" EXCLUSIVE OF ANY WARRANTY, - INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY OR - FITNESS FOR A PARTICULAR PURPOSE, OR ANY OTHER WARRANTY, WHETHER - EXPRESS OR IMPLIED. IN NO EVENT WILL OPENVISION HAVE ANY LIABILITY - FOR ANY LOST PROFITS, LOSS OF DATA OR COSTS OF PROCUREMENT OF - SUBSTITUTE GOODS OR SERVICES, OR FOR ANY SPECIAL, INDIRECT, OR - CONSEQUENTIAL DAMAGES ARISING OUT OF THIS AGREEMENT, INCLUDING, - WITHOUT LIMITATION, THOSE RESULTING FROM THE USE OF THE SOURCE - CODE, OR THE FAILURE OF THE SOURCE CODE TO PERFORM, OR FOR ANY - OTHER REASON. - - OpenVision retains all copyrights in the donated Source Code. - OpenVision also retains copyright to derivative works of the Source - Code, whether created by OpenVision or by a third party. The - OpenVision copyright notice must be preserved if derivative works - are made based on the donated Source Code. - - OpenVision Technologies, Inc. has donated this Kerberos - Administration system to MIT for inclusion in the standard Kerberos - 5 distribution. This donation underscores our commitment to - continuing Kerberos technology development and our gratitude for - the valuable work which has been performed by MIT and the Kerberos - community. - -====================================================================== - - Portions contributed by Matt Crawford "crawdad@fnal.gov" were work - performed at Fermi National Accelerator Laboratory, which is - operated by Universities Research Association, Inc., under contract - DE-AC02-76CHO3000 with the U.S. Department of Energy. - -====================================================================== - -Portions of "src/lib/crypto" have the following copyright: - - Copyright (C) 1998 by the FundsXpress, INC. - - All rights reserved. - - Export of this software from the United States of America may - require a specific license from the United States Government. - It is the responsibility of any person or organization - contemplating export to obtain such a license before exporting. - - WITHIN THAT CONSTRAINT, permission to use, copy, modify, and - distribute this software and its documentation for any purpose and - without fee is hereby granted, provided that the above copyright - notice appear in all copies and that both that copyright notice and - this permission notice appear in supporting documentation, and that - the name of FundsXpress. not be used in advertising or publicity - pertaining to distribution of the software without specific, - written prior permission. FundsXpress makes no representations - about the suitability of this software for any purpose. It is - provided "as is" without express or implied warranty. - - THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR - IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED - WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. - -====================================================================== - -The implementation of the AES encryption algorithm in -"src/lib/crypto/builtin/aes" has the following copyright: - - Copyright (C) 2001, Dr Brian Gladman "brg@gladman.uk.net", Worcester, UK. - All rights reserved. - - LICENSE TERMS - - The free distribution and use of this software in both source and - binary form is allowed (with or without changes) provided that: - - 1. distributions of this source code include the above copyright - notice, this list of conditions and the following disclaimer; - - 2. distributions in binary form include the above copyright notice, - this list of conditions and the following disclaimer in the - documentation and/or other associated materials; - - 3. the copyright holder's name is not used to endorse products - built using this software without specific written permission. - - DISCLAIMER - - This software is provided 'as is' with no explcit or implied - warranties in respect of any properties, including, but not limited - to, correctness and fitness for purpose. - -====================================================================== - -Portions contributed by Red Hat, including the pre-authentication -plug-in framework and the NSS crypto implementation, contain the -following copyright: - - Copyright (C) 2006 Red Hat, Inc. - Portions copyright (C) 2006 Massachusetts Institute of Technology - All Rights Reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of Red Hat, Inc., nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS - FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE - COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, - INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR - SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, - STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED - OF THE POSSIBILITY OF SUCH DAMAGE. - -====================================================================== - -The bundled verto source code is subject to the following license: - - Copyright 2011 Red Hat, Inc. - - Permission is hereby granted, free of charge, to any person - obtaining a copy of this software and associated documentation - files (the "Software"), to deal in the Software without - restriction, including without limitation the rights to use, copy, - modify, merge, publish, distribute, sublicense, and/or sell copies - of the Software, and to permit persons to whom the Software is - furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT - HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, - WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER - DEALINGS IN THE SOFTWARE. - -====================================================================== - -The MS-KKDCP client implementation has the following copyright: - - Copyright 2013,2014 Red Hat, Inc. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above - copyright notice, this list of conditions and the following - disclaimer. - - 2. Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials - provided with the distribution. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS - FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE - COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, - INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR - SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, - STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED - OF THE POSSIBILITY OF SUCH DAMAGE. - -====================================================================== - -The implementations of GSSAPI mechglue in GSSAPI-SPNEGO in -"src/lib/gssapi", including the following files: - - lib/gssapi/generic/gssapi_err_generic.et - lib/gssapi/mechglue/g_accept_sec_context.c - lib/gssapi/mechglue/g_acquire_cred.c - lib/gssapi/mechglue/g_canon_name.c - lib/gssapi/mechglue/g_compare_name.c - lib/gssapi/mechglue/g_context_time.c - lib/gssapi/mechglue/g_delete_sec_context.c - lib/gssapi/mechglue/g_dsp_name.c - lib/gssapi/mechglue/g_dsp_status.c - lib/gssapi/mechglue/g_dup_name.c - lib/gssapi/mechglue/g_exp_sec_context.c - lib/gssapi/mechglue/g_export_name.c - lib/gssapi/mechglue/g_glue.c - lib/gssapi/mechglue/g_imp_name.c - lib/gssapi/mechglue/g_imp_sec_context.c - lib/gssapi/mechglue/g_init_sec_context.c - lib/gssapi/mechglue/g_initialize.c - lib/gssapi/mechglue/g_inquire_context.c - lib/gssapi/mechglue/g_inquire_cred.c - lib/gssapi/mechglue/g_inquire_names.c - lib/gssapi/mechglue/g_process_context.c - lib/gssapi/mechglue/g_rel_buffer.c - lib/gssapi/mechglue/g_rel_cred.c - lib/gssapi/mechglue/g_rel_name.c - lib/gssapi/mechglue/g_rel_oid_set.c - lib/gssapi/mechglue/g_seal.c - lib/gssapi/mechglue/g_sign.c - lib/gssapi/mechglue/g_store_cred.c - lib/gssapi/mechglue/g_unseal.c - lib/gssapi/mechglue/g_userok.c - lib/gssapi/mechglue/g_utils.c - lib/gssapi/mechglue/g_verify.c - lib/gssapi/mechglue/gssd_pname_to_uid.c - lib/gssapi/mechglue/mglueP.h - lib/gssapi/mechglue/oid_ops.c - lib/gssapi/spnego/gssapiP_spnego.h - lib/gssapi/spnego/spnego_mech.c - -and the initial implementation of incremental propagation, including -the following new or changed files: - - include/iprop_hdr.h - kadmin/server/ipropd_svc.c - lib/kdb/iprop.x - lib/kdb/kdb_convert.c - lib/kdb/kdb_log.c - lib/kdb/kdb_log.h - lib/krb5/error_tables/kdb5_err.et - slave/kpropd_rpc.c - slave/kproplog.c - -are subject to the following license: - - Copyright (C) 2004 Sun Microsystems, Inc. - - Permission is hereby granted, free of charge, to any person - obtaining a copy of this software and associated documentation - files (the "Software"), to deal in the Software without - restriction, including without limitation the rights to use, copy, - modify, merge, publish, distribute, sublicense, and/or sell copies - of the Software, and to permit persons to whom the Software is - furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS - BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN - ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN - CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - SOFTWARE. - -====================================================================== - -Kerberos V5 includes documentation and software developed at the -University of California at Berkeley, which includes this copyright -notice: - - Copyright (C) 1983 Regents of the University of California. - All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - 2. Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - 3. Neither the name of the University nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS "AS IS" - AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED - TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A - PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS - OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF - USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, - OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT - OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -====================================================================== - -Portions contributed by Novell, Inc., including the LDAP database -backend, are subject to the following license: - - Copyright (C) 2004-2005, Novell, Inc. - All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * The copyright holder's name is not used to endorse or promote - products derived from this software without specific prior - written permission. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS - FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE - COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, - INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR - SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, - STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED - OF THE POSSIBILITY OF SUCH DAMAGE. - -====================================================================== - -Portions funded by Sandia National Laboratory and developed by the -University of Michigan's Center for Information Technology -Integration, including the PKINIT implementation, are subject to the -following license: - - COPYRIGHT (C) 2006-2007 - THE REGENTS OF THE UNIVERSITY OF MICHIGAN - ALL RIGHTS RESERVED - - Permission is granted to use, copy, create derivative works and - redistribute this software and such derivative works for any - purpose, so long as the name of The University of Michigan is not - used in any advertising or publicity pertaining to the use of - distribution of this software without specific, written prior - authorization. If the above copyright notice or any other - identification of the University of Michigan is included in any - copy of any portion of this software, then the disclaimer below - must also be included. - - THIS SOFTWARE IS PROVIDED AS IS, WITHOUT REPRESENTATION FROM THE - UNIVERSITY OF MICHIGAN AS TO ITS FITNESS FOR ANY PURPOSE, AND - WITHOUT WARRANTY BY THE UNIVERSITY OF MICHIGAN OF ANY KIND, EITHER - EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION THE IMPLIED - WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. - THE REGENTS OF THE UNIVERSITY OF MICHIGAN SHALL NOT BE LIABLE FOR - ANY DAMAGES, INCLUDING SPECIAL, INDIRECT, INCIDENTAL, OR - CONSEQUENTIAL DAMAGES, WITH RESPECT TO ANY CLAIM ARISING OUT OF OR - IN CONNECTION WITH THE USE OF THE SOFTWARE, EVEN IF IT HAS BEEN OR - IS HEREAFTER ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. - -====================================================================== - -The pkcs11.h file included in the PKINIT code has the following -license: - - Copyright 2006 g10 Code GmbH - Copyright 2006 Andreas Jellinghaus - - This file is free software; as a special exception the author gives - unlimited permission to copy and/or distribute it, with or without - modifications, as long as this notice is preserved. - - This file is distributed in the hope that it will be useful, but - WITHOUT ANY WARRANTY, to the extent permitted by law; without even - the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR - PURPOSE. - -====================================================================== - -Portions contributed by Apple Inc. are subject to the following -license: - - Copyright 2004-2008 Apple Inc. All Rights Reserved. - - Export of this software from the United States of America may - require a specific license from the United States Government. - It is the responsibility of any person or organization - contemplating export to obtain such a license before exporting. - - WITHIN THAT CONSTRAINT, permission to use, copy, modify, and - distribute this software and its documentation for any purpose and - without fee is hereby granted, provided that the above copyright - notice appear in all copies and that both that copyright notice and - this permission notice appear in supporting documentation, and that - the name of Apple Inc. not be used in advertising or publicity - pertaining to distribution of the software without specific, - written prior permission. Apple Inc. makes no representations - about the suitability of this software for any purpose. It is - provided "as is" without express or implied warranty. - - THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR - IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED - WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. - -====================================================================== - -The implementations of UTF-8 string handling in src/util/support and -src/lib/krb5/unicode are subject to the following copyright and -permission notice: - - The OpenLDAP Public License - Version 2.8, 17 August 2003 - - Redistribution and use of this software and associated - documentation ("Software"), with or without modification, are - permitted provided that the following conditions are met: - - 1. Redistributions in source form must retain copyright statements - and notices, - - 2. Redistributions in binary form must reproduce applicable - copyright statements and notices, this list of conditions, and - the following disclaimer in the documentation and/or other - materials provided with the distribution, and - - 3. Redistributions must contain a verbatim copy of this document. - - The OpenLDAP Foundation may revise this license from time to time. - Each revision is distinguished by a version number. You may use - this Software under terms of this license revision or under the - terms of any subsequent revision of the license. - - THIS SOFTWARE IS PROVIDED BY THE OPENLDAP FOUNDATION AND ITS - CONTRIBUTORS "AS IS" AND ANY EXPRESSED OR IMPLIED WARRANTIES, - INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF - MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - DISCLAIMED. IN NO EVENT SHALL THE OPENLDAP FOUNDATION, ITS - CONTRIBUTORS, OR THE AUTHOR(S) OR OWNER(S) OF THE SOFTWARE BE - LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT - OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR - BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF - LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE - USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH - DAMAGE. - - The names of the authors and copyright holders must not be used in - advertising or otherwise to promote the sale, use or other dealing - in this Software without specific, written prior permission. Title - to copyright in this Software shall at all times remain with - copyright holders. - - OpenLDAP is a registered trademark of the OpenLDAP Foundation. - - Copyright 1999-2003 The OpenLDAP Foundation, Redwood City, - California, USA. All Rights Reserved. Permission to copy and - distribute verbatim copies of this document is granted. - -====================================================================== - -Marked test programs in src/lib/krb5/krb have the following copyright: - - Copyright (C) 2006 Kungliga Tekniska Högskola - (Royal Institute of Technology, Stockholm, Sweden). - All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - 2. Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - 3. Neither the name of KTH nor the names of its contributors may be - used to endorse or promote products derived from this software - without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY KTH AND ITS CONTRIBUTORS "AS IS" AND - ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, - THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A - PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL KTH OR ITS - CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF - USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, - OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT - OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -====================================================================== - -The KCM Mach RPC definition file used on OS X has the following -copyright: - - Copyright (C) 2009 Kungliga Tekniska Högskola - (Royal Institute of Technology, Stockholm, Sweden). - All rights reserved. - - Portions Copyright (C) 2009 Apple Inc. All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above - copyright notice, this list of conditions and the following - disclaimer. - - 2. Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - 3. Neither the name of the Institute nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS "AS IS" - AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED - TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A - PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE - OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF - USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, - OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT - OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -====================================================================== - -Portions of the RPC implementation in src/lib/rpc and -src/include/gssrpc have the following copyright and permission notice: - - Copyright (C) 2010, Oracle America, Inc. - - All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - 2. Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - 3. Neither the name of the "Oracle America, Inc." nor the names of - its contributors may be used to endorse or promote products - derived from this software without specific prior written - permission. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS - FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE - COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, - INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR - SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, - STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED - OF THE POSSIBILITY OF SUCH DAMAGE. - -====================================================================== - - Copyright (C) 2006,2007,2009 NTT (Nippon Telegraph and Telephone - Corporation). All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer as - the first lines of this file unmodified. - - 2. Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - THIS SOFTWARE IS PROVIDED BY NTT "AS IS" AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - DISCLAIMED. IN NO EVENT SHALL NTT BE LIABLE FOR ANY DIRECT, - INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR - SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, - STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED - OF THE POSSIBILITY OF SUCH DAMAGE. - -====================================================================== - - Copyright 2000 by Carnegie Mellon University - - All Rights Reserved - - Permission to use, copy, modify, and distribute this software and - its documentation for any purpose and without fee is hereby - granted, provided that the above copyright notice appear in all - copies and that both that copyright notice and this permission - notice appear in supporting documentation, and that the name of - Carnegie Mellon University not be used in advertising or publicity - pertaining to distribution of the software without specific, - written prior permission. - - CARNEGIE MELLON UNIVERSITY DISCLAIMS ALL WARRANTIES WITH REGARD TO - THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY - AND FITNESS, IN NO EVENT SHALL CARNEGIE MELLON UNIVERSITY BE LIABLE - FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES - WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN - AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING - OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS - SOFTWARE. - -====================================================================== - - Copyright (C) 2002 Naval Research Laboratory (NRL/CCS) - - Permission to use, copy, modify and distribute this software and - its documentation is hereby granted, provided that both the - copyright notice and this permission notice appear in all copies of - the software, derivative works or modified versions, and any - portions thereof. - - NRL ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS" CONDITION AND - DISCLAIMS ANY LIABILITY OF ANY KIND FOR ANY DAMAGES WHATSOEVER - RESULTING FROM THE USE OF THIS SOFTWARE. - -====================================================================== - -Portions extracted from Internet RFCs have the following copyright -notice: - - Copyright (C) The Internet Society (2006). - - This document is subject to the rights, licenses and restrictions - contained in BCP 78, and except as set forth therein, the authors - retain all their rights. - - This document and the information contained herein are provided on - an "AS IS" basis and THE CONTRIBUTOR, THE ORGANIZATION HE/SHE - REPRESENTS OR IS SPONSORED BY (IF ANY), THE INTERNET SOCIETY AND - THE INTERNET ENGINEERING TASK FORCE DISCLAIM ALL WARRANTIES, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT - THE USE OF THE INFORMATION HEREIN WILL NOT INFRINGE ANY RIGHTS OR - ANY IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A - PARTICULAR PURPOSE. - -====================================================================== - - Copyright (C) 1991, 1992, 1994 by Cygnus Support. - - Permission to use, copy, modify, and distribute this software and - its documentation for any purpose and without fee is hereby - granted, provided that the above copyright notice appear in all - copies and that both that copyright notice and this permission - notice appear in supporting documentation. Cygnus Support makes no - representations about the suitability of this software for any - purpose. It is provided "as is" without express or implied - warranty. - -====================================================================== - - Copyright (C) 2006 Secure Endpoints Inc. - - Permission is hereby granted, free of charge, to any person - obtaining a copy of this software and associated documentation - files (the "Software"), to deal in the Software without - restriction, including without limitation the rights to use, copy, - modify, merge, publish, distribute, sublicense, and/or sell copies - of the Software, and to permit persons to whom the Software is - furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS - BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN - ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN - CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - SOFTWARE. - -====================================================================== - -Portions of the implementation of the Fortuna-like PRNG are subject to -the following notice: - - Copyright (C) 2005 Marko Kreen - All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - 2. Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS "AS IS" - AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED - TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A - PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR - CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF - USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, - OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT - OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - - Copyright (C) 1994 by the University of Southern California - - EXPORT OF THIS SOFTWARE from the United States of America may - require a specific license from the United States Government. It - is the responsibility of any person or organization - contemplating export to obtain such a license before exporting. - - WITHIN THAT CONSTRAINT, permission to copy, modify, and distribute - this software and its documentation in source and binary forms is - hereby granted, provided that any documentation or other materials - related to such distribution or use acknowledge that the software - was developed by the University of Southern California. - - DISCLAIMER OF WARRANTY. THIS SOFTWARE IS PROVIDED "AS IS". The - University of Southern California MAKES NO REPRESENTATIONS OR - WARRANTIES, EXPRESS OR IMPLIED. By way of example, but not - limitation, the University of Southern California MAKES NO - REPRESENTATIONS OR WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY - PARTICULAR PURPOSE. The University of Southern California shall not - be held liable for any liability nor for any direct, indirect, or - consequential damages with respect to any claim by the user or - distributor of the ksu software. - -====================================================================== - - Copyright (C) 1995 - The President and Fellows of Harvard University - - This code is derived from software contributed to Harvard by Jeremy - Rassen. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - 2. Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - 3. All advertising materials mentioning features or use of this - software must display the following acknowledgement: - - This product includes software developed by the University of - California, Berkeley and its contributors. - - 4. Neither the name of the University nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS "AS IS" - AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED - TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A - PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS - OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF - USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, - OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT - OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -====================================================================== - - Copyright (C) 2008 by the Massachusetts Institute of Technology. - Copyright 1995 by Richard P. Basch. All Rights Reserved. - Copyright 1995 by Lehman Brothers, Inc. All Rights Reserved. - - Export of this software from the United States of America may - require a specific license from the United States Government. It - is the responsibility of any person or organization - contemplating export to obtain such a license before exporting. - - WITHIN THAT CONSTRAINT, permission to use, copy, modify, and - distribute this software and its documentation for any purpose and - without fee is hereby granted, provided that the above copyright - notice appear in all copies and that both that copyright notice and - this permission notice appear in supporting documentation, and that - the name of Richard P. Basch, Lehman Brothers and M.I.T. not be - used in advertising or publicity pertaining to distribution of the - software without specific, written prior permission. Richard P. - Basch, Lehman Brothers and M.I.T. make no representations about the - suitability of this software for any purpose. It is provided "as - is" without express or implied warranty. - -====================================================================== - -The following notice applies to "src/lib/krb5/krb/strptime.c" and -"src/include/k5-queue.h". - - Copyright (C) 1997, 1998 The NetBSD Foundation, Inc. - All rights reserved. - - This code was contributed to The NetBSD Foundation by Klaus Klein. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - 2. Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - 3. All advertising materials mentioning features or use of this - software must display the following acknowledgement: - - This product includes software developed by the NetBSD - Foundation, Inc. and its contributors. - - 4. Neither the name of The NetBSD Foundation nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND - CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, - INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF - MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS BE - LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT - OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR - BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF - LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE - USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH - DAMAGE. - -====================================================================== - -The following notice applies to Unicode library files in -"src/lib/krb5/unicode": - - Copyright 1997, 1998, 1999 Computing Research Labs, - New Mexico State University - - Permission is hereby granted, free of charge, to any person - obtaining a copy of this software and associated documentation - files (the "Software"), to deal in the Software without - restriction, including without limitation the rights to use, copy, - modify, merge, publish, distribute, sublicense, and/or sell copies - of the Software, and to permit persons to whom the Software is - furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE COMPUTING RESEARCH LAB OR - NEW MEXICO STATE UNIVERSITY BE LIABLE FOR ANY CLAIM, DAMAGES OR - OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR - OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE - OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -====================================================================== - -The following notice applies to "src/util/support/strlcpy.c": - - Copyright (C) 1998 Todd C. Miller "Todd.Miller@courtesan.com" - - Permission to use, copy, modify, and distribute this software for - any purpose with or without fee is hereby granted, provided that - the above copyright notice and this permission notice appear in all - copies. - - THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL - WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED - WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE - AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR - CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS - OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, - NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN - CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - -====================================================================== - -The following notice applies to "src/util/profile/argv_parse.c" and -"src/util/profile/argv_parse.h": - - Copyright 1999 by Theodore Ts'o. - - Permission to use, copy, modify, and distribute this software for - any purpose with or without fee is hereby granted, provided that - the above copyright notice and this permission notice appear in all - copies. THE SOFTWARE IS PROVIDED "AS IS" AND THEODORE TS'O (THE - AUTHOR) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, - INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN - NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, - INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER - RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION - OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR - IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. (Isn't - it sick that the U.S. culture of lawsuit-happy lawyers requires - this kind of disclaimer?) - -====================================================================== - -The following notice applies to SWIG-generated code in -"src/util/profile/profile_tcl.c": - - Copyright (C) 1999-2000, The University of Chicago - - This file may be freely redistributed without license or fee - provided this copyright message remains intact. - -====================================================================== - -The following notice applies to portiions of "src/lib/rpc" and -"src/include/gssrpc": - - Copyright (C) 2000 The Regents of the University of Michigan. All - rights reserved. - - Copyright (C) 2000 Dug Song "dugsong@UMICH.EDU". All rights - reserved, all wrongs reversed. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - 2. Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - 3. Neither the name of the University nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT - OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR - BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF - LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE - USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH - DAMAGE. - -====================================================================== - -Implementations of the MD4 algorithm are subject to the following -notice: - - Copyright (C) 1990, RSA Data Security, Inc. All rights reserved. - - License to copy and use this software is granted provided that it - is identified as the "RSA Data Security, Inc. MD4 Message Digest - Algorithm" in all material mentioning or referencing this software - or this function. - - License is also granted to make and use derivative works provided - that such works are identified as "derived from the RSA Data - Security, Inc. MD4 Message Digest Algorithm" in all material - mentioning or referencing the derived work. - - RSA Data Security, Inc. makes no representations concerning either - the merchantability of this software or the suitability of this - software for any particular purpose. It is provided "as is" - without express or implied warranty of any kind. - - These notices must be retained in any copies of any part of this - documentation and/or software. - -====================================================================== - -Implementations of the MD5 algorithm are subject to the following -notice: - - Copyright (C) 1990, RSA Data Security, Inc. All rights reserved. - - License to copy and use this software is granted provided that it - is identified as the "RSA Data Security, Inc. MD5 Message- Digest - Algorithm" in all material mentioning or referencing this software - or this function. - - License is also granted to make and use derivative works provided - that such works are identified as "derived from the RSA Data - Security, Inc. MD5 Message-Digest Algorithm" in all material - mentioning or referencing the derived work. - - RSA Data Security, Inc. makes no representations concerning either - the merchantability of this software or the suitability of this - software for any particular purpose. It is provided "as is" - without express or implied warranty of any kind. - - These notices must be retained in any copies of any part of this - documentation and/or software. - -====================================================================== - -The following notice applies to -"src/lib/crypto/crypto_tests/t_mddriver.c": - - Copyright (C) 1990-2, RSA Data Security, Inc. Created 1990. All - rights reserved. - - RSA Data Security, Inc. makes no representations concerning either - the merchantability of this software or the suitability of this - software for any particular purpose. It is provided "as is" without - express or implied warranty of any kind. - - These notices must be retained in any copies of any part of this - documentation and/or software. - -====================================================================== - -Portions of "src/lib/krb5" are subject to the following notice: - - Copyright (C) 1994 CyberSAFE Corporation. - Copyright 1990,1991,2007,2008 by the Massachusetts Institute of Technology. - All Rights Reserved. - - Export of this software from the United States of America may - require a specific license from the United States Government. It - is the responsibility of any person or organization - contemplating export to obtain such a license before exporting. - - WITHIN THAT CONSTRAINT, permission to use, copy, modify, and - distribute this software and its documentation for any purpose and - without fee is hereby granted, provided that the above copyright - notice appear in all copies and that both that copyright notice and - this permission notice appear in supporting documentation, and that - the name of M.I.T. not be used in advertising or publicity - pertaining to distribution of the software without specific, - written prior permission. Furthermore if you modify this software - you must label your software as modified software and not - distribute it in such a fashion that it might be confused with the - original M.I.T. software. Neither M.I.T., the Open Computing - Security Group, nor CyberSAFE Corporation make any representations - about the suitability of this software for any purpose. It is - provided "as is" without express or implied warranty. - -====================================================================== - -Portions contributed by PADL Software are subject to the following -license: - - Copyright (c) 2011, PADL Software Pty Ltd. All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - 2. Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - 3. Neither the name of PADL Software nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY PADL SOFTWARE AND CONTRIBUTORS "AS IS" - AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED - TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A - PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL PADL SOFTWARE - OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF - USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, - OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT - OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -====================================================================== - -The bundled libev source code is subject to the following license: - - All files in libev are Copyright (C)2007,2008,2009 Marc Alexander - Lehmann. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS - FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE - COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, - INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR - SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, - STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED - OF THE POSSIBILITY OF SUCH DAMAGE. - - Alternatively, the contents of this package may be used under the - terms of the GNU General Public License ("GPL") version 2 or any - later version, in which case the provisions of the GPL are - applicable instead of the above. If you wish to allow the use of - your version of this package only under the terms of the GPL and - not to allow others to use your version of this file under the BSD - license, indicate your decision by deleting the provisions above - and replace them with the notice and other provisions required by - the GPL in this and the other files of this package. If you do not - delete the provisions above, a recipient may use your version of - this file under either the BSD or the GPL. - - On Debian systems, the complete text of the GNU General Public License - version 2 can be found in `/usr/share/common-licenses/GPL-2'. - -====================================================================== - -Files copied from the Intel AESNI Sample Library are subject to the -following license: - - Copyright (C) 2010, Intel Corporation - All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials - provided with the distribution. - - * Neither the name of Intel Corporation nor the names of its - contributors may be used to endorse or promote products - derived from this software without specific prior written - permission. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS - FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE - COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, - INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR - SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, - STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED - OF THE POSSIBILITY OF SUCH DAMAGE. - -====================================================================== - -The following notice applies to -"src/ccapi/common/win/OldCC/autolock.hxx": - - Copyright (C) 1998 by Danilo Almeida. All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS - FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE - COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, - INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR - SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, - STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED - OF THE POSSIBILITY OF SUCH DAMAGE. - -====================================================================== - -The Debian Packaging is licensed under the same terms as MIT Kerberos. - - ----------------------------------------- -libkrb5support0 version 1.17-3+deb10u1 - - -Copyright: - -This package was debianized by Sam Hartman on -Thu, 19 Oct 2000 16:05:06 -0400. - -It was downloaded from: - - - -Upstream Maintainers: - - MIT Kerberos Team - -Copyright: - -Copyright (C) 1985-2018 by the Massachusetts Institute of Technology. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - -* Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -* Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -Downloading of this software may constitute an export of cryptographic -software from the United States of America that is subject to the -United States Export Administration Regulations (EAR), 15 CFR 730-774. -Additional laws or regulations may apply. It is the responsibility of -the person or entity contemplating export to comply with all -applicable export laws and regulations, including obtaining any -required license from the U.S. government. - -The U.S. government prohibits export of encryption source code to -certain countries and individuals, including, but not limited to, the -countries of Cuba, Iran, North Korea, Sudan, Syria, and residents and -nationals of those countries. - -Documentation components of this software distribution are licensed -under a Creative Commons Attribution-ShareAlike 3.0 Unported License. -(http://creativecommons.org/licenses/by-sa/3.0/) - -Individual source code files are copyright MIT, Cygnus Support, -Novell, OpenVision Technologies, Oracle, Red Hat, Sun Microsystems, -FundsXpress, and others. - -Project Athena, Athena, Athena MUSE, Discuss, Hesiod, Kerberos, Moira, -and Zephyr are trademarks of the Massachusetts Institute of Technology -(MIT). No commercial use of these trademarks may be made without -prior written permission of MIT. - -"Commercial use" means use of a name in a product or other for-profit -manner. It does NOT prevent a commercial firm from referring to the -MIT trademarks in order to convey information (although in doing so, -recognition of their trademark status should be given). - -====================================================================== - -The following copyright and permission notice applies to the -OpenVision Kerberos Administration system located in "kadmin/create", -"kadmin/dbutil", "kadmin/passwd", "kadmin/server", "lib/kadm5", and -portions of "lib/rpc": - - Copyright, OpenVision Technologies, Inc., 1993-1996, All Rights - Reserved - - WARNING: Retrieving the OpenVision Kerberos Administration system - source code, as described below, indicates your acceptance of the - following terms. If you do not agree to the following terms, do - not retrieve the OpenVision Kerberos administration system. - - You may freely use and distribute the Source Code and Object Code - compiled from it, with or without modification, but this Source - Code is provided to you "AS IS" EXCLUSIVE OF ANY WARRANTY, - INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY OR - FITNESS FOR A PARTICULAR PURPOSE, OR ANY OTHER WARRANTY, WHETHER - EXPRESS OR IMPLIED. IN NO EVENT WILL OPENVISION HAVE ANY LIABILITY - FOR ANY LOST PROFITS, LOSS OF DATA OR COSTS OF PROCUREMENT OF - SUBSTITUTE GOODS OR SERVICES, OR FOR ANY SPECIAL, INDIRECT, OR - CONSEQUENTIAL DAMAGES ARISING OUT OF THIS AGREEMENT, INCLUDING, - WITHOUT LIMITATION, THOSE RESULTING FROM THE USE OF THE SOURCE - CODE, OR THE FAILURE OF THE SOURCE CODE TO PERFORM, OR FOR ANY - OTHER REASON. - - OpenVision retains all copyrights in the donated Source Code. - OpenVision also retains copyright to derivative works of the Source - Code, whether created by OpenVision or by a third party. The - OpenVision copyright notice must be preserved if derivative works - are made based on the donated Source Code. - - OpenVision Technologies, Inc. has donated this Kerberos - Administration system to MIT for inclusion in the standard Kerberos - 5 distribution. This donation underscores our commitment to - continuing Kerberos technology development and our gratitude for - the valuable work which has been performed by MIT and the Kerberos - community. - -====================================================================== - - Portions contributed by Matt Crawford "crawdad@fnal.gov" were work - performed at Fermi National Accelerator Laboratory, which is - operated by Universities Research Association, Inc., under contract - DE-AC02-76CHO3000 with the U.S. Department of Energy. - -====================================================================== - -Portions of "src/lib/crypto" have the following copyright: - - Copyright (C) 1998 by the FundsXpress, INC. - - All rights reserved. - - Export of this software from the United States of America may - require a specific license from the United States Government. - It is the responsibility of any person or organization - contemplating export to obtain such a license before exporting. - - WITHIN THAT CONSTRAINT, permission to use, copy, modify, and - distribute this software and its documentation for any purpose and - without fee is hereby granted, provided that the above copyright - notice appear in all copies and that both that copyright notice and - this permission notice appear in supporting documentation, and that - the name of FundsXpress. not be used in advertising or publicity - pertaining to distribution of the software without specific, - written prior permission. FundsXpress makes no representations - about the suitability of this software for any purpose. It is - provided "as is" without express or implied warranty. - - THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR - IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED - WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. - -====================================================================== - -The implementation of the AES encryption algorithm in -"src/lib/crypto/builtin/aes" has the following copyright: - - Copyright (C) 2001, Dr Brian Gladman "brg@gladman.uk.net", Worcester, UK. - All rights reserved. - - LICENSE TERMS - - The free distribution and use of this software in both source and - binary form is allowed (with or without changes) provided that: - - 1. distributions of this source code include the above copyright - notice, this list of conditions and the following disclaimer; - - 2. distributions in binary form include the above copyright notice, - this list of conditions and the following disclaimer in the - documentation and/or other associated materials; - - 3. the copyright holder's name is not used to endorse products - built using this software without specific written permission. - - DISCLAIMER - - This software is provided 'as is' with no explcit or implied - warranties in respect of any properties, including, but not limited - to, correctness and fitness for purpose. - -====================================================================== - -Portions contributed by Red Hat, including the pre-authentication -plug-in framework and the NSS crypto implementation, contain the -following copyright: - - Copyright (C) 2006 Red Hat, Inc. - Portions copyright (C) 2006 Massachusetts Institute of Technology - All Rights Reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of Red Hat, Inc., nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS - FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE - COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, - INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR - SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, - STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED - OF THE POSSIBILITY OF SUCH DAMAGE. - -====================================================================== - -The bundled verto source code is subject to the following license: - - Copyright 2011 Red Hat, Inc. - - Permission is hereby granted, free of charge, to any person - obtaining a copy of this software and associated documentation - files (the "Software"), to deal in the Software without - restriction, including without limitation the rights to use, copy, - modify, merge, publish, distribute, sublicense, and/or sell copies - of the Software, and to permit persons to whom the Software is - furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT - HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, - WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER - DEALINGS IN THE SOFTWARE. - -====================================================================== - -The MS-KKDCP client implementation has the following copyright: - - Copyright 2013,2014 Red Hat, Inc. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above - copyright notice, this list of conditions and the following - disclaimer. - - 2. Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials - provided with the distribution. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS - FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE - COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, - INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR - SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, - STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED - OF THE POSSIBILITY OF SUCH DAMAGE. - -====================================================================== - -The implementations of GSSAPI mechglue in GSSAPI-SPNEGO in -"src/lib/gssapi", including the following files: - - lib/gssapi/generic/gssapi_err_generic.et - lib/gssapi/mechglue/g_accept_sec_context.c - lib/gssapi/mechglue/g_acquire_cred.c - lib/gssapi/mechglue/g_canon_name.c - lib/gssapi/mechglue/g_compare_name.c - lib/gssapi/mechglue/g_context_time.c - lib/gssapi/mechglue/g_delete_sec_context.c - lib/gssapi/mechglue/g_dsp_name.c - lib/gssapi/mechglue/g_dsp_status.c - lib/gssapi/mechglue/g_dup_name.c - lib/gssapi/mechglue/g_exp_sec_context.c - lib/gssapi/mechglue/g_export_name.c - lib/gssapi/mechglue/g_glue.c - lib/gssapi/mechglue/g_imp_name.c - lib/gssapi/mechglue/g_imp_sec_context.c - lib/gssapi/mechglue/g_init_sec_context.c - lib/gssapi/mechglue/g_initialize.c - lib/gssapi/mechglue/g_inquire_context.c - lib/gssapi/mechglue/g_inquire_cred.c - lib/gssapi/mechglue/g_inquire_names.c - lib/gssapi/mechglue/g_process_context.c - lib/gssapi/mechglue/g_rel_buffer.c - lib/gssapi/mechglue/g_rel_cred.c - lib/gssapi/mechglue/g_rel_name.c - lib/gssapi/mechglue/g_rel_oid_set.c - lib/gssapi/mechglue/g_seal.c - lib/gssapi/mechglue/g_sign.c - lib/gssapi/mechglue/g_store_cred.c - lib/gssapi/mechglue/g_unseal.c - lib/gssapi/mechglue/g_userok.c - lib/gssapi/mechglue/g_utils.c - lib/gssapi/mechglue/g_verify.c - lib/gssapi/mechglue/gssd_pname_to_uid.c - lib/gssapi/mechglue/mglueP.h - lib/gssapi/mechglue/oid_ops.c - lib/gssapi/spnego/gssapiP_spnego.h - lib/gssapi/spnego/spnego_mech.c - -and the initial implementation of incremental propagation, including -the following new or changed files: - - include/iprop_hdr.h - kadmin/server/ipropd_svc.c - lib/kdb/iprop.x - lib/kdb/kdb_convert.c - lib/kdb/kdb_log.c - lib/kdb/kdb_log.h - lib/krb5/error_tables/kdb5_err.et - slave/kpropd_rpc.c - slave/kproplog.c - -are subject to the following license: - - Copyright (C) 2004 Sun Microsystems, Inc. - - Permission is hereby granted, free of charge, to any person - obtaining a copy of this software and associated documentation - files (the "Software"), to deal in the Software without - restriction, including without limitation the rights to use, copy, - modify, merge, publish, distribute, sublicense, and/or sell copies - of the Software, and to permit persons to whom the Software is - furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS - BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN - ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN - CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - SOFTWARE. - -====================================================================== - -Kerberos V5 includes documentation and software developed at the -University of California at Berkeley, which includes this copyright -notice: - - Copyright (C) 1983 Regents of the University of California. - All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - 2. Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - 3. Neither the name of the University nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS "AS IS" - AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED - TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A - PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS - OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF - USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, - OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT - OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -====================================================================== - -Portions contributed by Novell, Inc., including the LDAP database -backend, are subject to the following license: - - Copyright (C) 2004-2005, Novell, Inc. - All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * The copyright holder's name is not used to endorse or promote - products derived from this software without specific prior - written permission. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS - FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE - COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, - INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR - SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, - STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED - OF THE POSSIBILITY OF SUCH DAMAGE. - -====================================================================== - -Portions funded by Sandia National Laboratory and developed by the -University of Michigan's Center for Information Technology -Integration, including the PKINIT implementation, are subject to the -following license: - - COPYRIGHT (C) 2006-2007 - THE REGENTS OF THE UNIVERSITY OF MICHIGAN - ALL RIGHTS RESERVED - - Permission is granted to use, copy, create derivative works and - redistribute this software and such derivative works for any - purpose, so long as the name of The University of Michigan is not - used in any advertising or publicity pertaining to the use of - distribution of this software without specific, written prior - authorization. If the above copyright notice or any other - identification of the University of Michigan is included in any - copy of any portion of this software, then the disclaimer below - must also be included. - - THIS SOFTWARE IS PROVIDED AS IS, WITHOUT REPRESENTATION FROM THE - UNIVERSITY OF MICHIGAN AS TO ITS FITNESS FOR ANY PURPOSE, AND - WITHOUT WARRANTY BY THE UNIVERSITY OF MICHIGAN OF ANY KIND, EITHER - EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION THE IMPLIED - WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. - THE REGENTS OF THE UNIVERSITY OF MICHIGAN SHALL NOT BE LIABLE FOR - ANY DAMAGES, INCLUDING SPECIAL, INDIRECT, INCIDENTAL, OR - CONSEQUENTIAL DAMAGES, WITH RESPECT TO ANY CLAIM ARISING OUT OF OR - IN CONNECTION WITH THE USE OF THE SOFTWARE, EVEN IF IT HAS BEEN OR - IS HEREAFTER ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. - -====================================================================== - -The pkcs11.h file included in the PKINIT code has the following -license: - - Copyright 2006 g10 Code GmbH - Copyright 2006 Andreas Jellinghaus - - This file is free software; as a special exception the author gives - unlimited permission to copy and/or distribute it, with or without - modifications, as long as this notice is preserved. - - This file is distributed in the hope that it will be useful, but - WITHOUT ANY WARRANTY, to the extent permitted by law; without even - the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR - PURPOSE. - -====================================================================== - -Portions contributed by Apple Inc. are subject to the following -license: - - Copyright 2004-2008 Apple Inc. All Rights Reserved. - - Export of this software from the United States of America may - require a specific license from the United States Government. - It is the responsibility of any person or organization - contemplating export to obtain such a license before exporting. - - WITHIN THAT CONSTRAINT, permission to use, copy, modify, and - distribute this software and its documentation for any purpose and - without fee is hereby granted, provided that the above copyright - notice appear in all copies and that both that copyright notice and - this permission notice appear in supporting documentation, and that - the name of Apple Inc. not be used in advertising or publicity - pertaining to distribution of the software without specific, - written prior permission. Apple Inc. makes no representations - about the suitability of this software for any purpose. It is - provided "as is" without express or implied warranty. - - THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR - IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED - WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. - -====================================================================== - -The implementations of UTF-8 string handling in src/util/support and -src/lib/krb5/unicode are subject to the following copyright and -permission notice: - - The OpenLDAP Public License - Version 2.8, 17 August 2003 - - Redistribution and use of this software and associated - documentation ("Software"), with or without modification, are - permitted provided that the following conditions are met: - - 1. Redistributions in source form must retain copyright statements - and notices, - - 2. Redistributions in binary form must reproduce applicable - copyright statements and notices, this list of conditions, and - the following disclaimer in the documentation and/or other - materials provided with the distribution, and - - 3. Redistributions must contain a verbatim copy of this document. - - The OpenLDAP Foundation may revise this license from time to time. - Each revision is distinguished by a version number. You may use - this Software under terms of this license revision or under the - terms of any subsequent revision of the license. - - THIS SOFTWARE IS PROVIDED BY THE OPENLDAP FOUNDATION AND ITS - CONTRIBUTORS "AS IS" AND ANY EXPRESSED OR IMPLIED WARRANTIES, - INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF - MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - DISCLAIMED. IN NO EVENT SHALL THE OPENLDAP FOUNDATION, ITS - CONTRIBUTORS, OR THE AUTHOR(S) OR OWNER(S) OF THE SOFTWARE BE - LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT - OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR - BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF - LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE - USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH - DAMAGE. - - The names of the authors and copyright holders must not be used in - advertising or otherwise to promote the sale, use or other dealing - in this Software without specific, written prior permission. Title - to copyright in this Software shall at all times remain with - copyright holders. - - OpenLDAP is a registered trademark of the OpenLDAP Foundation. - - Copyright 1999-2003 The OpenLDAP Foundation, Redwood City, - California, USA. All Rights Reserved. Permission to copy and - distribute verbatim copies of this document is granted. - -====================================================================== - -Marked test programs in src/lib/krb5/krb have the following copyright: - - Copyright (C) 2006 Kungliga Tekniska Högskola - (Royal Institute of Technology, Stockholm, Sweden). - All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - 2. Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - 3. Neither the name of KTH nor the names of its contributors may be - used to endorse or promote products derived from this software - without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY KTH AND ITS CONTRIBUTORS "AS IS" AND - ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, - THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A - PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL KTH OR ITS - CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF - USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, - OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT - OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -====================================================================== - -The KCM Mach RPC definition file used on OS X has the following -copyright: - - Copyright (C) 2009 Kungliga Tekniska Högskola - (Royal Institute of Technology, Stockholm, Sweden). - All rights reserved. - - Portions Copyright (C) 2009 Apple Inc. All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above - copyright notice, this list of conditions and the following - disclaimer. - - 2. Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - 3. Neither the name of the Institute nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS "AS IS" - AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED - TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A - PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE - OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF - USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, - OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT - OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -====================================================================== - -Portions of the RPC implementation in src/lib/rpc and -src/include/gssrpc have the following copyright and permission notice: - - Copyright (C) 2010, Oracle America, Inc. - - All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - 2. Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - 3. Neither the name of the "Oracle America, Inc." nor the names of - its contributors may be used to endorse or promote products - derived from this software without specific prior written - permission. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS - FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE - COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, - INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR - SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, - STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED - OF THE POSSIBILITY OF SUCH DAMAGE. - -====================================================================== - - Copyright (C) 2006,2007,2009 NTT (Nippon Telegraph and Telephone - Corporation). All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer as - the first lines of this file unmodified. - - 2. Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - THIS SOFTWARE IS PROVIDED BY NTT "AS IS" AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - DISCLAIMED. IN NO EVENT SHALL NTT BE LIABLE FOR ANY DIRECT, - INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR - SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, - STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED - OF THE POSSIBILITY OF SUCH DAMAGE. - -====================================================================== - - Copyright 2000 by Carnegie Mellon University - - All Rights Reserved - - Permission to use, copy, modify, and distribute this software and - its documentation for any purpose and without fee is hereby - granted, provided that the above copyright notice appear in all - copies and that both that copyright notice and this permission - notice appear in supporting documentation, and that the name of - Carnegie Mellon University not be used in advertising or publicity - pertaining to distribution of the software without specific, - written prior permission. - - CARNEGIE MELLON UNIVERSITY DISCLAIMS ALL WARRANTIES WITH REGARD TO - THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY - AND FITNESS, IN NO EVENT SHALL CARNEGIE MELLON UNIVERSITY BE LIABLE - FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES - WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN - AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING - OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS - SOFTWARE. - -====================================================================== - - Copyright (C) 2002 Naval Research Laboratory (NRL/CCS) - - Permission to use, copy, modify and distribute this software and - its documentation is hereby granted, provided that both the - copyright notice and this permission notice appear in all copies of - the software, derivative works or modified versions, and any - portions thereof. - - NRL ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS" CONDITION AND - DISCLAIMS ANY LIABILITY OF ANY KIND FOR ANY DAMAGES WHATSOEVER - RESULTING FROM THE USE OF THIS SOFTWARE. - -====================================================================== - -Portions extracted from Internet RFCs have the following copyright -notice: - - Copyright (C) The Internet Society (2006). - - This document is subject to the rights, licenses and restrictions - contained in BCP 78, and except as set forth therein, the authors - retain all their rights. - - This document and the information contained herein are provided on - an "AS IS" basis and THE CONTRIBUTOR, THE ORGANIZATION HE/SHE - REPRESENTS OR IS SPONSORED BY (IF ANY), THE INTERNET SOCIETY AND - THE INTERNET ENGINEERING TASK FORCE DISCLAIM ALL WARRANTIES, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT - THE USE OF THE INFORMATION HEREIN WILL NOT INFRINGE ANY RIGHTS OR - ANY IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A - PARTICULAR PURPOSE. - -====================================================================== - - Copyright (C) 1991, 1992, 1994 by Cygnus Support. - - Permission to use, copy, modify, and distribute this software and - its documentation for any purpose and without fee is hereby - granted, provided that the above copyright notice appear in all - copies and that both that copyright notice and this permission - notice appear in supporting documentation. Cygnus Support makes no - representations about the suitability of this software for any - purpose. It is provided "as is" without express or implied - warranty. - -====================================================================== - - Copyright (C) 2006 Secure Endpoints Inc. - - Permission is hereby granted, free of charge, to any person - obtaining a copy of this software and associated documentation - files (the "Software"), to deal in the Software without - restriction, including without limitation the rights to use, copy, - modify, merge, publish, distribute, sublicense, and/or sell copies - of the Software, and to permit persons to whom the Software is - furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS - BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN - ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN - CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - SOFTWARE. - -====================================================================== - -Portions of the implementation of the Fortuna-like PRNG are subject to -the following notice: - - Copyright (C) 2005 Marko Kreen - All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - 2. Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS "AS IS" - AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED - TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A - PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR - CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF - USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, - OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT - OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - - Copyright (C) 1994 by the University of Southern California - - EXPORT OF THIS SOFTWARE from the United States of America may - require a specific license from the United States Government. It - is the responsibility of any person or organization - contemplating export to obtain such a license before exporting. - - WITHIN THAT CONSTRAINT, permission to copy, modify, and distribute - this software and its documentation in source and binary forms is - hereby granted, provided that any documentation or other materials - related to such distribution or use acknowledge that the software - was developed by the University of Southern California. - - DISCLAIMER OF WARRANTY. THIS SOFTWARE IS PROVIDED "AS IS". The - University of Southern California MAKES NO REPRESENTATIONS OR - WARRANTIES, EXPRESS OR IMPLIED. By way of example, but not - limitation, the University of Southern California MAKES NO - REPRESENTATIONS OR WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY - PARTICULAR PURPOSE. The University of Southern California shall not - be held liable for any liability nor for any direct, indirect, or - consequential damages with respect to any claim by the user or - distributor of the ksu software. - -====================================================================== - - Copyright (C) 1995 - The President and Fellows of Harvard University - - This code is derived from software contributed to Harvard by Jeremy - Rassen. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - 2. Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - 3. All advertising materials mentioning features or use of this - software must display the following acknowledgement: - - This product includes software developed by the University of - California, Berkeley and its contributors. - - 4. Neither the name of the University nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS "AS IS" - AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED - TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A - PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS - OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF - USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, - OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT - OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -====================================================================== - - Copyright (C) 2008 by the Massachusetts Institute of Technology. - Copyright 1995 by Richard P. Basch. All Rights Reserved. - Copyright 1995 by Lehman Brothers, Inc. All Rights Reserved. - - Export of this software from the United States of America may - require a specific license from the United States Government. It - is the responsibility of any person or organization - contemplating export to obtain such a license before exporting. - - WITHIN THAT CONSTRAINT, permission to use, copy, modify, and - distribute this software and its documentation for any purpose and - without fee is hereby granted, provided that the above copyright - notice appear in all copies and that both that copyright notice and - this permission notice appear in supporting documentation, and that - the name of Richard P. Basch, Lehman Brothers and M.I.T. not be - used in advertising or publicity pertaining to distribution of the - software without specific, written prior permission. Richard P. - Basch, Lehman Brothers and M.I.T. make no representations about the - suitability of this software for any purpose. It is provided "as - is" without express or implied warranty. - -====================================================================== - -The following notice applies to "src/lib/krb5/krb/strptime.c" and -"src/include/k5-queue.h". - - Copyright (C) 1997, 1998 The NetBSD Foundation, Inc. - All rights reserved. - - This code was contributed to The NetBSD Foundation by Klaus Klein. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - 2. Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - 3. All advertising materials mentioning features or use of this - software must display the following acknowledgement: - - This product includes software developed by the NetBSD - Foundation, Inc. and its contributors. - - 4. Neither the name of The NetBSD Foundation nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND - CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, - INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF - MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS BE - LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT - OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR - BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF - LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE - USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH - DAMAGE. - -====================================================================== - -The following notice applies to Unicode library files in -"src/lib/krb5/unicode": - - Copyright 1997, 1998, 1999 Computing Research Labs, - New Mexico State University - - Permission is hereby granted, free of charge, to any person - obtaining a copy of this software and associated documentation - files (the "Software"), to deal in the Software without - restriction, including without limitation the rights to use, copy, - modify, merge, publish, distribute, sublicense, and/or sell copies - of the Software, and to permit persons to whom the Software is - furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE COMPUTING RESEARCH LAB OR - NEW MEXICO STATE UNIVERSITY BE LIABLE FOR ANY CLAIM, DAMAGES OR - OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR - OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE - OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -====================================================================== - -The following notice applies to "src/util/support/strlcpy.c": - - Copyright (C) 1998 Todd C. Miller "Todd.Miller@courtesan.com" - - Permission to use, copy, modify, and distribute this software for - any purpose with or without fee is hereby granted, provided that - the above copyright notice and this permission notice appear in all - copies. - - THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL - WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED - WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE - AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR - CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS - OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, - NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN - CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - -====================================================================== - -The following notice applies to "src/util/profile/argv_parse.c" and -"src/util/profile/argv_parse.h": - - Copyright 1999 by Theodore Ts'o. - - Permission to use, copy, modify, and distribute this software for - any purpose with or without fee is hereby granted, provided that - the above copyright notice and this permission notice appear in all - copies. THE SOFTWARE IS PROVIDED "AS IS" AND THEODORE TS'O (THE - AUTHOR) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, - INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN - NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, - INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER - RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION - OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR - IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. (Isn't - it sick that the U.S. culture of lawsuit-happy lawyers requires - this kind of disclaimer?) - -====================================================================== - -The following notice applies to SWIG-generated code in -"src/util/profile/profile_tcl.c": - - Copyright (C) 1999-2000, The University of Chicago - - This file may be freely redistributed without license or fee - provided this copyright message remains intact. - -====================================================================== - -The following notice applies to portiions of "src/lib/rpc" and -"src/include/gssrpc": - - Copyright (C) 2000 The Regents of the University of Michigan. All - rights reserved. - - Copyright (C) 2000 Dug Song "dugsong@UMICH.EDU". All rights - reserved, all wrongs reversed. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - 2. Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - 3. Neither the name of the University nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT - OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR - BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF - LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE - USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH - DAMAGE. - -====================================================================== - -Implementations of the MD4 algorithm are subject to the following -notice: - - Copyright (C) 1990, RSA Data Security, Inc. All rights reserved. - - License to copy and use this software is granted provided that it - is identified as the "RSA Data Security, Inc. MD4 Message Digest - Algorithm" in all material mentioning or referencing this software - or this function. - - License is also granted to make and use derivative works provided - that such works are identified as "derived from the RSA Data - Security, Inc. MD4 Message Digest Algorithm" in all material - mentioning or referencing the derived work. - - RSA Data Security, Inc. makes no representations concerning either - the merchantability of this software or the suitability of this - software for any particular purpose. It is provided "as is" - without express or implied warranty of any kind. - - These notices must be retained in any copies of any part of this - documentation and/or software. - -====================================================================== - -Implementations of the MD5 algorithm are subject to the following -notice: - - Copyright (C) 1990, RSA Data Security, Inc. All rights reserved. - - License to copy and use this software is granted provided that it - is identified as the "RSA Data Security, Inc. MD5 Message- Digest - Algorithm" in all material mentioning or referencing this software - or this function. - - License is also granted to make and use derivative works provided - that such works are identified as "derived from the RSA Data - Security, Inc. MD5 Message-Digest Algorithm" in all material - mentioning or referencing the derived work. - - RSA Data Security, Inc. makes no representations concerning either - the merchantability of this software or the suitability of this - software for any particular purpose. It is provided "as is" - without express or implied warranty of any kind. - - These notices must be retained in any copies of any part of this - documentation and/or software. - -====================================================================== - -The following notice applies to -"src/lib/crypto/crypto_tests/t_mddriver.c": - - Copyright (C) 1990-2, RSA Data Security, Inc. Created 1990. All - rights reserved. - - RSA Data Security, Inc. makes no representations concerning either - the merchantability of this software or the suitability of this - software for any particular purpose. It is provided "as is" without - express or implied warranty of any kind. - - These notices must be retained in any copies of any part of this - documentation and/or software. - -====================================================================== - -Portions of "src/lib/krb5" are subject to the following notice: - - Copyright (C) 1994 CyberSAFE Corporation. - Copyright 1990,1991,2007,2008 by the Massachusetts Institute of Technology. - All Rights Reserved. - - Export of this software from the United States of America may - require a specific license from the United States Government. It - is the responsibility of any person or organization - contemplating export to obtain such a license before exporting. - - WITHIN THAT CONSTRAINT, permission to use, copy, modify, and - distribute this software and its documentation for any purpose and - without fee is hereby granted, provided that the above copyright - notice appear in all copies and that both that copyright notice and - this permission notice appear in supporting documentation, and that - the name of M.I.T. not be used in advertising or publicity - pertaining to distribution of the software without specific, - written prior permission. Furthermore if you modify this software - you must label your software as modified software and not - distribute it in such a fashion that it might be confused with the - original M.I.T. software. Neither M.I.T., the Open Computing - Security Group, nor CyberSAFE Corporation make any representations - about the suitability of this software for any purpose. It is - provided "as is" without express or implied warranty. - -====================================================================== - -Portions contributed by PADL Software are subject to the following -license: - - Copyright (c) 2011, PADL Software Pty Ltd. All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - 2. Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - 3. Neither the name of PADL Software nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY PADL SOFTWARE AND CONTRIBUTORS "AS IS" - AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED - TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A - PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL PADL SOFTWARE - OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF - USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, - OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT - OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -====================================================================== - -The bundled libev source code is subject to the following license: - - All files in libev are Copyright (C)2007,2008,2009 Marc Alexander - Lehmann. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS - FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE - COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, - INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR - SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, - STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED - OF THE POSSIBILITY OF SUCH DAMAGE. - - Alternatively, the contents of this package may be used under the - terms of the GNU General Public License ("GPL") version 2 or any - later version, in which case the provisions of the GPL are - applicable instead of the above. If you wish to allow the use of - your version of this package only under the terms of the GPL and - not to allow others to use your version of this file under the BSD - license, indicate your decision by deleting the provisions above - and replace them with the notice and other provisions required by - the GPL in this and the other files of this package. If you do not - delete the provisions above, a recipient may use your version of - this file under either the BSD or the GPL. - - On Debian systems, the complete text of the GNU General Public License - version 2 can be found in `/usr/share/common-licenses/GPL-2'. - -====================================================================== - -Files copied from the Intel AESNI Sample Library are subject to the -following license: - - Copyright (C) 2010, Intel Corporation - All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials - provided with the distribution. - - * Neither the name of Intel Corporation nor the names of its - contributors may be used to endorse or promote products - derived from this software without specific prior written - permission. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS - FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE - COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, - INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR - SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, - STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED - OF THE POSSIBILITY OF SUCH DAMAGE. - -====================================================================== - -The following notice applies to -"src/ccapi/common/win/OldCC/autolock.hxx": - - Copyright (C) 1998 by Danilo Almeida. All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS - FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE - COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, - INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR - SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, - STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED - OF THE POSSIBILITY OF SUCH DAMAGE. - -====================================================================== - -The Debian Packaging is licensed under the same terms as MIT Kerberos. - - ----------------------------------------- -libldap-2.4-2 version 2.4.47+dfsg-3+deb10u4 - - -Copyright: - -This package was downloaded from: - - - -The upstream distribution has been repackaged to remove the RFCs and -Internet-Drafts included in the upstream distribution, since the Internet -Society license does not meet the Debian Free Software Guidelines. The -schema files that contain verbatim text from RFCs or Internet-Drafts have -similarly been removed and are replaced during the package build with -versions stripped of the literal RFC or Internet-Draft text. - -Copyright: - -Copyright 1998-2016 The OpenLDAP Foundation -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted only as authorized by the OpenLDAP -Public License. - -A copy of this license is available in the file LICENSE in the -top-level directory of the distribution or, alternatively, at -. - -OpenLDAP is a registered trademark of the OpenLDAP Foundation. - -Individual files and/or contributed packages may be copyright by -other parties and/or subject to additional restrictions. - -This work is derived from the University of Michigan LDAP v3.3 -distribution. Information concerning this software is available -at . - -This work also contains materials derived from public sources. - -Additional information about OpenLDAP can be obtained at -. - ---- - -The OpenLDAP Public License - Version 2.8, 17 August 2003 - -Redistribution and use of this software and associated documentation -("Software"), with or without modification, are permitted provided -that the following conditions are met: - -1. Redistributions in source form must retain copyright statements - and notices, - -2. Redistributions in binary form must reproduce applicable copyright - statements and notices, this list of conditions, and the following - disclaimer in the documentation and/or other materials provided - with the distribution, and - -3. Redistributions must contain a verbatim copy of this document. - -The OpenLDAP Foundation may revise this license from time to time. -Each revision is distinguished by a version number. You may use -this Software under terms of this license revision or under the -terms of any subsequent revision of the license. - -THIS SOFTWARE IS PROVIDED BY THE OPENLDAP FOUNDATION AND ITS -CONTRIBUTORS ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES, -INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY -AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT -SHALL THE OPENLDAP FOUNDATION, ITS CONTRIBUTORS, OR THE AUTHOR(S) -OR OWNER(S) OF THE SOFTWARE BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. - -The names of the authors and copyright holders must not be used in -advertising or otherwise to promote the sale, use or other dealing -in this Software without specific, written prior permission. Title -to copyright in this Software shall at all times remain with copyright -holders. - ---- -Noted above is that various files can be copyrighted individually. -The licenses found in the OpenLDAP tree are as follows: - -CRL ------------------------------------ -# Copyright 1999 Computing Research Labs, New Mexico State University -# -# Permission is hereby granted, free of charge, to any person obtaining a -# copy of this software and associated documentation files (the "Software"), -# to deal in the Software without restriction, including without limitation -# the rights to use, copy, modify, merge, publish, distribute, sublicense, -# and/or sell copies of the Software, and to permit persons to whom the -# Software is furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL -# THE COMPUTING RESEARCH LAB OR NEW MEXICO STATE UNIVERSITY BE LIABLE FOR ANY -# CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT -# OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR -# THE USE OR OTHER DEALINGS IN THE SOFTWARE. - ------------------------------------ - - -FSF ------------------------------------ -# Copyright (C) 1994, 1995-8, 1999, 2001 Free Software Foundation, Inc. -# This Makefile.in is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A -# PARTICULAR PURPOSE. - ------------------------------------ - - -HC ------------------------------------ - * Permission is granted to anyone to use this software for any purpose - * on any computer system, and to alter it and redistribute it, subject - * to the following restrictions: - * - * 1. The author is not responsible for the consequences of use of this - * software, no matter how awful, even if they arise from flaws in it. - * - * 2. The origin of this software must not be misrepresented, either by - * explicit claim or by omission. Since few users ever read sources, - * credits should appear in the documentation. - * - * 3. Altered versions must be plainly marked as such, and must not be - * misrepresented as being the original software. Since few users - * ever read sources, credits should appear in the - * documentation. - * - * 4. This notice may not be removed or altered. - ------------------------------------ - - -IBM ------------------------------------ - * Portions Copyright (c) 1995 by International Business Machines, Inc. - * - * International Business Machines, Inc. (hereinafter called IBM) grants - * permission under its copyrights to use, copy, modify, and distribute this - * Software with or without fee, provided that the above copyright notice and - * all paragraphs of this notice appear in all copies, and that the name of IBM - * not be used in connection with the marketing of any product incorporating - * the Software or modifications thereof, without specific, written prior - * permission. - * - * To the extent it has a right to do so, IBM grants an immunity from suit - * under its patents, if any, for the use, sale or manufacture of products to - * the extent that such products are used for performing Domain Name System - * dynamic updates in TCP/IP networks by means of the Software. No immunity is - * granted for any product per se or for any other function of any product. - * - * THE SOFTWARE IS PROVIDED "AS IS", AND IBM DISCLAIMS ALL WARRANTIES, - * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A - * PARTICULAR PURPOSE. IN NO EVENT SHALL IBM BE LIABLE FOR ANY SPECIAL, - * DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER ARISING - * OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE, EVEN - * IF IBM IS APPRISED OF THE POSSIBILITY OF SUCH DAMAGES. - ------------------------------------ - - -IS ------------------------------------ -# Full Copyright Statement -# -# Copyright (C) The Internet Society (1999). All Rights Reserved. -# -# This document and translations of it may be copied and furnished to -# others, and derivative works that comment on or otherwise explain it -# or assist in its implementation may be prepared, copied, published -# and distributed, in whole or in part, without restriction of any -# kind, provided that the above copyright notice and this paragraph are -# included on all such copies and derivative works. However, this -# document itself may not be modified in any way, such as by removing -# the copyright notice or references to the Internet Society or other -# Internet organizations, except as needed for the purpose of -# developing Internet standards in which case the procedures for -# copyrights defined in the Internet Standards process must be -# followed, or as required to translate it into languages other than -# English. -# -# The limited permissions granted above are perpetual and will not be -# revoked by the Internet Society or its successors or assigns. -# -# This document and the information contained herein is provided on an -# "AS IS" basis and THE INTERNET SOCIETY AND THE INTERNET ENGINEERING -# TASK FORCE DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING -# BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION -# HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF -# MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. - -This license was present in the copies of several schema files and one -LDIF file as distributed upstream. The relevant content has been removed -except where it is purely functional (descriptions of an LDAP schema). -The copyright notice has been retained with a clarifying comment. The -provisions in the above license that prohibit modification therefore -should no longer apply to any files distributed with the Debian package. - -Several files in libraries/libldap also reference this license as the -copyright on ABNF sequences embedded as comments in those files. These -too are purely functional interface specifications distributed as part of -the LDAP protocol standard and do not contain creative work such as -free-form text. ------------------------------------ - - -ISC ------------------------------------ - * Copyright (c) 1996, 1998 by Internet Software Consortium. - * - * Permission to use, copy, modify, and distribute this software for any - * purpose with or without fee is hereby granted, provided that the above - * copyright notice and this permission notice appear in all copies. - * - * THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS - * ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES - * OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE - * CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL - * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR - * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS - * ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS - * SOFTWARE. - ------------------------------------ - - -JC ------------------------------------ - * This software is not subject to any license of Silicon Graphics - * Inc. or Purdue University. - * - * Redistribution and use in source and binary forms are permitted - * without restriction or fee of any kind as long as this notice - * is preserved. - -The following is additional information from Juan C. Gomez on how -this license is to be interpreted: ------ -Local-Date: Fri, 06 Jun 2003 13:18:52 -0400 -Date: Fri, 6 Jun 2003 10:18:52 -0700 -From: Juan Gomez -To: Stephen Frost -X-Mailer: Lotus Notes Release 5.0.2a (Intl) 23 November 1999 -Subject: Re: Juan C. Gomez license in OpenLDAP Source - -Stephen, - -"There is no restriction on modifications and derived works" on the work I -did for the openldap server as long as this is consistent with the openldap -license. Please forward this email to Kurt so he does the appropriate -changes to the files to reflect this. - - -Regards, Juan ------------------------------------ - - -MA ------------------------------------ - * Copyright (c) 2000, Mark Adamson, Carnegie Mellon. All rights reserved. - * This software is not subject to any license of Carnegie Mellon University. - * - * Redistribution and use in source and binary forms are permitted without - * restriction or fee of any kind as long as this notice is preserved. - * - * The name "Carnegie Mellon" must not be used to endorse or promote - * products derived from this software without prior written permission. - -The following is additional information from Mark Adamson on how this license -is to be interpreted: ------- -Local-Date: Thu, 05 Jun 2003 16:53:32 -0400 -Date: Thu, 5 Jun 2003 16:53:32 -0400 (EDT) -From: Mark Adamson -To: Stephen Frost -Subject: Re: Mark Adamson license in OpenLDAP source - -Hi Stephen, - - I don't see how this conflicts with the Debian FSG. The first statement -in the copyright pertaining to CMU say only that we don't license out the -software. The second mention denies the right to say things like, -"Now! Powered by software from Carnegie Mellon!" There is no restriction -on modifications and derived works. - --Mark ------- ------------------------------------ - - -MIT ------------------------------------ -# Copyright 1991 by the Massachusetts Institute of Technology -# -# Permission to use, copy, modify, distribute, and sell this software and its -# documentation for any purpose is hereby granted without fee, provided that -# the above copyright notice appear in all copies and that both that -# copyright notice and this permission notice appear in supporting -# documentation, and that the name of M.I.T. not be used in advertising or -# publicity pertaining to distribution of the software without specific, -# written prior permission. M.I.T. makes no representations about the -# suitability of this software for any purpose. It is provided "as is" -# without express or implied warranty. - ------------------------------------ - - -OL2 ------------------------------------ -Copyright 1999-2001 The OpenLDAP Foundation, Redwood City, -California, USA. All Rights Reserved. Permission to copy and -distribute verbatim copies of this document is granted. ------------------------------------ - - -PM ------------------------------------ - * Copyright (C) 2000 Pierangelo Masarati, - * All rights reserved. - * - * Permission is granted to anyone to use this software for any purpose - * on any computer system, and to alter it and redistribute it, subject - * to the following restrictions: - * - * 1. The author is not responsible for the consequences of use of this - * software, no matter how awful, even if they arise from flaws in it. - * - * 2. The origin of this software must not be misrepresented, either by - * explicit claim or by omission. Since few users ever read sources, - * credits should appear in the documentation. - * - * 3. Altered versions must be plainly marked as such, and must not be - * misrepresented as being the original software. Since few users - * ever read sources, credits should appear in the documentation. - * - * 4. This notice may not be removed or altered. - * ------------------------------------ - - -PM2 ------------------------------------ - * Redistribution and use in source and binary forms are permitted only - * as authorized by the OpenLDAP Public License. A copy of this - * license is available at http://www.OpenLDAP.org/license.html or - * in file LICENSE in the top-level directory of the distribution. ------------------------------------ - - -UoC ------------------------------------ - * Redistribution and use in source and binary forms are permitted - * provided that the above copyright notice and this paragraph are - * duplicated in all such forms and that any documentation, - * advertising materials, and other materials related to such - * distribution and use acknowledge that the software was developed - * by the University of California, Berkeley. The name of the - * University may not be used to endorse or promote products derived - * from this software without specific prior written permission. - * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR - * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED - * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. - -NOTE: The Regents have since retroactively removed the advertising -clause from above. - ------------------------------------ - - -UoC2 ------------------------------------ - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. All advertising materials mentioning features or use of this software - * must display the following acknowledgement: - * This product includes software developed by the University of - * California, Berkeley and its contributors. - * 4. Neither the name of the University nor the names of its contributors - * may be used to endorse or promote products derived from this software - * without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - -NOTE: The Regents have since retroactively removed the advertising -clause from above. -See: -ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change - ------------------------------------ - - -UoM ------------------------------------ - * Redistribution and use in source and binary forms are permitted - * provided that this notice is preserved and that due credit is given - * to the University of Michigan at Ann Arbor. The name of the University - * may not be used to endorse or promote products derived from this - * software without specific prior written permission. This software - * is provided ``as is'' without express or implied warranty. ---- -After discussing this license with the OpenLDAP Foundation we received -clarification on it: ---- - - * To: Stephen Frost - * Subject: Re: OpenLDAP Licenseing issues - * From: "Kurt D. Zeilenga" - * Date: Wed, 28 May 2003 10:55:44 -0700 - * Cc: Steve Langasek ,debian-legal@lists.debian.org, openldap-devel@OpenLDAP.org - * In-reply-to: <20030528162613.GB8524@ns.snowman.net> - * Message-id: <5.2.0.9.0.20030528094229.02924780@127.0.0.1> - * Old-return-path: - -Steven, - -The OpenLDAP Foundation believes it the Regents' statement grants a -license to redistribute derived works and is confident that the University, -who is quite aware of our actions (as they actively participate in them), -does not consider our actions to infringe on their rights. You are -welcomed to your opinions. I suggest, however, that before you rely -on your or other people's opinions (including ours), that you consult -with a lawyer familiar with applicable law and the particulars of your -situation. - -The Foundation sees no reason for it to expend its limited resources -seeking clarifications which it believes are unnecessary. You are, -of course, welcomed to expend time and energy seeking clarifications -you think are necessary. I suggest you contact University's general -counsel office (http://www.umich.edu/~vpgc/). - -Regards, Kurt ------------------------------------ - - - - ----------------------------------------- -libldap-common version 2.4.47+dfsg-3+deb10u4 - - -Copyright: - -This package was downloaded from: - - - -The upstream distribution has been repackaged to remove the RFCs and -Internet-Drafts included in the upstream distribution, since the Internet -Society license does not meet the Debian Free Software Guidelines. The -schema files that contain verbatim text from RFCs or Internet-Drafts have -similarly been removed and are replaced during the package build with -versions stripped of the literal RFC or Internet-Draft text. - -Copyright: - -Copyright 1998-2016 The OpenLDAP Foundation -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted only as authorized by the OpenLDAP -Public License. - -A copy of this license is available in the file LICENSE in the -top-level directory of the distribution or, alternatively, at -. - -OpenLDAP is a registered trademark of the OpenLDAP Foundation. - -Individual files and/or contributed packages may be copyright by -other parties and/or subject to additional restrictions. - -This work is derived from the University of Michigan LDAP v3.3 -distribution. Information concerning this software is available -at . - -This work also contains materials derived from public sources. - -Additional information about OpenLDAP can be obtained at -. - ---- - -The OpenLDAP Public License - Version 2.8, 17 August 2003 - -Redistribution and use of this software and associated documentation -("Software"), with or without modification, are permitted provided -that the following conditions are met: - -1. Redistributions in source form must retain copyright statements - and notices, - -2. Redistributions in binary form must reproduce applicable copyright - statements and notices, this list of conditions, and the following - disclaimer in the documentation and/or other materials provided - with the distribution, and - -3. Redistributions must contain a verbatim copy of this document. - -The OpenLDAP Foundation may revise this license from time to time. -Each revision is distinguished by a version number. You may use -this Software under terms of this license revision or under the -terms of any subsequent revision of the license. - -THIS SOFTWARE IS PROVIDED BY THE OPENLDAP FOUNDATION AND ITS -CONTRIBUTORS ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES, -INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY -AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT -SHALL THE OPENLDAP FOUNDATION, ITS CONTRIBUTORS, OR THE AUTHOR(S) -OR OWNER(S) OF THE SOFTWARE BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. - -The names of the authors and copyright holders must not be used in -advertising or otherwise to promote the sale, use or other dealing -in this Software without specific, written prior permission. Title -to copyright in this Software shall at all times remain with copyright -holders. - ---- -Noted above is that various files can be copyrighted individually. -The licenses found in the OpenLDAP tree are as follows: - -CRL ------------------------------------ -# Copyright 1999 Computing Research Labs, New Mexico State University -# -# Permission is hereby granted, free of charge, to any person obtaining a -# copy of this software and associated documentation files (the "Software"), -# to deal in the Software without restriction, including without limitation -# the rights to use, copy, modify, merge, publish, distribute, sublicense, -# and/or sell copies of the Software, and to permit persons to whom the -# Software is furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL -# THE COMPUTING RESEARCH LAB OR NEW MEXICO STATE UNIVERSITY BE LIABLE FOR ANY -# CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT -# OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR -# THE USE OR OTHER DEALINGS IN THE SOFTWARE. - ------------------------------------ - - -FSF ------------------------------------ -# Copyright (C) 1994, 1995-8, 1999, 2001 Free Software Foundation, Inc. -# This Makefile.in is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A -# PARTICULAR PURPOSE. - ------------------------------------ - - -HC ------------------------------------ - * Permission is granted to anyone to use this software for any purpose - * on any computer system, and to alter it and redistribute it, subject - * to the following restrictions: - * - * 1. The author is not responsible for the consequences of use of this - * software, no matter how awful, even if they arise from flaws in it. - * - * 2. The origin of this software must not be misrepresented, either by - * explicit claim or by omission. Since few users ever read sources, - * credits should appear in the documentation. - * - * 3. Altered versions must be plainly marked as such, and must not be - * misrepresented as being the original software. Since few users - * ever read sources, credits should appear in the - * documentation. - * - * 4. This notice may not be removed or altered. - ------------------------------------ - - -IBM ------------------------------------ - * Portions Copyright (c) 1995 by International Business Machines, Inc. - * - * International Business Machines, Inc. (hereinafter called IBM) grants - * permission under its copyrights to use, copy, modify, and distribute this - * Software with or without fee, provided that the above copyright notice and - * all paragraphs of this notice appear in all copies, and that the name of IBM - * not be used in connection with the marketing of any product incorporating - * the Software or modifications thereof, without specific, written prior - * permission. - * - * To the extent it has a right to do so, IBM grants an immunity from suit - * under its patents, if any, for the use, sale or manufacture of products to - * the extent that such products are used for performing Domain Name System - * dynamic updates in TCP/IP networks by means of the Software. No immunity is - * granted for any product per se or for any other function of any product. - * - * THE SOFTWARE IS PROVIDED "AS IS", AND IBM DISCLAIMS ALL WARRANTIES, - * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A - * PARTICULAR PURPOSE. IN NO EVENT SHALL IBM BE LIABLE FOR ANY SPECIAL, - * DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER ARISING - * OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE, EVEN - * IF IBM IS APPRISED OF THE POSSIBILITY OF SUCH DAMAGES. - ------------------------------------ - - -IS ------------------------------------ -# Full Copyright Statement -# -# Copyright (C) The Internet Society (1999). All Rights Reserved. -# -# This document and translations of it may be copied and furnished to -# others, and derivative works that comment on or otherwise explain it -# or assist in its implementation may be prepared, copied, published -# and distributed, in whole or in part, without restriction of any -# kind, provided that the above copyright notice and this paragraph are -# included on all such copies and derivative works. However, this -# document itself may not be modified in any way, such as by removing -# the copyright notice or references to the Internet Society or other -# Internet organizations, except as needed for the purpose of -# developing Internet standards in which case the procedures for -# copyrights defined in the Internet Standards process must be -# followed, or as required to translate it into languages other than -# English. -# -# The limited permissions granted above are perpetual and will not be -# revoked by the Internet Society or its successors or assigns. -# -# This document and the information contained herein is provided on an -# "AS IS" basis and THE INTERNET SOCIETY AND THE INTERNET ENGINEERING -# TASK FORCE DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING -# BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION -# HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF -# MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. - -This license was present in the copies of several schema files and one -LDIF file as distributed upstream. The relevant content has been removed -except where it is purely functional (descriptions of an LDAP schema). -The copyright notice has been retained with a clarifying comment. The -provisions in the above license that prohibit modification therefore -should no longer apply to any files distributed with the Debian package. - -Several files in libraries/libldap also reference this license as the -copyright on ABNF sequences embedded as comments in those files. These -too are purely functional interface specifications distributed as part of -the LDAP protocol standard and do not contain creative work such as -free-form text. ------------------------------------ - - -ISC ------------------------------------ - * Copyright (c) 1996, 1998 by Internet Software Consortium. - * - * Permission to use, copy, modify, and distribute this software for any - * purpose with or without fee is hereby granted, provided that the above - * copyright notice and this permission notice appear in all copies. - * - * THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS - * ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES - * OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE - * CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL - * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR - * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS - * ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS - * SOFTWARE. - ------------------------------------ - - -JC ------------------------------------ - * This software is not subject to any license of Silicon Graphics - * Inc. or Purdue University. - * - * Redistribution and use in source and binary forms are permitted - * without restriction or fee of any kind as long as this notice - * is preserved. - -The following is additional information from Juan C. Gomez on how -this license is to be interpreted: ------ -Local-Date: Fri, 06 Jun 2003 13:18:52 -0400 -Date: Fri, 6 Jun 2003 10:18:52 -0700 -From: Juan Gomez -To: Stephen Frost -X-Mailer: Lotus Notes Release 5.0.2a (Intl) 23 November 1999 -Subject: Re: Juan C. Gomez license in OpenLDAP Source - -Stephen, - -"There is no restriction on modifications and derived works" on the work I -did for the openldap server as long as this is consistent with the openldap -license. Please forward this email to Kurt so he does the appropriate -changes to the files to reflect this. - - -Regards, Juan ------------------------------------ - - -MA ------------------------------------ - * Copyright (c) 2000, Mark Adamson, Carnegie Mellon. All rights reserved. - * This software is not subject to any license of Carnegie Mellon University. - * - * Redistribution and use in source and binary forms are permitted without - * restriction or fee of any kind as long as this notice is preserved. - * - * The name "Carnegie Mellon" must not be used to endorse or promote - * products derived from this software without prior written permission. - -The following is additional information from Mark Adamson on how this license -is to be interpreted: ------- -Local-Date: Thu, 05 Jun 2003 16:53:32 -0400 -Date: Thu, 5 Jun 2003 16:53:32 -0400 (EDT) -From: Mark Adamson -To: Stephen Frost -Subject: Re: Mark Adamson license in OpenLDAP source - -Hi Stephen, - - I don't see how this conflicts with the Debian FSG. The first statement -in the copyright pertaining to CMU say only that we don't license out the -software. The second mention denies the right to say things like, -"Now! Powered by software from Carnegie Mellon!" There is no restriction -on modifications and derived works. - --Mark ------- ------------------------------------ - - -MIT ------------------------------------ -# Copyright 1991 by the Massachusetts Institute of Technology -# -# Permission to use, copy, modify, distribute, and sell this software and its -# documentation for any purpose is hereby granted without fee, provided that -# the above copyright notice appear in all copies and that both that -# copyright notice and this permission notice appear in supporting -# documentation, and that the name of M.I.T. not be used in advertising or -# publicity pertaining to distribution of the software without specific, -# written prior permission. M.I.T. makes no representations about the -# suitability of this software for any purpose. It is provided "as is" -# without express or implied warranty. - ------------------------------------ - - -OL2 ------------------------------------ -Copyright 1999-2001 The OpenLDAP Foundation, Redwood City, -California, USA. All Rights Reserved. Permission to copy and -distribute verbatim copies of this document is granted. ------------------------------------ - - -PM ------------------------------------ - * Copyright (C) 2000 Pierangelo Masarati, - * All rights reserved. - * - * Permission is granted to anyone to use this software for any purpose - * on any computer system, and to alter it and redistribute it, subject - * to the following restrictions: - * - * 1. The author is not responsible for the consequences of use of this - * software, no matter how awful, even if they arise from flaws in it. - * - * 2. The origin of this software must not be misrepresented, either by - * explicit claim or by omission. Since few users ever read sources, - * credits should appear in the documentation. - * - * 3. Altered versions must be plainly marked as such, and must not be - * misrepresented as being the original software. Since few users - * ever read sources, credits should appear in the documentation. - * - * 4. This notice may not be removed or altered. - * ------------------------------------ - - -PM2 ------------------------------------ - * Redistribution and use in source and binary forms are permitted only - * as authorized by the OpenLDAP Public License. A copy of this - * license is available at http://www.OpenLDAP.org/license.html or - * in file LICENSE in the top-level directory of the distribution. ------------------------------------ - - -UoC ------------------------------------ - * Redistribution and use in source and binary forms are permitted - * provided that the above copyright notice and this paragraph are - * duplicated in all such forms and that any documentation, - * advertising materials, and other materials related to such - * distribution and use acknowledge that the software was developed - * by the University of California, Berkeley. The name of the - * University may not be used to endorse or promote products derived - * from this software without specific prior written permission. - * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR - * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED - * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. - -NOTE: The Regents have since retroactively removed the advertising -clause from above. - ------------------------------------ - - -UoC2 ------------------------------------ - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. All advertising materials mentioning features or use of this software - * must display the following acknowledgement: - * This product includes software developed by the University of - * California, Berkeley and its contributors. - * 4. Neither the name of the University nor the names of its contributors - * may be used to endorse or promote products derived from this software - * without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - -NOTE: The Regents have since retroactively removed the advertising -clause from above. -See: -ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change - ------------------------------------ - - -UoM ------------------------------------ - * Redistribution and use in source and binary forms are permitted - * provided that this notice is preserved and that due credit is given - * to the University of Michigan at Ann Arbor. The name of the University - * may not be used to endorse or promote products derived from this - * software without specific prior written permission. This software - * is provided ``as is'' without express or implied warranty. ---- -After discussing this license with the OpenLDAP Foundation we received -clarification on it: ---- - - * To: Stephen Frost - * Subject: Re: OpenLDAP Licenseing issues - * From: "Kurt D. Zeilenga" - * Date: Wed, 28 May 2003 10:55:44 -0700 - * Cc: Steve Langasek ,debian-legal@lists.debian.org, openldap-devel@OpenLDAP.org - * In-reply-to: <20030528162613.GB8524@ns.snowman.net> - * Message-id: <5.2.0.9.0.20030528094229.02924780@127.0.0.1> - * Old-return-path: - -Steven, - -The OpenLDAP Foundation believes it the Regents' statement grants a -license to redistribute derived works and is confident that the University, -who is quite aware of our actions (as they actively participate in them), -does not consider our actions to infringe on their rights. You are -welcomed to your opinions. I suggest, however, that before you rely -on your or other people's opinions (including ours), that you consult -with a lawyer familiar with applicable law and the particulars of your -situation. - -The Foundation sees no reason for it to expend its limited resources -seeking clarifications which it believes are unnecessary. You are, -of course, welcomed to expend time and energy seeking clarifications -you think are necessary. I suggest you contact University's general -counsel office (http://www.umich.edu/~vpgc/). - -Regards, Kurt ------------------------------------ - - - - ----------------------------------------- -libmnl0 version 1.0.4-2 - - -Copyright: - -Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ -Upstream-Name: libmnl -Upstream-Contact: Pablo Neira Ayuso -Source: http://www.netfilter.org/projects/libmnl/files - -Files: * -Copyright: 2008-2012, Pablo Neira Ayuso -License: LGPL-2.1 - -Files: debian/* -Copyright: 2010-2016, Anibal Monsalve Salazar - 2012-2016, Neutron Soutmun -License: GPL-2+ - -License: GPL-2+ - 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. - . - 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. - . - You should have received a copy of the GNU General Public License along - with this package; if not, write to the Free Software Foundation, Inc., - 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA - . - On Debian systems, the complete text of the GNU General Public License - version 2 can be found in "/usr/share/common-licenses/GPL-2". - -License: LGPL-2.1 - This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - . - This library 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 - Lesser General Public License for more details. - . - You should have received a copy of the GNU Lesser General Public - License along with this library; if not, write to the Free Software - Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - . - On Debian systems, the complete text of the GNU Lesser General Public License - version 2.1 can be found in "/usr/share/common-licenses/LGPL-2.1". - - ----------------------------------------- -libnghttp2-14 version 1.36.0-2+deb10u1 - - -Copyright: - -Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ -Upstream-Name: nghttp2 -Upstream-Contact: Tatsuhiro Tsujikawa -Source: https://github.com/tatsuhiro-t/nghttp2 - -Files: * -Copyright: 2012, 2013, 2014 Tatsuhiro Tsujikawa -License: Expat - -Files: third-party/http-parser/http_parser.h -Copyright: Joyent, Inc. and other Node contributors. All rights reserved. -License: Expat - -Files: third-party/http-parser/http_parser.c -Copyright: 2002-2013 Igor Sysoev - 2011-2013 Nginx, Inc. -License: MIT -Comment: Based on src/http/ngx_http_parse.c from NGINX copyright Igor Sysoev. - Additional changes are licensed under the same terms as NGINX and - copyright Joyent, Inc. and other Node contributors. All rights reserved. - -Files: third-party/mruby/* -Copyright: 2015 mruby developers -License: MIT -Comment: This code is not used by the Debian package, but is kept nevertheless. - -Files: tests/nghttp2_npn_test.* -Copyright: 2012, Twist Inc. -License: Expat - -Files: m4/ax_cxx_compile_stdcxx_11.m4 -Copyright: 2008, Benjamin Kosnik , - 2012, Zack Weinberg , - 2013, Roy Stogner -License: all-permissive - -Files: m4/ax_python_devel.m4 -Copyright: 2009 Sebastian Huber , - 2009 Alan W. Irwin, - 2009 Rafael Laboissiere , - 2009 Andrew Collier, - 2009 Matteo Settenvini , - 2009 Horst Knorr , - 2013 Daniel Mullner -License: GPL-3+ with autoconf exception - -Files: doc/_themes/sphinx_rtd_theme/* -Copyright: 2013 Dave Snider -License: MIT - -Files: doc/_themes/sphinx_rtd_theme/layout_old.html doc/_themes/sphinx_rtd_theme/search.html -Copyright: 2007-2013 by the Sphinx team -License: BSD-2-clause -Comment: License details from https://bitbucket.org/birkenfeld/sphinx/src file LICENSE - -Files: doc/_themes/sphinx_rtd_theme/static/fonts/FontAwesome.otf -Copyright: Dave Gandy -License: SIL-OFL-1.1 -Comment: Font Awesome by Dave Gandy - http://fontawesome.io - - -License: Expat - Permission is hereby granted, free of charge, to any person obtaining - a copy of this software and associated documentation files (the - "Software"), to deal in the Software without restriction, including - without limitation the rights to use, copy, modify, merge, publish, - distribute, sublicense, and/or sell copies of the Software, and to - permit persons to whom the Software is furnished to do so, subject to - the following conditions: - . - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - . - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE - LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION - OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION - WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -License: MIT - Permission is hereby granted, free of charge, to any person obtaining a copy - of this software and associated documentation files (the "Software"), to - deal in the Software without restriction, including without limitation the - rights to use, copy, modify, merge, publish, distribute, sublicense, and/or - sell copies of the Software, and to permit persons to whom the Software is - furnished to do so, subject to the following conditions: - . - The above copyright notice and this permission notice shall be included in - all copies or substantial portions of the Software. - . - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING - FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS - IN THE SOFTWARE. - -License: GPL-3+ with autoconf exception - 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 3 of the License, or (at your - option) any later version. - . - 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. - . - You should have received a copy of the GNU General Public License along - with this program. If not, see . - . - As a special exception, the respective Autoconf Macro's copyright owner - gives unlimited permission to copy, distribute and modify the configure - scripts that are the output of Autoconf when processing the Macro. You - need not follow the terms of the GNU General Public License when using - or distributing such scripts, even though portions of the text of the - Macro appear in them. The GNU General Public License (GPL) does govern - all other use of the material that constitutes the Autoconf Macro. - . - This special exception to the GPL applies to versions of the Autoconf - Macro released by the Autoconf Archive. When you make and distribute a - modified version of the Autoconf Macro, you may extend this special - exception to the GPL to apply to your modified version as well. - . - On Debian systems, the full text of the GNU General Public - License version 3 can be found in the file - `/usr/share/common-licenses/GPL-3'. - -License: all-permissive - Copying and distribution of this file, with or without modification, are - permitted in any medium without royalty provided the copyright notice - and this notice are preserved. This file is offered as-is, without any - warranty. - -License: BSD-2-clause - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are - met: - . - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - . - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - . - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT - OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -License: SIL-OFL-1.1 - SIL Open Font License 1.1 - . - License details from http://fortawesome.github.io/Font-Awesome/ - . - This Font Software is licensed under the SIL Open Font License, Version 1.1. - This license is copied below, and is also available with a FAQ at: - http://scripts.sil.org/OFL - . - ----------------------------------------------------------- - SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 - ----------------------------------------------------------- - . - PREAMBLE - The goals of the Open Font License (OFL) are to stimulate worldwide - development of collaborative font projects, to support the font creation - efforts of academic and linguistic communities, and to provide a free and - open framework in which fonts may be shared and improved in partnership - with others. - . - The OFL allows the licensed fonts to be used, studied, modified and - redistributed freely as long as they are not sold by themselves. The - fonts, including any derivative works, can be bundled, embedded, - redistributed and/or sold with any software provided that any reserved - names are not used by derivative works. The fonts and derivatives, - however, cannot be released under any other type of license. The - requirement for fonts to remain under this license does not apply - to any document created using the fonts or their derivatives. - . - DEFINITIONS - "Font Software" refers to the set of files released by the Copyright - Holder(s) under this license and clearly marked as such. This may - include source files, build scripts and documentation. - . - "Reserved Font Name" refers to any names specified as such after the - copyright statement(s). - . - "Original Version" refers to the collection of Font Software components as - distributed by the Copyright Holder(s). - . - "Modified Version" refers to any derivative made by adding to, deleting, - or substituting -- in part or in whole -- any of the components of the - Original Version, by changing formats or by porting the Font Software to a - new environment. - . - "Author" refers to any designer, engineer, programmer, technical - writer or other person who contributed to the Font Software. - . - PERMISSION & CONDITIONS - Permission is hereby granted, free of charge, to any person obtaining - a copy of the Font Software, to use, study, copy, merge, embed, modify, - redistribute, and sell modified and unmodified copies of the Font - Software, subject to the following conditions: - . - 1) Neither the Font Software nor any of its individual components, - in Original or Modified Versions, may be sold by itself. - . - 2) Original or Modified Versions of the Font Software may be bundled, - redistributed and/or sold with any software, provided that each copy - contains the above copyright notice and this license. These can be - included either as stand-alone text files, human-readable headers or - in the appropriate machine-readable metadata fields within text or - binary files as long as those fields can be easily viewed by the user. - . - 3) No Modified Version of the Font Software may use the Reserved Font - Name(s) unless explicit written permission is granted by the corresponding - Copyright Holder. This restriction only applies to the primary font name as - presented to the users. - . - 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font - Software shall not be used to promote, endorse or advertise any - Modified Version, except to acknowledge the contribution(s) of the - Copyright Holder(s) and the Author(s) or with their explicit written - permission. - . - 5) The Font Software, modified or unmodified, in part or in whole, - must be distributed entirely under this license, and must not be - distributed under any other license. The requirement for fonts to - remain under this license does not apply to any document created - using the Font Software. - . - TERMINATION - This license becomes null and void if any of the above conditions are - not met. - . - DISCLAIMER - THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT - OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE - COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, - INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL - DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING - FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM - OTHER DEALINGS IN THE FONT SOFTWARE. - - ----------------------------------------- -libpcre2-8-0 version 10.32-5 - - -Copyright: - -This package was debianized by Matthew Vernon , -with sources downloaded from: -ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/ - -PCRE2 LICENCE -------------- - -PCRE2 is a library of functions to support regular expressions whose syntax -and semantics are as close as possible to those of the Perl 5 language. - -Release 10 of PCRE2 is distributed under the terms of the "BSD" licence, as -specified below. The documentation for PCRE2, supplied in the "doc" -directory, is distributed under the same terms as the software itself. The data -in the testdata directory is not copyrighted and is in the public domain. - -The basic library functions are written in C and are freestanding. Also -included in the distribution is a just-in-time compiler that can be used to -optimize pattern matching. This is an optional feature that can be omitted when -the library is built. - - -THE BASIC LIBRARY FUNCTIONS ---------------------------- - -Written by: Philip Hazel -Email local part: ph10 -Email domain: cam.ac.uk - -University of Cambridge Computing Service, -Cambridge, England. - -Copyright (c) 1997-2015 University of Cambridge -All rights reserved. - - -PCRE2 JUST-IN-TIME COMPILATION SUPPORT --------------------------------------- - -Written by: Zoltan Herczeg -Email local part: hzmester -Emain domain: freemail.hu - -Copyright(c) 2010-2015 Zoltan Herczeg -All rights reserved. - - -STACK-LESS JUST-IN-TIME COMPILER --------------------------------- - -Written by: Zoltan Herczeg -Email local part: hzmester -Emain domain: freemail.hu - -Copyright(c) 2009-2015 Zoltan Herczeg -All rights reserved. - - -THE "BSD" LICENCE ------------------ - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - - * Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - - * Neither the name of the University of Cambridge nor the names of any - contributors may be used to endorse or promote products derived from this - software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE -LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. - -End - - ----------------------------------------- -libperl5.28 version 5.28.1-6+deb10u1 - - -Copyright: - -Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ -Files-Excluded-regen-configure: bin/* -Upstream-Name: perl -Source: http://www.perl.com/CPAN/src/5.0/ -Comment: - This package was debianized by Brendan O'Dea on - Thu, 17 Aug 2000 16:10:54 +1000. - . - Upstream Authors: - . - Larry Wall et. al. (see /usr/share/doc/perl/AUTHORS). - . - Last checked against: Perl 5.28.1 - -Files: * -Copyright: - Perl is Copyright (C) 1987-2018 by Larry Wall and others. All rights reserved. -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or modify - it under the terms of either: - . - a) the GNU General Public License as published by the Free Software - Foundation; either version 1, or (at your option) any later - version, or - . - b) the "Artistic License" which comes with Perl. - ---------------------------------------- - The directories ext/, dist/, and cpan/ contain separate distributions - that have been bundled with the Perl core. The copyright and license - status of these have been detailed separately below. - . - It is assumed that all the other files are part of Perl and share the - above copyright and license information unless explicitly specified - differently. Only the exceptions have been detailed below. - . - As a small portion of the files are indeed licensed differently from - the above, all the other licenses have been collected and/or duplicated - at the end of this file to facilitate review. - -Files: perlio.c -Copyright: - Copyright (c) 1996-2006, Nick Ing-Simmons - Copyright (c) 2006, 2007, 2008 Larry Wall and others -License: GPL-1+ or Artistic -Comment: - This file is a part of Perl itself, licensed as above. - -Files: malloc.c -Copyright: - Modifications Copyright Ilya Zakharevich 1996-99. -License: GPL-1+ or Artistic -Comment: - This file is a part of Perl itself, licensed as above. - -Files: pp_sort.c -Copyright: - Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, - 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 by Larry Wall and others - . - Copyright (C) Tom Horsley, 1997. All rights reserved. -License: GPL-1+ or Artistic -Comment: - This file is a part of Perl itself, licensed as above. - -Files: mro.c -Copyright: - Copyright (c) 2007 Brandon L Black - Copyright (c) 2007, 2008 Larry Wall and others -License: GPL-1+ or Artistic -Comment: - This file is a part of Perl itself, licensed as above. - -Files: perl.c -Copyright: - Copyright 1987-2018, Larry Wall - MS-DOS port Copyright (c) 1989, 1990, Diomidis Spinellis - OS/2 port Copyright (c) 1990, 1991, Raymond Chen, Kai Uwe Rommel - Version 5 port Copyright (c) 1994-2002, Andreas Kaiser, Ilya Zakharevich -License: GPL-1+ or Artistic -Comment: - This file is a part of Perl itself, licensed as above. - ---------------------------------------- - These copyright notices are embedded in the code, and possibly apply - to other files as well. - -Files: time64.c -Copyright: - Copyright (c) 2007-2008 Michael G Schwern - . - This software originally derived from Paul Sheer's pivotal_gmtime_r.c. -License: Expat - -Files: - regcomp.c - regexec.c -Copyright: - Copyright (c) 1986 by University of Toronto. - Written by Henry Spencer. Not derived from licensed software. - . - Alterations to Henry's code are... - Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, - 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 - by Larry Wall and others - . - NOTE: this is derived from Henry Spencer's regexp code, and should not - confused with the original package (see point 3 below). Thanks, Henry! -License: REGCOMP, and GPL-1+ or Artistic -Comment: - ---------------------------------------- - The "alterations to Henry's code" have the following license information: - . - You may distribute under the terms of either the GNU General Public - License or the Artistic License, as specified in the README file. - -Files: perly.h -Copyright: - Copyright (C) 1984, 1989-1990, 2000-2013 Free Software Foundation, Inc. -License: GPL-3+-WITH-BISON-EXCEPTION - -Files: mkppport -Copyright: - Copyright 2006 by Marcus Holland-Moritz . -License: GPL-1+ or Artistic -Comment: - This program is free software; you may redistribute it - and/or modify it under the same terms as Perl itself. - -Files: lib/unicore/*.txt -Copyright: - © 1991-2016 Unicode®, Inc. -License: Unicode -Comment: - The license is given as - . - For terms of use, see http://www.unicode.org/terms_of_use.html - . - See the end of this file for the full text of this license as downloaded - from the above URL on Tue, 26 Apr 2011 14:41:24 +0300. - -Files: lib/deprecate.pm -Copyright: - Copyright (C) 2009, 2011 -License: GPL-1+ or Artistic -Comment: - This library is free software; you can redistribute it and/or modify - it under the same terms as Perl itself, either Perl version 5.10.0 or, - at your option, any later version of Perl 5 you may have available. - -Files: lib/Exporter.pm -Copyright: unknown -License: GPL-1+ or Artistic -Comment: - This library is free software. You can redistribute it - and/or modify it under the same terms as Perl itself. - -Files: lib/FindBin.pm -Copyright: - Copyright (c) 1995 Graham Barr & Nick Ing-Simmons. All rights reserved. -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or modify it - under the same terms as Perl itself. - -Files: symbian/* -Copyright: - Copyright (c) Nokia 2004-2005. All rights reserved. -License: GPL-1+ or Artistic -Comment: - All files are licensed under the same terms as Perl itself. - -Files: symbian/PerlUiS90.rss -Copyright: - Copyright (c) 2006 Alexander Smishlajev. All rights reserved. -License: GPL-1+ or Artistic -Comment: - The PerlUi class is licensed under the same terms as Perl itself. - -Files: README.symbian -Copyright: - Copyright (c) 2004-2005 Nokia. All rights reserved. - Copyright (c) 2006-2007 Jarkko Hietaniemi. -License: GPL-1+ or Artistic -Comment: - The Symbian port is licensed under the same terms as Perl itself. - -Files: t/op/split_unicode.t -Copyright: - Copyright (c) 1991-2006 Unicode, Inc. -License: GPL-1+ or Artistic, and Unicode -Comment: - ---------------------------------------- - The test data was extracted from the Unicode Character Database. - . - It is assumed that the test code is licensed under the same terms - as Perl. - -Files: regen/reentr.pl -Copyright: Copyright (c) 2002,2003 Jarkko Hietaniemi -License: GPL-1+ or Artistic -Comment: - You may distribute under the terms of either the GNU General Public - License or the Artistic License, as specified in the README file. - -Files: - Porting/checkansi.pl - Porting/valgrindpp.pl -Copyright: - Copyright 2003, 2007 by Marcus Holland-Moritz . -License: GPL-1+ or Artistic -Comment: - This program is free software; you may redistribute it - and/or modify it under the same terms as Perl itself. - -Files: Porting/config_h.pl -Copyright: - Copyright (C) 2005-2012 by H.Merijn Brand (m)'12 [22-09-2012] -License: GPL-1+ or Artistic -Comment: - You may distribute under the terms of either the GNU General Public - License or the Artistic License, as specified in the README file. - -Files: Porting/git-deltatool -Copyright: - This software is copyright (c) 2010 by David Golden. -License: GPL-1+ or Artistic -Comment: - This is free software; you can redistribute it and/or modify it under the same - terms as the Perl 5 programming language system itself. - -Files: NetWare/* -Copyright: - Copyright (C) 2000-01, 2002 Novell, Inc. All Rights Reserved. -License: GPL-1+ or Artistic -Comment: - You may distribute under the terms of either the GNU General Public - License or the Artistic License, as specified in the README file. - -Files: - vms/vms.c - vms/vmsish.h -Copyright: - Copyright (C) 1993-2015 by Charles Bailey and others. -License: GPL-1+ or Artistic -Comment: - You may distribute under the terms of either the GNU General Public - License or the Artistic License, as specified in the README file. - -Files: x2p/s2p.PL -Copyright: unknown -License: S2P - -Files: win32/fcrypt.c -Copyright: - Copyright (C) 1993 Eric Young - see README for more details -License: GPL-1+ or Artistic -Comment: - This file is a part of Perl itself, licensed as above. - -Files: cpan/Archive-Tar/* -Copyright: 2002 - 2009 Jos Boumans . All rights reserved. -License: GPL-1+ or Artistic -Comment: - This library is free software; you may redistribute and/or modify - it under the same terms as Perl itself. - -Files: - cpan/AutoLoader/* - dist/SelfLoader/* -Copyright: This package has the same copyright and license as the perl core: - Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999, - 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2011, 2012 - by Larry Wall and others - . - All rights reserved. -License: GPL-1+ or Artistic -Comment: - This package has the same copyright and license as the perl core. - -Files: cpan/autodie/* -Copyright: 2008-2009, Paul Fenwick -License: GPL-1+ or Artistic -Comment: - This module is free software, you may distribute it under the - same terms as Perl itself. - -Files: - cpan/autodie/lib/autodie/exception/system.pm - cpan/autodie/lib/autodie/exception.pm -Copyright: 2008-2009, Paul Fenwick -License: GPL-1+ or Artistic -Comment: - This is free software. You may modify and/or redistribute this - code under the same terms as Perl 5.10 itself, or, at your option, - any later version of Perl 5. - -Files: - cpan/autodie/lib/autodie/Scope/GuardStack.pm - cpan/autodie/lib/autodie/Util.pm -Copyright: Copyright 2013-2014, Niels Thykier -License: GPL-1+ or Artistic -Comment: - This module is free software. You may distribute it under the - same terms as Perl itself. - -Files: cpan/B- -Copyright: - Copyright (c) 1996, 1997 Malcolm Beattie - Copyright (c) 2008, 2010, 2013, 2014 Reini Urban -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or modify - it under the terms of either: - . - a) the GNU General Public License as published by the Free - Software Foundation; either version 1, or (at your option) any - later version, or - . - b) the "Artistic License" which comes with this kit. - -Files: cpan/Compress-Raw-Bzip2/* -Copyright: Copyright (c) 2005-2017 Paul Marquess. All rights reserved. -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it - and/or modify it under the same terms as Perl itself. - -Files: cpan/Compress-Raw-Bzip2/bzip2-src/* -Copyright: Copyright(C) 1996-2010 Julian Seward. All rights reserved -Comment: - ---------------------------------------- - cpan/Compress-Raw-Bzip2/bzip2-src/README states: - Note that the files bzip2.c, bzip2recover.c, bzlib.c & decompress.c - have been modified to allow them to build with a C++ compiler. - The file bzip2-src/bzip2-cpp.patch contains the patch - that was used to modify the original source. - but the patch has apparently been filtered out when including the software - into the Perl core distribution. -License: BZIP - -Files: cpan/Compress-Raw-Zlib/* -Copyright: Copyright (c) 2005-2017 Paul Marquess. All rights reserved. -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it - and/or modify it under the same terms as Perl itself. - -Files: cpan/Compress-Raw-Zlib/zlib-src/* -Copyright: - Copyright (C) 1995-2017 Jean-loup Gailly and Mark Adler -License: ZLIB - -Files: cpan/Config-Perl-V/* -Copyright: - Copyright (C) 2009-2017 H.Merijn Brand -License: GPL-1+ or Artistic -Comment: - This library is free software; you can redistribute it and/or modify - it under the same terms as Perl itself. - -Files: cpan/CPAN/* -Copyright: unknown -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or - modify it under the same terms as Perl itself. - -Files: - cpan/CPAN/lib/App/Cpan.pm - cpan/CPAN/scripts/cpan -Copyright: (c) 2001-2015, brian d foy, All Rights Reserved. -License: GPL-1+ or Artistic -Comment: - You may redistribute this under the same terms as Perl itself. - -Files: cpan/CPAN-Meta/* -Copyright: - This software is copyright (c) 2010 by David Golden, Ricardo Signes, - Adam Kennedy and Contributors. -License: GPL-1+ or Artistic -Comment: - This is free software; you can redistribute it and/or modify it under - the same terms as the Perl 5 programming language system itself. - -Files: - cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_0.pod - cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_1.pod - cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_2.pod - cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_3.pod - cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_4.pod -Copyright: Ken Williams -License: GPL-1+ or Artistic -Comment: - This is free software; you can redistribute it and/or modify it under - the same terms as the Perl 5 programming language system itself. - -Files: cpan/CPAN-Meta-Requirements/* -Copyright: - This software is copyright (c) 2010 by David Golden and Ricardo Signes. -License: GPL-1+ or Artistic -Comment: - This is free software; you can redistribute it and/or modify it under - the same terms as the Perl 5 programming language system itself. - -Files: cpan/CPAN-Meta-YAML/* -Copyright: - This software is copyright (c) 2010 by Adam Kennedy. -License: GPL-1+ or Artistic -Comment: - This is free software; you can redistribute it and/or modify it under - the same terms as the Perl 5 programming language system itself. - -Files: cpan/DB_File/* -Copyright: Copyright (c) 1995-2016 Paul Marquess. All rights reserved. -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or modify - it under the same terms as Perl itself. - -Files: cpan/Devel-PPPort/* -Copyright: - Version 3.x, Copyright (C) 2004-2010, Marcus Holland-Moritz. - Version 2.x, Copyright (C) 2001, Paul Marquess. - Version 1.x, Copyright (C) 1999, Kenneth Albanowski. -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or - modify it under the same terms as Perl itself. - -Files: cpan/Devel-PPPort/parts/inc/mess -Copyright: - Copyright (C) 2017, Pali -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or - modify it under the same terms as Perl itself. - -Files: cpan/Digest/* -Copyright: - Copyright 1998-2006 Gisle Aas. - Copyright 1995,1996 Neil Winton. -License: GPL-1+ or Artistic -Comment: - This library is free software; you can redistribute it and/or - modify it under the same terms as Perl itself. - -Files: cpan/Digest-MD5/* -Copyright: - Copyright 1998-2003 Gisle Aas. - Copyright 1995-1996 Neil Winton. - Copyright 1990-1992 RSA Data Security, Inc. -License: GPL-1+ or Artistic -Comment: - This library is free software; you can redistribute it and/or - modify it under the same terms as Perl itself. - -Files: cpan/Digest-SHA/* -Copyright: - Copyright (C) 2003-2017 Mark Shelor, All Rights Reserved -License: GPL-1+ or Artistic -Comment: - This library is free software; you can redistribute it and/or modify - it under the same terms as Perl itself. - -Files: cpan/Encode/* -Copyright: Copyright 2002-2014 Dan Kogai -License: GPL-1+ or Artistic -Comment: - This library is free software; you can redistribute it and/or modify - it under the same terms as Perl itself. - -Files: cpan/Encode/bin/encguess -Copyright: 2015 Michael LaGrasta and Dan Kogai -License: Artistic -Comment: - This program is free software; you can redistribute it and/or modify it - under the terms of the the Artistic License (2.0). - -Files: cpan/encoding-warnings/* -Copyright: - Copyright 2004, 2005, 2006, 2007 by Audrey Tang . -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or modify it - under the same terms as Perl itself. - -Files: cpan/experimental/* -Copyright: - This software is copyright (c) 2013 by Leon Timmermans. -License: GPL-1+ or Artistic -Comment: - This is free software; you can redistribute it and/or modify it under - the same terms as the Perl 5 programming language system itself. - -Files: cpan/ExtUtils-Constant/* -Copyright: unknown -License: GPL-1+ or Artistic -Comment: - ---------------------------------------- - There are no copyright or license notices in this distribution. It - is assumed that the copyright and license of Perl itself applies here - as well. - . - This is supported by the README of the separate CPAN distribution at - , which states: - . - You may distribute this work under the terms of either the GNU General - Public License or the Artistic License, as specified in perl's README - file. - . - Copyright © 2001, 2002, 2005 Nicholas Clark - -Files: cpan/ExtUtils-MakeMaker/lib/ExtUtils/MakeMaker/Locale.pm -Copyright: 2010 Gisle Aas -License: GPL-1+ or Artistic -Comment: - This library is free software; you can redistribute it and/or modify it - under the same terms as Perl itself. - -Files: cpan/ExtUtils-Manifest/lib/ExtUtils/Manifest.pm -Copyright: 1996- by Andreas Koenig -License: GPL-1+ or Artistic -Comment: - This is free software; you can redistribute it and/or modify it - under the same terms as Perl itself. - -Files: - cpan/File-Fetch/* - cpan/IPC-Cmd/* - cpan/Module-Load/* - cpan/Module-Load-Conditional/* - cpan/Module-Loaded/* - cpan/Package-Constants/* - cpan/Params-Check/* -Copyright: - There are no copyright notices in these distributions. - Their author is Jos Boumans . -License: GPL-1+ or Artistic -Comment: - This library is free software; you may redistribute and/or modify it - under the same terms as Perl itself. - -Files: cpan/File-Path/* -Copyright: - This module is copyright (C) Charles Bailey, Tim Bunce, David Landgren, - James Keenan, and Richard Elberger 1995-2015. All rights reserved. -License: GPL-1+ or Artistic -Comment: - This library is free software; you can redistribute it and/or modify - it under the same terms as Perl itself. - -Files: cpan/File-Temp/* -Copyright: - This software is copyright (c) 2013 by Tim Jenness and the UK Particle - Physics and Astronomy Research Council. -License: GPL-1+ or Artistic -Comment: - This is free software; you can redistribute it and/or modify it under - the same terms as the Perl 5 programming language system itself. - -Files: cpan/Filter-Util-Call/* -Copyright: - Copyright (c) 1995-2011 Paul Marquess. All rights reserved. - Copyright (c) 2011-2014 Reini Urban. All rights reserved. - Copyright (c) 2014-2017 cPanel Inc. All rights reserved. -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or - modify it under the same terms as Perl itself. - -Files: cpan/Getopt-Long/* -Copyright: - Module Getopt::Long is Copyright 1990,2015 by Johan Vromans. -License: GPL-2+ or Artistic -Comment: - This program is free software; you can redistribute it and/or - modify it under the terms of the Perl Artistic License or 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. - -Files: cpan/HTTP-Tiny/* -Copyright: - This software is copyright (c) 2016 by Christian Hansen. -License: GPL-1+ or Artistic -Comment: - This is free software; you can redistribute it and/or modify it under - the same terms as the Perl 5 programming language system itself. - -Files: cpan/IO-Compress/* -Copyright: - Copyright (c) 1995-2017 Paul Marquess. All rights reserved. -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it - and/or modify it under the same terms as Perl itself. - -Files: cpan/IO-Zlib/* -Copyright: - Copyright (c) 1998-2004 Tom Hughes . All rights reserved. -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute - it and/or modify it under the same terms as Perl itself. - -Files: cpan/IPC-SysV/* -Copyright: - Version 2.x, Copyright (C) 2007-2010, Marcus Holland-Moritz. - Version 1.x, Copyright (c) 1997, Graham Barr. - Version 1.x, Copyright (c) 1999, Graham Barr. -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or - modify it under the same terms as Perl itself. - -Files: cpan/JSON-PP/* -Copyright: - Copyright 2007-2016 by Makamaka Hannyaharamitu -License: GPL-1+ or Artistic -Comment: - This library is free software; you can redistribute it and/or modify - it under the same terms as Perl itself. - -Files: cpan/libnet/* -Copyright: - (C) 1995-2006 Graham Barr. All rights reserved. - (C) 2013-2016 Steve Hay. All rights reserved. -License: GPL-1+ or Artistic -Comment: - This library is free software; you can redistribute it and/or modify - it under the same terms as Perl itself. - -Files: cpan/libnet/Makefile.PL -Copyright: - Copyright (C) 2014 Steve Hay. All rights reserved. -License: GPL-1+ or Artistic -Comment: - You may distribute under the terms of either the GNU General Public License - or the Artistic License, as specified in the LICENCE file. - -Files: cpan/List-Util/* -Copyright: - Copyright (c) 1997-2009 Graham Barr . All rights reserved. -License: GPL-1+ or Artistic -Comment: - This library is free software; you can redistribute it and/or - modify it under the same terms as Perl itself. - -Files: cpan/Scalar-List-Utils/lib/Scalar/Util.pm -Copyright: - Copyright (c) 1997-2007 Graham Barr . All rights reserved. - Copyright (c) 1999 Tuomas J. Lukka . All rights reserved. - Copyright (C) 2004, 2008 Matthijs van Duin. All rights reserved. - Copyright (C) 2014 cPanel Inc. All rights reserved. -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or modify it - under the same terms as Perl itself. - -Files: cpan/Scalar-List-Utils/lib/Sub/Util.pm -Copyright: (c) 2014 Paul Evans . All rights reserved -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or modify it - under the same terms as Perl itself. - - -Files: cpan/Locale-Codes/* -Copyright: - Copyright (C) 1997-2001 Canon Research Centre Europe (CRE). - Copyright (C) 2001-2010 Neil Bowers - Copyright (c) 1996-2018 Sullivan Beck - Copyright (c) 2001 Michael Hennecke -License: GPL-1+ or Artistic -Comment: - This module is free software; you can redistribute it and/or - modify it under the same terms as Perl itself. - -Files: cpan/Locale-Maketext-Simple/* -Copyright: - Copyright 2003, 2004, 2005, 2006 by Audrey Tang -License: Expat or GPL-1+ or Artistic -Comment: - This software is released under the MIT license cited below. Additionally, - when this software is distributed with Perl Kit, Version 5, you may also - redistribute it and/or modify it under the same terms as Perl itself. - -Files: - cpan/Locale-Maketext-Simple/t/po_with_i_default/i_default.po - cpan/Locale-Maketext-Simple/t/po_with_i_default/fr.po - cpan/Locale-Maketext-Simple/t/po_with_i_default/en.po - cpan/Locale-Maketext-Simple/t/po_without_i_default/en.po - cpan/Locale-Maketext-Simple/t/po_without_i_default/fr.po -Copyright: - Copyright (C) All Perl Hackers everywhere - Ton Voon , 2009. -License: Expat or GPL-1+ or Artistic -Comment: - ---------------------------------------- - It is assumed that these translations are licensed under the same terms as - the rest of the Locale-Maketext-Simple distribution. - -Files: cpan/Math-Complex/* -Copyright: unknown -License: GPL-1+ or Artistic -Comment: - This library is free software; you can redistribute it and/or modify - it under the same terms as Perl itself. - -Files: cpan/Memoize/* -Copyright: - Copyright 1998, 1999, 2000, 2001, 2012 M-J. Dominus. -License: GPL-1+ or Artistic -Comment: - This library is free software; you may redistribute it and/or modify - it under the same terms as Perl itself. - . - You may copy and distribute this program under the same terms as - Perl itself. If in doubt, write to mjd-perl-memoize+@plover.com for - a license. - -Files: cpan/MIME-Base64/* -Copyright: - Copyright 1995-2004,2010 Gisle Aas -License: GPL-1+ or Artistic -Comment: - This library is free software; you can redistribute it and/or - modify it under the same terms as Perl itself. - -Files: cpan/MIME-Base64/Base64.xs -Copyright: - Copyright 1997-2004 Gisle Aas - Copyright (c) 1991 Bell Communications Research, Inc. (Bellcore) -License: GPL-1+ or Artistic -Comment: - This library is free software; you can redistribute it and/or - modify it under the same terms as Perl itself. - . - The tables and some of the code that used to be here was borrowed from - metamail, which comes with this message: - . - Copyright (c) 1991 Bell Communications Research, Inc. (Bellcore) - . - Permission to use, copy, modify, and distribute this material - for any purpose and without fee is hereby granted, provided - that the above copyright notice and this permission notice - appear in all copies, and that the name of Bellcore not be - used in advertising or publicity pertaining to this - material without the specific, prior written permission - of an authorized representative of Bellcore. BELLCORE - MAKES NO REPRESENTATIONS ABOUT THE ACCURACY OR SUITABILITY - OF THIS MATERIAL FOR ANY PURPOSE. IT IS PROVIDED "AS IS", - WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES. - -Files: cpan/Module-Metadata/* -Copyright: - Copyright (c) 2001-2011 Ken Williams. All rights reserved. - Copyright (c) 2010-2011 Matt Trout and David Golden. All rights reserved. -License: GPL-1+ or Artistic -Comment: - This library is free software; you can redistribute it and/or - modify it under the same terms as Perl itself. - -Files: cpan/NEXT/* -Copyright: - Copyright (c) 2000-2001, Damian Conway. All Rights Reserved. -License: GPL-1+ or Artistic -Comment: - This module is free software. It may be used, redistributed - and/or modified under the same terms as Perl itself. - -Files: cpan/parent/* -Copyright: - Copyright (c) 2007-10 Max Maischein -License: GPL-1+ or Artistic -Comment: - This module is released under the same terms as Perl itself. - -Files: cpan/Parse-CPAN-Meta/* -Copyright: - This software is copyright (c) 2015 by Adam Kennedy and Contributors. -License: GPL-1+ or Artistic -Comment: - This is free software; you can redistribute it and/or modify it under - the same terms as the Perl 5 programming language system itself. - -Files: cpan/PerlIO-via-QuotedPrint/* -Copyright: - Copyright (c) 2002-2004,2012 Elizabeth Mattijsen. All rights reserved. -License: GPL-1+ or Artistic -Comment: - This library is free software; you can redistribute it and/or modify - it under the same terms as Perl itself. - -Files: cpan/Perl-OSType/* -Copyright: - This software is copyright (c) 2016 by David Golden. -License: GPL-1+ or Artistic -Comment: - This is free software; you can redistribute it and/or modify it under - the same terms as the Perl 5 programming language system itself. - -Files: cpan/Pod-Checker/* -Copyright: - Copyright (C) 1994-2000 by Bradford Appleton. All rights reserved. -License: GPL-1+ or Artistic -Comment: - This file is part of "PodParser". PodParser is free software; - you can redistribute it and/or modify it under the same terms - as Perl itself. - -Files: cpan/Pod-Escapes/* -Copyright: - Copyright (c) 2001-2004 Sean M. Burke. All rights reserved. -License: GPL-1+ or Artistic -Comment: - This library is free software; you can redistribute it and/or modify - it under the same terms as Perl itself. - -Files: cpan/podlators/* -Copyright: - Copyright 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, - 2010, 2012, 2013, 2014, 2015, 2016, 2017 Russ Allbery - Substantial contributions by Sean Burke -License: GPL-1+ or Artistic -Comment: - This program is free software; you may redistribute it and/or modify it - under the same terms as Perl itself. - -Files: cpan/podlators/lib/Pod/Text/Overstrike.pm -Copyright: - Copyright 2000 Joe Smith . - Copyright 2001, 2004, 2008 Russ Allbery . -License: GPL-1+ or Artistic -Comment: - This program is free software; you may redistribute it and/or modify it - under the same terms as Perl itself. - -Files: cpan/podlators/t/data/snippets/README -Copyright: - Copyright 2015 Russ Allbery -License: RRA-KEEP-THIS-NOTICE -Comment: - The license text can be found at the end of this file. - -Files: - cpan/podlators/t/docs/pod-spelling.t - cpan/podlators/t/docs/pod.t - cpan/podlators/t/docs/synopsis.t - cpan/podlators/t/lib/Test/RRA.pm - cpan/podlators/t/lib/Test/RRA/Config.pm - cpan/podlators/t/style/minimum-version.t - cpan/podlators/t/style/strict.t -Copyright: Copyright 2012, 2013, 2014 - The Board of Trustees of the Leland Stanford Junior University -License: Expat - -Files: cpan/podlators/t/lib/Test/RRA/ModuleVersion.pm -Copyright: Copyright 2016 Russ Allbery -License: Expat - -Files: cpan/podlators/t/man/no-encode.t -Copyright: - Copyright 2016 Niko Tyni - Copyright 2016 Russ Allbery -License: GPL-1+ or Artistic -Comment: - This program is free software; you may redistribute it and/or modify it - under the same terms as Perl itself. - -Files: cpan/podlators/t/style/module-version.t -Copyright: - Copyright 2014, 2015, 2016 Russ Allbery - Copyright 2012, 2013, 2014 The Board of Trustees of the Leland Stanford Junior University -License: Expat - -Files: cpan/Pod-Parser/* -Copyright: - Copyright (C) 1996-2000 by Bradford Appleton. All rights reserved. -License: GPL-1+ or Artistic -Comment: - PodParser is free software; you can redistribute it and/or modify it - under the same terms as Perl itself. - -Files: cpan/Pod-Parser/lib/Pod/PlainText.pm -Copyright: - Copyright 1999-2000 by Russ Allbery -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or modify it - under the same terms as Perl itself. - -Files: cpan/Pod-Parser/lib/Pod/ParseUtils.pm -Copyright: - Copyright (C) 1999-2000 by Marek Rouchal. All rights reserved. -License: GPL-1+ or Artistic -Comment: - This file is part of "PodParser". PodParser is free software; - you can redistribute it and/or modify it under the same terms - as Perl itself. - -Files: cpan/Pod-Parser/t/pod/contains_pod.t -Copyright: - Copyright (C) 2005 Joshua Hoblitt -License: GPL-1+ or Artistic -Comment: - ---------------------------------------- - This file has no explicit license notice, but it is assumed that it - is licensed under the same terms as the rest of the distribution. - -Files: cpan/Pod-Simple/* -Copyright: - Copyright (c) 2002-2004 Sean M. Burke. All rights reserved. -License: GPL-1+ or Artistic -Comment: - This library is free software; you can redistribute it and/or modify it - under the same terms as Perl itself. - -Files: cpan/Pod-Simple/lib/Pod/Simple/XHTML.pm -Copyright: - Copyright (c) 2003-2005 Allison Randal. -License: GPL-1+ or Artistic -Comment: - This library is free software; you can redistribute it and/or modify it - under the same terms as Perl itself. - -Files: - cpan/Pod-Simple/t/perlfaq.pod - cpan/Pod-Simple/t/perlfaqo.txt -Copyright: - Copyright (c) 1997-1999 Tom Christiansen and Nathan Torkington. - All rights reserved. -License: GPL-1+ or Artistic -Comment: - ---------------------------------------- - This document is part of the perlfaq distribution. A newer version - of it is also included in pod/perlfaq3.pod. - . - The license notice in the document is: - . - When included as an integrated part of the Standard Distribution - of Perl or of its documentation (printed or otherwise), this works is - covered under Perl's Artistic License. For separate distributions of - all or part of this FAQ outside of that, see L. - . - Irrespective of its distribution, all code examples here are in the public - domain. You are permitted and encouraged to use this code and any - derivatives thereof in your own programs for fun or for profit as you - see fit. A simple comment in the code giving credit to the FAQ would - be courteous but is not required. - . - The corresponding license in pod/perlfaq.pod is: - . - This document is available under the same terms as Perl itself. Code - examples in all the perlfaq documents are in the public domain. Use - them as you see fit (and at your own risk with no warranty from anyone). - -Files: cpan/Pod-Usage/* -Copyright: - Copyright (C) 1996-2000 by Bradford Appleton. All rights reserved. - Copyright (c) 2001-2016 by Marek Rouchal. -License: GPL-1+ or Artistic -Comment: - This file is part of "Pod-Usage". Pod-Usage is free software; - you can redistribute it and/or modify it under the same terms - as Perl itself. - -Files: cpan/Pod-Usage/t/inc/Pod/PlainText.pm -Copyright: - Copyright 1999-2000 by Russ Allbery -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or modify it - under the same terms as Perl itself. - -Files: cpan/Sys-Syslog/* -Copyright: - Copyright (C) 1990-2012 by Larry Wall and others. -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or modify it - under the same terms as Perl itself. - -Files: cpan/Sys-Syslog/fallback/syslog.h -Copyright: - Copyright (c) 1982, 1986, 1988, 1993 - The Regents of the University of California. All rights reserved. -License: BSD-3-clause-with-weird-numbering - -Files: cpan/Term-ANSIColor/* -Copyright: - Copyright 1996 Zenin - Copyright 1996, 1997, 1998, 2000, 2001, 2002, 2005, 2006, 2008, 2009, - 2010, 2011, 2012, 2013, 2014, 2015, 2016 Russ Allbery - Copyright 2012 Kurt Starsinic -License: GPL-1+ or Artistic -Comment: - This program is free software; you may redistribute it and/or modify - it under the same terms as Perl itself. - -Files: - cpan/Term-ANSIColor/t/lib/Test/RRA.pm -Copyright: 2013, 2014 The Board of Trustees of the Leland Stanford Junior University -License: Expat - -Files: - cpan/Term-ANSIColor/t/lib/Test/RRA/Config.pm -Copyright: - Copyright 2015, 2016 Russ Allbery - Copyright 2013, 2014 The Board of Trustees of the Leland Stanford Junior University -License: Expat - -Files: cpan/Term-Cap/* -Copyright: 1995-2015 (c) perl5 porters. -License: GPL-1+ or Artistic -Comment: - This software is free software and can be modified and distributed under - the same terms as Perl itself. - -Files: cpan/Test-Harness/* -Copyright: - Copyright (c) 2007-2011, Andy Armstrong . All rights reserved. -License: GPL-1+ or Artistic -Comment: - This module is free software; you can redistribute it and/or - modify it under the same terms as Perl itself. - -Files: cpan/Test-Harness/lib/TAP/Parser.pm -Copyright: - Copyright 2006-2008 Curtis "Ovid" Poe, all rights reserved. -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or modify it - under the same terms as Perl itself. - -Files: cpan/Test-Harness/lib/TAP/Parser/YAMLish/Reader.pm -Copyright: - Copyright 2007-2011 Andy Armstrong. - Portions copyright 2006-2008 Adam Kennedy. -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or modify it - under the same terms as Perl itself. - -Files: cpan/Test-Simple/* -Copyright: - Copyright 2001-2008 by Michael G Schwern . - Copyright 2018 Chad Granum . -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or - modify it under the same terms as Perl itself. - -Files: cpan/Test-Simple/lib/Test/Builder.pm -Copyright: - Copyright 2002-2008 by chromatic and - Michael G Schwern E. -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or - modify it under the same terms as Perl itself. - -Files: cpan/Test-Simple/lib/Test/Builder/Tester/Color.pm -Copyright: - Copyright Mark Fowler 2002. -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it - and/or modify it under the same terms as Perl itself. - -Files: cpan/Test-Simple/lib/Test/Builder/Tester.pm -Copyright: - Copyright Mark Fowler 2002, 2004. - . - Some code taken from Test::More and Test::Catch, written by by - Michael G Schwern . Hence, those parts - Copyright Michael G Schwern 2001. Used and distributed with - permission. - . - This module is copyright 2005 Fergal Daly , some parts - are based on other people's work. -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it - and/or modify it under the same terms as Perl itself. - -Files: cpan/Test-Simple/lib/Test/Tutorial.pod -Copyright: - Copyright 2001 by Michael G Schwern . -License: GPL-1+ or Artistic -Comment: - This documentation is free; you can redistribute it and/or modify it - under the same terms as Perl itself. - . - Irrespective of its distribution, all code examples in these files - are hereby placed into the public domain. You are permitted and - encouraged to use this code in your own programs for fun - or for profit as you see fit. A simple comment in the code giving - credit would be courteous but is not required. - -Files: cpan/Test-Simple/lib/Test/Builder/IO/Scalar.pm -Copyright: - Copyright (c) 1996 by Eryq. All rights reserved. - Copyright (c) 1999,2001 by ZeeGee Software Inc. All rights reserved. -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it - and/or modify it under the same terms as Perl itself. - -Files: cpan/Test-Simple/lib/Test/Tester/CaptureRunner.pm -Copyright: Copyright 2003 by Fergal Daly . -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it - and/or modify it under the same terms as Perl itself. - -Files: - cpan/Test-Simple/lib/Test/use/ok.pm - cpan/Test-Simple/lib/ok.pm -Copyright: none - To the extent possible under law, 唐鳳 has waived all copyright and related - or neighboring rights to L -License: CC0-1.0 -Comment: - ---------------------------------------- - The file links to http://creativecommons.org/publicdomain/zero/1.0/ - and the full license text as retrieved from there can be found at the - end of this file. - -Files: cpan/Text-Balanced/* -Copyright: - Copyright 1997 - 2001 Damian Conway. All Rights Reserved. - Some (minor) parts copyright 2009 Adam Kennedy. -License: GPL-1+ or Artistic -Comment: - This module is free software. It may be used, redistributed and/or - modified under the same terms as Perl itself. - -Files: cpan/Text-ParseWords/* -Copyright: unknown -License: GPL-1+ or Artistic -Comment: - ---------------------------------------- - There are no copyright notices this distribution. - . - This library is free software; you may redistribute and/or modify it - under the same terms as Perl itself. - -Files: cpan/Text-Tabs/* -Copyright: - Copyright (C) 1996-2009 David Muir Sharnoff. - Copyright (C) 2005 Aristotle Pagaltzis - Copyright (C) 2012-2013 Google, Inc. -License: TEXT-TABS - -Files: cpan/Tie-File/* -Copyright: - Tie::File version 0.97 is copyright (C) 2003 Mark Jason Dominus. -License: GPL-2+ or Artistic -Comment: - This library is free software; you may redistribute it and/or modify - it under the same terms as Perl itself. - . - These terms are your choice of any of (1) the Perl Artistic Licence, - or (2) version 2 of the GNU General Public License as published by the - Free Software Foundation, or (3) any later version of the GNU General - Public License. - -Files: - cpan/bignum/* - cpan/Tie-RefHash/* - cpan/Win32API-File/* - dist/ExtUtils-Install/* - dist/Math-BigInt/* - dist/Math-BigInt-FastCalc/* - dist/Math-BigRat/* - dist/Thread-Queue/* -Copyright: unknown -License: GPL-1+ or Artistic -Comment: - This program is free software; you may redistribute it and/or modify - it under the same terms as Perl itself. - ---------------------------------------- - These distributions include no copyright notices but have - the same explicit licensing information. - -Files: cpan/Time-Local/* -Copyright: - Copyright (c) 1997 - 2016 by Graham Barr & Dave Rolsky. -License: GPL-1+ or Artistic -Comment: - This is free software; you can redistribute it and/or modify it under - the same terms as the Perl 5 programming language system itself. - -Files: cpan/Time-Piece/* -Copyright: unknown -License: GPL-1+ or Artistic -Comment: - This module is free software, you may distribute it under the same - terms as Perl. - -Files: cpan/Time-Piece/Piece.xs -Copyright: - strptime copied from freebsd with the following copyright: - Copyright (c) 1994 Powerdog Industries. All rights reserved. -License: GPL-1+ or Artistic, and BSD-4-clause-POWERDOG -Comment: - ---------------------------------------- - The strptime function is licensed under the BSD-like license included - below. It is assumed that the other parts are licensed under the same - terms as the rest of the distribution. - -Files: cpan/Unicode-Collate/* -Copyright: - This module is Copyright(C) 2001-2017, SADAHIRO Tomoyuki. Japan. All - rights reserved. -License: GPL-1+ or Artistic -Comment: - This module is free software; you can redistribute it and/or - modify it under the same terms as Perl itself. - -Files: cpan/Unicode-Collate/Collate/allkeys.txt -Copyright: - Copyright (c) 2016 Unicode, Inc. -License: Unicode -Comment: - For terms of use, see http://www.unicode.org/terms_of_use.html - ---------------------------------------- - See below for the full text of this license as downloaded from the above URL - on Tue, 26 Apr 2011 14:41:24 +0300. - -Files: cpan/Unicode-Normalize/* -Copyright: - Copyright(C) 2001-2012, SADAHIRO Tomoyuki. Japan. All rights reserved. -License: GPL-1+ or Artistic -Comment: - This module is free software; you can redistribute it and/or - modify it under the same terms as Perl itself. - -Files: cpan/Win32/* -Copyright: (c) 1995 Microsoft Corporation. All rights reserved. -License: GPL-1+ or Artistic -Comment: - ---------------------------------------- - There are no copyright notices or license information in this distribution, - but the README file of the separate CPAN distribution at - states: - . - This module is free software; you may redistribute it and/or modify it - under the same terms as Perl itself. - . - The "Perl for Win32" source code was licensed under the same terms - as Perl itself and contained this copyright notice: - . - (c) 1995 Microsoft Corporation. All rights reserved. - Developed by ActiveWare Internet Corp. - -Files: dist/Attribute-Handlers/* -Copyright: - Copyright (c) 2001-2009, Damian Conway. All Rights Reserved. -License: GPL-1+ or Artistic -Comment: - This module is free software. It may be used, redistributed - and/or modified under the same terms as Perl itself. - -Files: - dist/autouse/* - dist/base/* - dist/constant/* - dist/Devel-SelfStubber/* - dist/Dumpvalue/* - dist/Env/* - dist/ExtUtils-Command/* - dist/ExtUtils-Manifest/* - dist/I18N-Collate/* - dist/Safe/* - ext/Fcntl/* - ext/FileCache/* - ext/GDBM_File/* - ext/IPC-Open2/* - ext/IPC-Open3/* - ext/NDBM_File/* - ext/ODBM_File/* - ext/Opcode/* - ext/PerlIO-encoding/* - ext/PerlIO-scalar/* - ext/PerlIO-via/* - ext/POSIX/* - ext/re/* - ext/Socket/* - ext/Sys-Hostname/* - ext/Tie-Hash-NamedCapture/* - ext/Tie-Memoize/* - ext/VMS-DCLsym/* - ext/VMS-Stdio/* -Copyright: unknown -License: GPL-1+ or Artistic -Comment: - ---------------------------------------- - There is no copyright or license information in these distributions. - It is assumed that they are licensed under the same terms as Perl itself. - -Files: dist/B-Deparse/* -Copyright: - Copyright (c) 1998-2000, 2002, 2003, 2004, 2005, 2006 Stephen McCamant. - All rights reserved. -License: GPL-1+ or Artistic -Comment: - This module is free software; you can redistribute and/or modify - it under the same terms as Perl itself. - -Files: dist/Carp/* -Copyright: - Copyright (c) 1994-2013 Larry Wall - Copyright (c) 2011, 2012, 2013 Andrew Main (Zefram) -License: GPL-1+ or Artistic -Comment: - This module is free software. It may be used, redistributed - and/or modified under the same terms as Perl itself. - -Files: dist/Data-Dumper/* -Copyright: - Copyright (c) 1996-2017 Gurusamy Sarathy. All rights reserved. -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or - modify it under the same terms as Perl itself. - -Files: dist/ExtUtils-CBuilder/* -Copyright: - Copyright (c) 2003-2005 Ken Williams. All rights reserved. - Copyright (c) 2012-2017 Ken Williams. All rights reserved. -License: GPL-1+ or Artistic -Comment: - This library is free software; you can redistribute it and/or - modify it under the same terms as Perl itself. - -Files: dist/ExtUtils-ParseXS/* -Copyright: - Copyright 2002-2012 by Ken Williams, David Golden and other contributors. - All rights reserved. -License: GPL-1+ or Artistic -Comment: - This library is free software; you can redistribute it and/or - modify it under the same terms as Perl itself. - . - Based on the ExtUtils::xsubpp code by Larry Wall and the Perl 5 - Porters, which was released under the same license terms. - -Files: dist/Filter-Simple/* -Copyright: - Copyright (c) 2000-2008, Damian Conway. All Rights Reserved. -License: GPL-1+ or Artistic -Comment: - This module is free software. It may be used, redistributed - and/or modified under the same terms as Perl itself. - -Files: dist/if/* -Copyright: This software is copyright (c) 2002 by Ilya Zakharevich. -License: GPL-1+ or Artistic -Comment: - This is free software; you can redistribute it and/or modify it under - the same terms as the Perl 5 programming language system itself. - -Files: dist/I18N-LangTags/* -Copyright: - Copyright 1998+, Sean M. Burke , all rights - reserved. -License: GPL-1+ or Artistic -Comment: - This library is free software; you can redistribute it and/or modify - it under the same terms as Perl itself. - -Files: dist/I18N-LangTags/lib/I18N/LangTags/List.pm -Copyright: - Copyright (c) 2001+ Sean M. Burke. All rights reserved. -License: GPL-1+ or Artistic -Comment: - You can redistribute and/or modify this document under the same terms - as Perl itself. - -Files: dist/IO/* -Copyright: - Copyright (c) 1996-2003 Graham Barr . All rights reserved. -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or - modify it under the same terms as Perl itself. - -Files: dist/IO/lib/IO/Socket.pm -Copyright: - Copyright (c) 1997-8 Graham Barr . All rights reserved. - Copyright 2001, Lincoln Stein . -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or - modify it under the same terms as Perl itself. - . - The atmark() implementation: Copyright 2001, Lincoln Stein . - This module is distributed under the same terms as Perl itself. - Feel free to use, modify and redistribute it as long as you retain - the correct attribution. - -Files: dist/lib/* -Copyright: as above for 'Files: *' -License: GPL-1+ or Artistic -Comment: - This package has the same copyright and license as the perl core. - -Files: dist/Locale-Maketext/* -Copyright: - Copyright 1999-2004, Sean M. Burke , all rights reserved. -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or modify - it under the same terms as Perl itself. - -Files: dist/Locale-Maketext/lib/Locale/Maketext/TPJ13.pod -Copyright: 1999 The Perl Journal. -License: GPL-1+ or Artistic -Comment: - This document may be distributed under the same terms as Perl itself. - -Files: dist/Module-CoreList/* -Copyright: - Copyright (C) 2002-2009 Richard Clamp. All Rights Reserved. -License: GPL-1+ or Artistic -Comment: - This program is free software; you may redistribute it and/or modify - it under the same terms as Perl itself. - -Files: dist/Module-CoreList/corelist -Copyright: - Copyright (c) 2002-2007 by D.H. aka PodMaster -License: GPL-1+ or Artistic -Comment: - This program is distributed under the same terms as perl itself. - -Files: dist/Module-CoreList/lib/Module/CoreList/Utils.pm -Copyright: - Copyright (C) 2013 Chris Williams. All Rights Reserved. -License: GPL-1+ or Artistic -Comment: - This module is free software; you can redistribute it and/or modify it - under the same terms as Perl itself. - -Files: dist/Net-Ping/* -Copyright: - Copyright (c) 2016, cPanel Inc. All rights reserved. - Copyright (c) 2012, Steve Peters. All rights reserved. - Copyright (c) 2002-2003, Rob Brown. All rights reserved. - Copyright (c) 2001, Colin McMillen. All rights reserved. -License: GPL-1+ or Artistic -Comment: - This program is free software; you may redistribute it and/or - modify it under the same terms as Perl itself. - -Files: dist/PathTools/* -Copyright: - Copyright (c) 2004 by the Perl 5 Porters. All rights reserved. -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or modify - it under the same terms as Perl itself. - -Files: dist/PathTools/Cwd.xs -Copyright: - Copyright (c) 2004 by the Perl 5 Porters. All rights reserved. - Copyright (c) 2003 Constantin S. Svintsoff -License: GPL-1+ or Artistic, and BSD-3-clause-GENERIC -Comment: - ---------------------------------------- - The main license applies to most of the code: - . - This program is free software; you can redistribute it and/or modify - it under the same terms as Perl itself. - . - but portions of it have been taken from a BSD variant and are licensed - under the terms of the "BSD-3-clause-GENERIC" license included in this file. - . - dist/PathTools/Cwd.pm states: - . - Portions of the C code in this library are copyright (c) 1994 by the - Regents of the University of California. All rights reserved. The - license on this code is compatible with the licensing of the rest of - the distribution - please see the source code in F for the - details. - . - but, as discussed in - http://rt.cpan.org/Public/Bug/Display.html?id=64116 - this is outdated and dist/PathTools/Cwd.xs itself contains the correct - information. - -Files: dist/Pod-Perldoc/* -Copyright: - Copyright (c) 2002-2007 Sean M. Burke. - Copyright (c) 2011 Mark Allen. All rights reserved. - Copyright (c) 2011 brian d foy. All rights reserved. - Copyright (c) 2017 Mark Allen. -License: GPL-1+ or Artistic -Comment: - This library is free software; you can redistribute it and/or modify it - under the same terms as Perl itself. - -Files: dist/Storable/* -Copyright: - Copyright (c) 1995-2001, Raphael Manfredi - Copyright (c) 2002-2014 by the Perl 5 Porters - Copyright (c) 2016,2017 cPanel Inc - Copyright (c) 2017, Reini Urban -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or modify - it under the same terms as Perl 5 itself. - -Files: dist/Storable/t/forgive.t -Copyright: - Copyright (c) 1995-2000, Raphael Manfredi - (C) Copyright 1997, Universitat Dortmund, all rights reserved. -License: GPL-1+ or Artistic -Comment: - You may redistribute only under the same terms as Perl 5, as specified - in the README file that comes with the distribution. - -Files: - dist/Storable/t/attach_errors.t - dist/Storable/t/attach_singleton.t - dist/Storable/t/circular_hook.t -Copyright: - Copyright 2005, Adam Kennedy. -License: GPL-1+ or Artistic -Comment: - You may redistribute only under the same terms as Perl 5, as specified - in the README file that comes with the distribution. - -Files: - dist/Storable/t/code.t - dist/Storable/t/sig_die.t -Copyright: - Copyright (c) 2002 Slaven Rezic -License: GPL-1+ or Artistic -Comment: - You may redistribute only under the same terms as Perl 5, as specified - in the README file that comes with the distribution. - -Files: dist/threads/* -Copyright: unknown -License: GPL-1+ or Artistic -Comment: - threads is released under the same license as Perl. - -Files: dist/threads-shared/* -Copyright: unknown -License: GPL-1+ or Artistic -Comment: - threads::shared is released under the same license as Perl. - -Files: dist/threads-shared/shared.xs -Copyright: - Copyright (c) 2001-2002, 2006 Larry Wall -License: GPL-1+ or Artistic -Comment: - You may distribute under the terms of either the GNU General Public - License or the Artistic License, as specified in the README file. - -Files: dist/Test/* -Copyright: - Copyright (c) 1998-2000 Joshua Nathaniel Pritikin. - Copyright (c) 2001-2002 Michael G. Schwern. - Copyright (c) 2002-2004 Sean M. Burke. -License: GPL-1+ or Artistic -Comment: - This package is free software and is provided "as is" without express - or implied warranty. It may be used, redistributed and/or modified - under the same terms as Perl itself. - -Files: dist/Time-HiRes/* -Copyright: - Copyright (c) 1996-2002 Douglas E. Wegscheid. All rights reserved. - Copyright (c) 2002-2010 Jarkko Hietaniemi. - Copyright (c) 2011, 2012, 2013 Andrew Main (Zefram) - All rights reserved. -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or modify - it under the same terms as Perl itself. - -Files: dist/XSLoader/* -Copyright: - Copyright (C) 1990-2011 by Larry Wall and others. -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or modify - it under the same terms as Perl itself. - -Files: ext/attributes/* -Copyright: - Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 - by Larry Wall and others -License: GPL-1+ or Artistic -Comment: - You may distribute under the terms of either the GNU General Public - License or the Artistic License, as specified in the README file. - -Files: - ext/Amiga-ARexx/* - ext/Amiga-Exec/* -Copyright: - Copyright (C) 2013 by Andy Broad. -License: GPL-1+ or Artistic -Comment: - There is no license information included. It is assumed that this - distribution is licensed under the same terms as Perl itself. - -Files: ext/B/* -Copyright: - Copyright (c) 1996, 1997, 1998 Malcolm Beattie -License: GPL-1+ or Artistic -Comment: - You may distribute under the terms of either the GNU General Public - License or the Artistic License, as specified in the README file. - -Files: ext/B/B/Concise.pm -Copyright: - Copyright (C) 2000-2003 Stephen McCamant. All rights reserved. -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute and/or modify it - under the same terms as Perl itself. - -Files: ext/Devel-Peek/* -Copyright: - Copyright (c) 1995-98 Ilya Zakharevich. All rights reserved. -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or - modify it under the same terms as Perl itself. - -Files: ext/DynaLoader/* -Copyright: unknown -License: GPL-1+ or Artistic -Comment: - ---------------------------------------- - There is no license information included that clearly applies to the - whole of this distribution. It is assumed that it is licensed under - the same terms as Perl itself. - -Files: ext/DynaLoader/dl_aix.xs -Copyright: - This is an unpublished work copyright (c) 1992 Helios Software GmbH - 3000 Hannover 1, Germany -License: GPL-1+ or Artistic -Comment: - ---------------------------------------- - It is assumed that this file is licensed under the same terms as Perl itself. - -Files: ext/DynaLoader/dl_dld.xs -Copyright: - based upon the file "dl.c", which is Copyright (c) 1994, Larry Wall -License: GPL-1+ or Artistic -Comment: - You may distribute under the terms of either the GNU General Public - License or the Artistic License, as specified in the README file. - -Files: ext/DynaLoader/dl_symbian.xs -Copyright: 2004, Nokia -License: GPL-1+ or Artistic -Comment: - ---------------------------------------- - The license in the file is specified as - . - License: Artistic/GPL - -Files: ext/Errno/* -Copyright: - Copyright (c) 1997-8 Graham Barr. All rights reserved. -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or modify - it under the same terms as Perl itself. - -Files: ext/File-Glob/* -Copyright: unknown -License: Artistic -Comment: - The Perl interface was written by Nathan Torkington , - and is released under the artistic license. Further modifications - were made by Greg Bacon , Gurusamy Sarathy - , and Thomas Wegner . - -Files: - ext/File-Glob/bsd_glob.c - ext/File-Glob/bsd_glob.h -Copyright: - Copyright (c) 1989, 1993 - The Regents of the University of California. All rights reserved. - . - This code is derived from software contributed to Berkeley by - Guido van Rossum. -License: BSD-3-clause - -Files: ext/Hash-Util/* -Copyright: unknown -License: GPL-1+ or Artistic -Comment: - ---------------------------------------- - There is no license information in this distribution. - It is assumed that it is licensed under the same terms as Perl itself. - -Files: ext/Hash-Util/lib/Hash/Util.pm -Copyright: - hv_store() is from Array::RefElem, Copyright 2000 Gisle Aas. -License: GPL-1+ or Artistic -Comment: - ---------------------------------------- - As above, it is assumed that this file is licensed under the same terms - as Perl itself. - . - The copyright and license information of Array::RefElem, as fetched from - , is as - follows: - . - Copyright 2000 Gisle Aas - . - This library is free software; you can redistribute it and/or - modify it under the same terms as Perl itself. - -Files: ext/Hash-Util-FieldHash/* -Copyright: - Copyright (C) 2006-2007 by (Anno Siegel) -License: GPL-1+ or Artistic -Comment: - This library is free software; you can redistribute it and/or modify - it under the same terms as Perl itself, either Perl version 5.8.7 or, - at your option, any later version of Perl 5 you may have available. - -Files: ext/I18N-Langinfo/* -Copyright: - Copyright 2001 by Jarkko Hietaniemi -License: GPL-1+ or Artistic -Comment: - This library is free software; you can redistribute it and/or modify - it under the same terms as Perl itself. - -Files: ext/mro/* -Copyright: - Copyright (c) 2007 Brandon L Black - Copyright (c) 2008,2009 Larry Wall and others -License: GPL-1+ or Artistic -Comment: - You may distribute under the terms of either the GNU General Public - License or the Artistic License, as specified in the README file. - -Files: ext/Pod-Html/* -Copyright: unknown -License: Artistic -Comment: - This program is distributed under the Artistic License. - -Files: ext/SDBM_File/* -Copyright: unknown -License: GPL-1+ or Artistic -Comment: - There is no copyright or license information in this distribution. - It is assumed that it is licensed under the same terms as Perl itself. - -Files: ext/SDBM_File/sdbm/* -Copyright: none -License: SDBM-PUBLIC-DOMAIN - -Files: ext/Win32CORE/* -Copyright: - Copyright (C) 2007 by Larry Wall and others -License: GPL-1+ or Artistic -Comment: - You may distribute under the terms of either the GNU General Public - License or the Artistic License, as specified in the README file. - -Files: ext/XS-APItest/* -Copyright: - Copyright (C) 2002,2004 Tim Jenness, Christian Soeller, Hugo van der Sanden. - All Rights Reserved. - . - Copyright (C) 2009 Andrew Main (Zefram) -License: GPL-1+ or Artistic -Comment: - This library is free software; you can redistribute it and/or modify - it under the same terms as Perl itself. - -Files: ext/XS-Typemap/* -Copyright: - Copyright (C) 2001 Tim Jenness All Rights Reserved. -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or modify - it under the same terms as Perl itself. - -Files: - pod/perldebtut.pod - pod/perlperf.pod -Copyright: - Richard Foley Copyright (c) 2000 -License: GPL-1+ or Artistic -Comment: - ---------------------------------------- - These files are a part of Perl itself, licensed as above. - -Files: pod/perlembed.pod -Copyright: - Copyright (C) 1995, 1996, 1997, 1998 Doug MacEachern and Jon Orwant. All - Rights Reserved. -License: GPL-1+ or Artistic -Comment: - This document may be distributed under the same terms as Perl itself. - -Files: pod/perlexperiment.pod -Copyright: - Copyright 2010, brian d foy -License: GPL-1+ or Artistic -Comment: - You can use and redistribute this document under the same terms as Perl - itself. - -Files: - pod/perlfaq*.pod - pod/perlopentut.pod - pod/perltooc.pod -Copyright: - Copyright (c) 1997-2010 Tom Christiansen, Nathan Torkington, and - other authors as noted. All rights reserved. -License: GPL-1+ or Artistic -Comment: - This documentation is free; you can redistribute it and/or modify it - under the same terms as Perl itself. - . - Irrespective of its distribution, all code examples here are in the public - domain. You are permitted and encouraged to use this code and any - derivatives thereof in your own programs for fun or for profit as you - see fit. A simple comment in the code giving credit to the FAQ would - be courteous but is not required. - -Files: pod/perlfaq.pod -Copyright: - Tom Christiansen wrote the original version of this document. - brian d foy wrote this version. See the - individual perlfaq documents for additional copyright information. -License: GPL-1+ or Artistic -Comment: - This document is available under the same terms as Perl itself. Code - examples in all the perlfaq documents are in the public domain. Use - them as you see fit (and at your own risk with no warranty from anyone). - -Files: - pod/perlfilter.pod - pod/perlthrtut.pod -Copyright: - copyright 1998 The Perl Journal -License: GPL-1+ or Artistic -Comment: - This document may be distributed under the same terms as Perl itself. - -Files: pod/perlglossary.pod -Copyright: - Based on the Glossary of I, Fourth Edition, - by Tom Christiansen, brian d foy, Larry Wall, & Jon Orwant. - Copyright (c) 2000, 1996, 1991, 2012 O'Reilly Media, Inc. -License: GPL-1+ or Artistic -Comment: - This document may be distributed under the same terms as Perl itself. - -Files: pod/perlmodinstall.pod -Copyright: - Copyright (C) 1998, 2002, 2003 Jon Orwant. All Rights Reserved. -License: GPL-1+ or Artistic -Comment: - This document may be distributed under the same terms as Perl itself. - -Files: - pod/perlopentut.pod - pod/perltooc.pod - pod/perltoot.pod -Copyright: - Copyright 1997-1999 Tom Christiansen. -License: GPL-1+ or Artistic -Comment: - This documentation is free; you can redistribute it and/or modify it - under the same terms as Perl itself. - . - Irrespective of its distribution, all code examples in these files are - hereby placed into the public domain. You are permitted and - encouraged to use this code in your own programs for fun or for profit - as you see fit. A simple comment in the code giving credit would be - courteous but is not required. - -Files: pod/perlpodstyle.pod -Copyright: - Copyright 1999, 2000, 2001, 2004, 2006, 2008, 2010, 2015 Russ Allbery - -License: RRA-KEEP-THIS-NOTICE -Comment: - The license text can be found at the end of this file. - -Files: pod/perlreapi.pod -Copyright: - Copyright 2006 Yves Orton and 2007 Ævar Arnfjörð Bjarmason. -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or modify it under - the same terms as Perl itself. - -Files: pod/perlreftut.pod -Copyright: - Copyright 1998 The Perl Journal. -License: GPL-1+ or Artistic -Comment: - This documentation is free; you can redistribute it and/or modify it - under the same terms as Perl itself. - . - Irrespective of its distribution, all code examples in these files are - hereby placed into the public domain. You are permitted and - encouraged to use this code in your own programs for fun or for profit - as you see fit. A simple comment in the code giving credit would be - courteous but is not required. - -Files: - pod/perlrequick.pod - pod/perlretut.pod -Copyright: - Copyright (c) 2000 Mark Kvale - All rights reserved. -License: GPL-1+ or Artistic -Comment: - This document may be distributed under the same terms as Perl itself. - -Files: pod/perlunicook.pod -Copyright: - Copyright (c) 2012 Tom Christiansen -License: GPL-1+ or Artistic -Comment: - This document may be distributed under the same terms as Perl itself. - -Files: pod/perluniintro.pod -Copyright: - Copyright 2001-2011 Jarkko Hietaniemi -License: GPL-1+ or Artistic -Comment: - This document may be distributed under the same terms as Perl itself. - -Files: - Copying - pod/perlgpl.pod -Copyright: - Copyright (C) 1989 Free Software Foundation, Inc. - 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -License: DONT-CHANGE-THE-GPL - -Files: t/io/shm.t -Copyright: - Copyright (C) 1999, Graham Barr . - Copyright (C) 2007-2010, Marcus Holland-Moritz . -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or - modify it under the same terms as Perl itself. - -Files: regen-configure/* -Copyright: - Copyright (c) 1996-1998, Andy Dougherty - Copyright (c) 1999-2011, H.Merijn Brand -License: GPL-1+ or Artistic or Artistic-dist -Comment: - This directory is a snapshot of the upstream metaconfig repository, - containing code originally forked from 'dist' upstream by Larry - Wall and Raphael Manfredi. The 'dist/' subdirectory is unmodified - upstream code, but the other subdirectories contain mixed code. - Some units are dual licensed and some are specifically Artistic-only. - . - The bin/ subdirectory is being filtered from the upstream snapshot - (with the Files-Excluded mechanism at the top of this copyright file) - because it contains files generated from dist sources. The Debian - package build uses the tools from the separate 'dist' package. - . - From regen-configure/U/README: - . - You may distribute the files contained in this distribution - under the terms of either - . - a) the "Artistic License" which comes with Perl, or - . - b) the "Artistic License" which comes with dist, or - . - c) the GNU General Public License as published by the Free - Software Foundation; either version 1, or (at your option) any - later version (see the file "Copying" that comes with the - Perl distribution). - . - The full text of the "Artistic License" which comes with dist - differs slightly from the one that is in /usr/share/common-licenses - on Debian systems, and can be found later in this file under the - "Artistic-dist" tag. - -Files: regen-configure/dist/* -Copyright: - Copyright (c) 1991-1997, 2004-2006, 2012 Raphael Manfredi - Copyright (c) 1996,1998 Andy Dougherty - Copyright (c) 1996, Cygnus Support - Copyright (c) 1996, Spider Boardman - Copyright (c) 1996, Sven Verdoolaege - Copyright (c) 1997, Chip Salzenberg - Copyright (c) 1998 Andy Dougherty - Copyright (c) 1999-2001 Jarkko Hietaniemi -License: Artistic-dist -Comment: - This subdirectory contains unmodified 'dist' code that is - licensed under the modified Artistic license detailed below - under the "Artistic-dist" tag. The different files have - separate copyright notices, collected above. - -Files: regen-configure/U/* -Copyright: - Copyright (c) 1991-1997, 2004-2006, Raphael Manfredi - Copyright (c) 1996-2010, Andy Dougherty - Copyright (c) 1996, Sven Verdoolaege - Copyright (c) 1998-2016 Jarkko Hietaniemi - Copyright (c) 2004-2018 H.Merijn Brand - Copyright (c) 2006-2006, H.Merijn Brand & Nicholas Clark - Copyright (c) 2011, H.Merijn Brand & Tony Cook - Copyright (c) 2014-2014, Karl Williamson & H.Merijn Brand - Copyright (c) 2016 H.Merijn Brand & Todd Rinaldo - Copyright (c) 2016 Tony Cook - Copyright (c) 2017, Lukas Mai - Copyright (c) 2017 Dagfinn Ilmari Mannsåker - Copyright (c) 2017, Karl Williamson -License: Artistic or GPL-1+ or Artistic-dist -Comment: - From regen-configure/U/README: - . - The units in the "modified" directory have been derived from units - associated with the metaconfig program of Raphael Manfredi's "dist" - distribution. These units list Raphael Manfredi as the Copyright holder. - dist is distributed under a modified version of the Perl Artistic License. - Clause 7 of this modified license as contained in dist-3.0-pl60 provides: - . - 7. You may reuse parts of this Package in your own programs, provided - that you explicitly state where you got them from, in the source code - (and, left to your courtesy, in the documentation), duplicating - all the associated copyright notices and disclaimers. Besides - your changes, if any, must be clearly marked as such. Parts reused - that way will no longer fall under this license if, and only if, - the name of your program(s) have no immediate connection with the - name of the Package itself or its associated programs. You may then - apply whatever restrictions you wish on the reused parts or choose - to place them in the Public Domain--this will apply only within the - context of your package. - . - In accordance with this clause, the versions of these units - contained here are made available under the same terms as the - rest of the units. - . - It is assumed that the above relicensing also applies to all files in - the other subdirectories that are declared to be licensed under the - same modified Artistic license. - . - The modified license can be found later in this file under the - "Artistic-dist" tag. - -Files: utf8.c -Copyright: - Portions Copyright (c) 2008-2009 Bjoern Hoehrmann -License: GPL-1+ or Artistic, and Expat -Comment: - This program is free software; you can redistribute it and/or modify - it under the terms of either: - . - a) the GNU General Public License as published by the Free Software - Foundation; either version 1, or (at your option) any later - version, or - . - b) the "Artistic License" which comes with Perl. - . - Additionally, the tables included this file come from - http://bjoern.hoehrmann.de/utf-8/decoder/dfa/, under the Expat license. - -Files: debian/* -Copyright: - Portions of the Debian packaging are - Copyright 2008-2011 Niko Tyni - Copyright 2011 Dominic Hargreaves - The other people listed in debian/changelog are most probably - copyright holders too, but they have not included explicit copyright - or licensing information. -License: GPL-1+ or Artistic -Comment: - ---------------------------------------- - The portions by Niko Tyni and Dominic Hargreaves may be redistributed - and/or modified under the same terms as Perl itself. It is assumed that - other contributors have placed their contributions under a compatible - license. - -License: LGPL-2.1 - On Debian GNU/Linux systems, the complete text of the LGPL 2.1 - license can be found in `/usr/share/common-licenses/LGPL-2.1'. - -License: GPL-1+ - On Debian GNU/Linux systems, the complete text of the GNU General - Public License can be found in `/usr/share/common-licenses/GPL-1'. - -License: GPL-2+ - On Debian GNU/Linux systems, the complete text of version 2 of - the GNU General Public License can be found in - `/usr/share/common-licenses/GPL-2'. - -License: Artistic - On Debian GNU/Linux systems, the complete text of the - Artistic Licence can be found in `/usr/share/common-licenses/Artistic'. - -License: Artistic-2 - Copyright (c) 2000-2006, The Perl Foundation. - . - Everyone is permitted to copy and distribute verbatim copies of this - license document, but changing it is not allowed. - . - Preamble - . - This license establishes the terms under which a given free software - Package may be copied, modified, distributed, and/or redistributed. - The intent is that the Copyright Holder maintains some artistic - control over the development of that Package while still keeping the - Package available as open source and free software. - . - You are always permitted to make arrangements wholly outside of this - license directly with the Copyright Holder of a given Package. If the - terms of this license do not permit the full use that you propose to - make of the Package, you should contact the Copyright Holder and seek - a different licensing arrangement. - . - Definitions - . - "Copyright Holder" means the individual(s) or organization(s) named in - the copyright notice for the entire Package. - . - "Contributor" means any party that has contributed code or other - material to the Package, in accordance with the Copyright Holder's - procedures. - . - "You" and "your" means any person who would like to copy, distribute, - or modify the Package. - . - "Package" means the collection of files distributed by the Copyright - Holder, and derivatives of that collection and/or of those files. A - given Package may consist of either the Standard Version, or a - Modified Version. - . - "Distribute" means providing a copy of the Package or making it - accessible to anyone else, or in the case of a company or - organization, to others outside of your company or organization. - . - "Distributor Fee" means any fee that you charge for Distributing this - Package or providing support for this Package to another party. It - does not mean licensing fees. - . - "Standard Version" refers to the Package if it has not been modified, - or has been modified only in ways explicitly requested by the - Copyright Holder. - . - "Modified Version" means the Package, if it has been changed, and such - changes were not explicitly requested by the Copyright Holder. - . - "Original License" means this Artistic License as Distributed with the - Standard Version of the Package, in its current version or as it may - be modified by The Perl Foundation in the future. - . - "Source" form means the source code, documentation source, and - configuration files for the Package. - . - "Compiled" form means the compiled bytecode, object code, binary, or - any other form resulting from mechanical transformation or translation - of the Source form. - . - Permission for Use and Modification Without Distribution - . - (1) You are permitted to use the Standard Version and create and use - Modified Versions for any purpose without restriction, provided that - you do not Distribute the Modified Version. - . - Permissions for Redistribution of the Standard Version - . - (2) You may Distribute verbatim copies of the Source form of the - Standard Version of this Package in any medium without restriction, - either gratis or for a Distributor Fee, provided that you duplicate - all of the original copyright notices and associated disclaimers. At - your discretion, such verbatim copies may or may not include a - Compiled form of the Package. - . - (3) You may apply any bug fixes, portability changes, and other - modifications made available from the Copyright Holder. The resulting - Package will still be considered the Standard Version, and as such - will be subject to the Original License. - . - Distribution of Modified Versions of the Package as Source - . - (4) You may Distribute your Modified Version as Source (either gratis - or for a Distributor Fee, and with or without a Compiled form of the - Modified Version) provided that you clearly document how it differs - from the Standard Version, including, but not limited to, documenting - any non-standard features, executables, or modules, and provided that - you do at least ONE of the following: - . - (a) make the Modified Version available to the Copyright Holder of the - Standard Version, under the Original License, so that the Copyright - Holder may include your modifications in the Standard Version. (b) - ensure that installation of your Modified Version does not prevent the - user installing or running the Standard Version. In addition, the - Modified Version must bear a name that is different from the name of - the Standard Version. (c) allow anyone who receives a copy of the - Modified Version to make the Source form of the Modified Version - available to others under (i) the Original License or (ii) a license - that permits the licensee to freely copy, modify and redistribute the - Modified Version using the same licensing terms that apply to the copy - that the licensee received, and requires that the Source form of the - Modified Version, and of any works derived from it, be made freely - available in that license fees are prohibited but Distributor Fees are - allowed. - . - Distribution of Compiled Forms of the Standard Version or Modified - Versions without the Source - . - (5) You may Distribute Compiled forms of the Standard Version without - the Source, provided that you include complete instructions on how to - get the Source of the Standard Version. Such instructions must be - valid at the time of your distribution. If these instructions, at any - time while you are carrying out such distribution, become invalid, you - must provide new instructions on demand or cease further distribution. - If you provide valid instructions or cease distribution within thirty - days after you become aware that the instructions are invalid, then - you do not forfeit any of your rights under this license. - . - (6) You may Distribute a Modified Version in Compiled form without the - Source, provided that you comply with Section 4 with respect to the - Source of the Modified Version. - . - Aggregating or Linking the Package - . - (7) You may aggregate the Package (either the Standard Version or - Modified Version) with other packages and Distribute the resulting - aggregation provided that you do not charge a licensing fee for the - Package. Distributor Fees are permitted, and licensing fees for other - components in the aggregation are permitted. The terms of this license - apply to the use and Distribution of the Standard or Modified Versions - as included in the aggregation. - . - (8) You are permitted to link Modified and Standard Versions with - other works, to embed the Package in a larger work of your own, or to - build stand-alone binary or bytecode versions of applications that - include the Package, and Distribute the result without restriction, - provided the result does not expose a direct interface to the Package. - . - Items That are Not Considered Part of a Modified Version - . - (9) Works (including, but not limited to, modules and scripts) that - merely extend or make use of the Package, do not, by themselves, cause - the Package to be a Modified Version. In addition, such works are not - considered parts of the Package itself, and are not subject to the - terms of this license. - . - General Provisions - . - (10) Any use, modification, and distribution of the Standard or - Modified Versions is governed by this Artistic License. By using, - modifying or distributing the Package, you accept this license. Do not - use, modify, or distribute the Package, if you do not accept this - license. - . - (11) If your Modified Version has been derived from a Modified Version - made by someone other than you, you are nevertheless required to - ensure that your Modified Version complies with the requirements of - this license. - . - (12) This license does not grant you the right to use any trademark, - service mark, tradename, or logo of the Copyright Holder. - . - (13) This license includes the non-exclusive, worldwide, - free-of-charge patent license to make, have made, use, offer to sell, - sell, import and otherwise transfer the Package with respect to any - patent claims licensable by the Copyright Holder that are necessarily - infringed by the Package. If you institute patent litigation - (including a cross-claim or counterclaim) against any party alleging - that the Package constitutes direct or contributory patent - infringement, then this Artistic License to you shall terminate on the - date that such litigation is filed. - . - (14) Disclaimer of Warranty: THE PACKAGE IS PROVIDED BY THE COPYRIGHT - HOLDER AND CONTRIBUTORS "AS IS' AND WITHOUT ANY EXPRESS OR IMPLIED - WARRANTIES. THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A - PARTICULAR PURPOSE, OR NON-INFRINGEMENT ARE DISCLAIMED TO THE EXTENT - PERMITTED BY YOUR LOCAL LAW. UNLESS REQUIRED BY LAW, NO COPYRIGHT - HOLDER OR CONTRIBUTOR WILL BE LIABLE FOR ANY DIRECT, INDIRECT, - INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING IN ANY WAY OUT OF THE USE - OF THE PACKAGE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -License: BZIP - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - . - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - . - 2. The origin of this software must not be misrepresented; you must - not claim that you wrote the original software. If you use this - software in a product, an acknowledgment in the product - documentation would be appreciated but is not required. - . - 3. Altered source versions must be plainly marked as such, and must - not be misrepresented as being the original software. - . - 4. The name of the author may not be used to endorse or promote - products derived from this software without specific prior written - permission. - . - THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS - OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY - DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, - WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING - NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS - SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - . - Julian Seward, jseward@bzip.org - bzip2/libbzip2 version 1.0.5 of 10 December 2007 - -License: ZLIB - This software is provided 'as-is', without any express or implied - warranty. In no event will the authors be held liable for any damages - arising from the use of this software. - . - Permission is granted to anyone to use this software for any purpose, - including commercial applications, and to alter it and redistribute it - freely, subject to the following restrictions: - . - 1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. - 2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. - 3. This notice may not be removed or altered from any source distribution. - -License: Expat - Permission is hereby granted, free of charge, to any person obtaining a copy - of this software and associated documentation files (the "Software"), to deal - in the Software without restriction, including without limitation the rights - to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - copies of the Software, and to permit persons to whom the Software is - furnished to do so, subject to the following conditions: - . - The above copyright notice and this permission notice shall be included in - all copies or substantial portions of the Software. - . - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS - OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL - THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING - FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER - DEALINGS IN THE SOFTWARE. - -License: BSD-3-clause-with-weird-numbering - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - 4. Neither the name of the University nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - . - THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND - ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -License: BSD-4-clause-POWERDOG - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer - in the documentation and/or other materials provided with the - distribution. - 3. All advertising materials mentioning features or use of this - software must display the following acknowledgement: - This product includes software developed by Powerdog Industries. - 4. The name of Powerdog Industries may not be used to endorse or - promote products derived from this software without specific prior - written permission. - . - THIS SOFTWARE IS PROVIDED BY POWERDOG INDUSTRIES ``AS IS'' AND ANY - EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE POWERDOG INDUSTRIES BE - LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR - BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, - WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE - OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, - EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -License: Unicode - EXHIBIT 1 - UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE - . - Unicode Data Files include all data files under the directories - http://www.unicode.org/Public/, http://www.unicode.org/reports/, - and http://www.unicode.org/cldr/data/ . Unicode Data Files - do not include PDF online code charts under the directory - http://www.unicode.org/Public/. Software includes any - source code published in the Unicode Standard or under the directories - http://www.unicode.org/Public/, http://www.unicode.org/reports/, - and http://www.unicode.org/cldr/data/. - . - NOTICE TO USER: Carefully read the following legal agreement. BY - DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING UNICODE - INC.'S DATA FILES ("DATA FILES"), AND/OR SOFTWARE ("SOFTWARE"), YOU - UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE TERMS AND - CONDITIONS OF THIS AGREEMENT. IF YOU DO NOT AGREE, DO NOT DOWNLOAD, - INSTALL, COPY, DISTRIBUTE OR USE THE DATA FILES OR SOFTWARE. - . - COPYRIGHT AND PERMISSION NOTICE - . - Copyright © 1991-2011 Unicode, Inc. All rights - reserved. Distributed under the Terms of Use in - http://www.unicode.org/copyright.html. - . - Permission is hereby granted, free of charge, to any person - obtaining a copy of the Unicode data files and any associated - documentation (the "Data Files") or Unicode software and any - associated documentation (the "Software") to deal in the Data Files - or Software without restriction, including without limitation - the rights to use, copy, modify, merge, publish, distribute, - and/or sell copies of the Data Files or Software, and to permit - persons to whom the Data Files or Software are furnished to do so, - provided that (a) the above copyright notice(s) and this permission - notice appear with all copies of the Data Files or Software, - (b) both the above copyright notice(s) and this permission notice - appear in associated documentation, and (c) there is clear notice - in each modified Data File or in the Software as well as in the - documentation associated with the Data File(s) or Software that - the data or software has been modified. - . - THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY - OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE - WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE - AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE - COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE LIABLE - FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, - OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR - PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER - TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR - PERFORMANCE OF THE DATA FILES OR SOFTWARE. - . - Except as contained in this notice, the name of a copyright holder - shall not be used in advertising or otherwise to promote the sale, - use or other dealings in these Data Files or Software without - prior written authorization of the copyright holder. - -License: BSD-3-clause-GENERIC - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - 3. The names of the authors may not be used to endorse or promote - products derived from this software without specific prior written - permission. - . - THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND - ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -License: BSD-3-clause - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - 3. Neither the name of the University nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - . - THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND - ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -License: REGCOMP - Permission is granted to anyone to use this software for any - purpose on any computer system, and to redistribute it freely, - subject to the following restrictions: - . - 1. The author is not responsible for the consequences of use of - this software, no matter how awful, even if they arise - from defects in it. - . - 2. The origin of this software must not be misrepresented, either - by explicit claim or by omission. - . - 3. Altered versions must be plainly marked as such, and must not - be misrepresented as being the original software. - -License: TEXT-TABS - This module may be modified, used, copied, and redistributed at your own risk. - . - Although allowed by the preceding license, please do not publicly - redistribute modified versions of this code with the name "Text::Tabs" - unless it passes the unmodified Text::Tabs test suite. - -License: S2P - This program is free and open software. You may use, modify, - distribute, and sell this program (and any modified variants) in any - way you wish, provided you do not restrict others from doing the same. - -License: DONT-CHANGE-THE-GPL - Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed. - -License: SDBM-PUBLIC-DOMAIN - From ext/SDBM_File/sdbm/README: - . - The entire sdbm library package, as authored by me, Ozan S. Yigit, - is hereby placed in the public domain. As such, the author is not - responsible for the consequences of use of this software, no - matter how awful, even if they arise from defects in it. There is no - expressed or implied warranty for the sdbm library. - . - Since the sdbm library package is in the public domain, this original - release or any additional public-domain releases of the modified - original cannot possibly (by definition) be withheld from you. Also - by definition, You (singular) have all the rights to this code - (including the right to sell without permission, the right to - hoard[3] and the right to do other icky things as you see fit) - but those rights are also granted to everyone else. - . - Please note that all previous distributions of this software - contained a copyright (which is now dropped) to protect its origins - and its current public domain status against any possible claims - and/or challenges. - -License: GPL-3+-WITH-BISON-EXCEPTION - 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 3 of the License, or - (at your option) any later version. - . - 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. - . - You should have received a copy of the GNU General Public License - along with this program. If not, see . - . - As a special exception, you may create a larger work that contains - part or all of the Bison parser skeleton and distribute that work - under terms of your choice, so long as that work isn't itself a - parser generator using the skeleton or a modified version thereof - as a parser skeleton. Alternatively, if you modify or redistribute - the parser skeleton itself, you may (at your option) remove this - special exception, which will cause the skeleton and the resulting - Bison output files to be licensed under the GNU General Public - License without this special exception. - . - This special exception was added by the Free Software Foundation in - version 2.2 of Bison. - -License: HSIEH-DERIVATIVE - The derivative content includes raw computer source code, ideas, - opinions, and excerpts whose original source is covered under another - license and transformations of such derivatives. Note that mere excerpts - by themselves (with the exception of raw source code) are not considered - derivative works under this license. Use and redistribution is limited - to the following conditions: - . - One may not create a derivative work which, in any way, violates the - Paul Hsieh exposition license described above on the original content. - . - One may not apply a license to a derivative work that precludes - anyone else from using and redistributing derivative content. - . - One may not attribute any derivative content to authors not involved - in the creation of the content, though an attribution to the author - is not necessary. - -License: HSIEH-BSD - Copyright (c) 2010, Paul Hsieh - All rights reserved. - . - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - . - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - . - Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - . - Neither my name, Paul Hsieh, nor the names of any other contributors - to the code use may not be used to endorse or promote products - derived from this software without specific prior written permission. - . - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT - OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -License: CC0-1.0 - Statatement of Purpose - . - 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"). - . - 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. - . - 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. - . - 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: - . - the right to reproduce, adapt, distribute, perform, display, - communicate, and translate a Work; - . - moral rights retained by the original author(s) and/or performer(s); - . - publicity and privacy rights pertaining to a person's image or - likeness depicted in a Work; - . - rights protecting against unfair competition in regards to a Work, - subject to the limitations in paragraph 4(a), below; - . - rights protecting the extraction, dissemination, use and reuse of data in a Work; - . - 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 - . - other similar, equivalent or corresponding rights throughout the world - based on applicable law or treaty, and any national implementations - thereof. - . - 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. - . - 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. - . - 4. Limitations and Disclaimers. - . - No trademark or patent rights held by Affirmer are waived, - abandoned, surrendered, licensed or otherwise affected by this - document. - . - 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. - . - 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. - . - 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. -Comment: - This license text was retrieved from - - on Fri, 05 Feb 2016 20:30:28 +0200 - -License: RRA-KEEP-THIS-NOTICE - Copying and distribution of this file, with or without modification, are - permitted in any medium without royalty provided the copyright notice and - this notice are preserved. This file is offered as-is, without any - warranty. - -License: Artistic-dist - The "Artistic License" - . - Preamble - . - The intent of this document is to state the conditions under which a - Package may be copied, such that the Copyright Holder maintains some - semblance of artistic control over the development of the Package, - while giving the users of the package the right to use and distribute - the Package in a more-or-less customary fashion, plus the right to make - reasonable modifications. - . - It also grants you the rights to reuse parts of a Package in your own - programs without transferring this License to those programs, provided - that you meet some reasonable requirements. - . - Definitions: - . - "Package" refers to the collection of files distributed by the - Copyright Holder, and derivatives of that collection of files - created through textual modification. - . - "Standard Version" refers to such a Package if it has not been - modified, or has been modified in accordance with the wishes - of the Copyright Holder as specified below. - . - "Copyright Holder" is whoever is named in the copyright or - copyrights for the package. - . - "You" is you, if you're thinking about copying or distributing - this Package. - . - "Reasonable copying fee" is whatever you can justify on the - basis of media cost, duplication charges, time of people involved, - and so on. (You will not be required to justify it to the - Copyright Holder, but only to the computing community at large - as a market that must bear the fee.) - . - "Freely Available" means that no fee is charged for the item - itself, though there may be fees involved in handling the item. - It also means that recipients of the item may redistribute it - under the same conditions they received it. - . - 1. You may make and give away verbatim copies of the source form of the - Standard Version of this Package without restriction, provided that you - duplicate all of the original copyright notices and associated disclaimers. - . - 2. You may apply bug fixes, portability fixes and other modifications - derived from the Public Domain or from the Copyright Holder. A Package - modified in such a way shall still be considered the Standard Version. - . - 3. You may otherwise modify your copy of this Package in any way, provided - that you insert a prominent notice in each changed file stating how and - when you changed that file, and provided that you do at least ONE of the - following: - . - a) place your modifications in the Public Domain or otherwise make them - Freely Available, such as by posting said modifications to Usenet or - an equivalent medium, or placing the modifications on a major archive - site such as uunet.uu.net, or by allowing the Copyright Holder to include - your modifications in the Standard Version of the Package. - . - b) use the modified Package only within your corporation or organization. - . - c) rename any non-standard executables so the names do not conflict - with standard executables, which must also be provided, and provide - a separate manual page for each non-standard executable that clearly - documents how it differs from the Standard Version. - . - d) make other distribution arrangements with the Copyright Holder. - . - 4. You may distribute the programs of this Package in object code or - executable form, provided that you do at least ONE of the following: - . - a) distribute a Standard Version of the executables and library files, - together with instructions (in the manual page or equivalent) on where - to get the Standard Version. - . - b) accompany the distribution with the machine-readable source of - the Package with your modifications. - . - c) give non-standard executables non-standard names, and clearly - document the differences in manual pages (or equivalent), together - with instructions on where to get the Standard Version. - . - d) make other distribution arrangements with the Copyright Holder. - . - 5. You may charge a reasonable copying fee for any distribution of this - Package. You may charge any fee you choose for support of this - Package. You may not charge a fee for this Package itself. However, - you may distribute this Package in aggregate with other (possibly - commercial) programs as part of a larger (possibly commercial) software - distribution provided that you do not advertise this Package as a - product of your own. - . - 6. The scripts and library files supplied as input to or produced as - output from the programs of this Package do not automatically fall - under the copyright of this Package, but belong to whoever generated - them, and may be sold commercially, and may be aggregated with this - Package. If such scripts or library files are aggregated with this - Package via the so-called "undump" or "unexec" methods of producing a - binary executable image, then distribution of such an image shall - neither be construed as a distribution of this Package nor shall it - fall under the restrictions of Paragraphs 3 and 4, provided that you do - not represent such an executable image as a Standard Version of this - Package. - . - 7. You may reuse parts of this Package in your own programs, provided that - you explicitly state where you got them from, in the source code (and, left - to your courtesy, in the documentation), duplicating all the associated - copyright notices and disclaimers. Besides your changes, if any, must be - clearly marked as such. Parts reused that way will no longer fall under this - license if, and only if, the name of your program(s) have no immediate - connection with the name of the Package itself or its associated programs. - You may then apply whatever restrictions you wish on the reused parts or - choose to place them in the Public Domain--this will apply only within the - context of your package. - . - 8. The name of the Copyright Holder may not be used to endorse or promote - products derived from this software without specific prior written permission. - . - 9. THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR - IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED - WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. - . - The End -Comment: - This license was copied from the upstream 'dist' repository, - https://github.com/rmanfredi/dist.git - at Sun, 15 Oct 2017 13:07:36 +0300. - - ----------------------------------------- -libpsl5 version 0.20.2-2 - - -Copyright: - -Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ -Upstream-Name: libpsl -Source: https://github.com/rockdaboot/libpsl - -Files: * -Copyright: 2014-2016 Tim Ruehsen -License: MIT - -Files: debian/* -Copyright: 2014-2016 Daniel Kahn Gillmor -License: MIT - -Files: src/psl-make-dafsa src/lookup_string_in_fixed_set.c -Copyright: 2014-2015 The Chromium Authors -License: Chromium - -License: MIT - * Permission is hereby granted, free of charge, to any person obtaining a - * copy of this software and associated documentation files (the "Software"), - * to deal in the Software without restriction, including without limitation - * the rights to use, copy, modify, merge, publish, distribute, sublicense, - * and/or sell copies of the Software, and to permit persons to whom the - * Software is furnished to do so, subject to the following conditions: - * - * The above copyright notice and this permission notice shall be included in - * all copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING - * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER - * DEALINGS IN THE SOFTWARE. - -License: Chromium - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are - met: - . - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following disclaimer - in the documentation and/or other materials provided with the - distribution. - * Neither the name of Google Inc. nor the names of its - contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - . - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT - OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - ----------------------------------------- -librtmp1 version 2.4+20151223.gitfa8646d.1-2 - - -Copyright: - -This work was packaged for Debian by: - - Reinhard Tartler on Sun, 30 May 2010 17:07:16 +0200 - -It was downloaded from http://rtmpdump.mplayerhq.hu/ - -Upstream Authors and Copyright: - -RTMP Dump -(C) 2009 Andrej Stepanchuk -(C) 2009-2011 Howard Chu -(C) 2010 2a665470ced7adb7156fcef47f8199a6371c117b8a79e399a2771e0b36384090 - - -License of the programs in the rtmpdump package: - - rtmpdump - small dumper for media content streamed over the RTMP protocol - Copyright (C) 2009 Andrej Stepanchuk - Copyright (C) 2009-2010 Howard Chu - - 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. - - 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. - - 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. - - -License of the librtmp library (included in the librtmp-dev package and in the -librmtp/ subdirectory in the source tree): - - Copyright (C) 2005-2008 Team XBMC - http://www.xbmc.org - Copyright (C) 2008-2009 Andrej Stepanchuk - Copyright (C) 2009-2010 Howard Chu - - - librtmp is free software; you can redistribute it and/or modify - it under the terms of the GNU Lesser General Public License as - published by the Free Software Foundation; either version 2.1, - or (at your option) any later version. - - librtmp 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. - - You should have received a copy of the GNU Lesser General Public License - along with librtmp see the file COPYING. If not, write to - the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, - MA 02110-1301, USA. - http://www.gnu.org/copyleft/lgpl.html - - -The Debian packaging is: - - Copyright (C) 2010 Reinhard Tartler - -and is licensed under the GNU Lesser General Public License. - - -On Debian GNU/Linux systems, the complete text of the GNU General Public -License can be found in `/usr/share/common-licenses/GPL-2' and the text of the -GNU Lesser General Public License is in `/usr/share/common-licenses/LGPL-2.1'. - - ----------------------------------------- -libsasl2-2 version 2.1.27+dfsg-1+deb10u1 - - -Copyright: - -Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ -Upstream-Name: Cyrus SASL -Source: ftp://ftp.cyrusimap.org/cyrus-sasl/ -Files-Excluded: dlcompat-20010505 - doc/rfc* - doc/draft* - -Files: * -Copyright: 1998-2003, Carnegie Mellon University -License: BSD-4-clause - -Files: debian/* -Copyright: 2002-2004, Dima Barsky - 2006-2009, Fabian Fagerholm - 2006-2011, 2014, Roberto C. Sanchez - 2015-2016 Ondřej Surý -License: GPL-3+ - -Files: debian/saslfinger/* -Copyright: 2004, Patrick Koetter -License: GPL-3+ -Comment: The saslfinger utility was downloaded from - http://postfix.state-of-mind.de/patrick.koetter/saslfinger/ - -Files: debian/gen-auth/* -Copyright: 2002-2006, John Jetmore -License: GPL-3+ -Comment: The gen-auth utility was downloaded from - http://jetmore.org/john/code/gen-auth - -License: GPL-3+ - 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 3 of the License, or - (at your option) any later version. - . - 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. - . - You should have received a copy of the GNU General Public License - along with this program. If not, see . - . - On Debian systems, the full text of the GNU General Public License - version 3 can be found in the file `/usr/share/common-licenses/GPL-3'. - -License: BSD-4-clause - /* - * Copyright (c) 1998-2003 Carnegie Mellon University. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in - * the documentation and/or other materials provided with the - * distribution. - * - * 3. The name "Carnegie Mellon University" must not be used to - * endorse or promote products derived from this software without - * prior written permission. For permission or any other legal - * details, please contact - * Office of Technology Transfer - * Carnegie Mellon University - * 5000 Forbes Avenue - * Pittsburgh, PA 15213-3890 - * (412) 268-4387, fax: (412) 268-7395 - * tech-transfer@andrew.cmu.edu - * - * 4. Redistributions of any form whatsoever must retain the following - * acknowledgment: - * "This product includes software developed by Computing Services - * at Carnegie Mellon University (http://www.cmu.edu/computing/)." - * - * CARNEGIE MELLON UNIVERSITY DISCLAIMS ALL WARRANTIES WITH REGARD TO - * THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY - * AND FITNESS, IN NO EVENT SHALL CARNEGIE MELLON UNIVERSITY BE LIABLE - * FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES - * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN - * AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING - * OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - */ - - ----------------------------------------- -libsasl2-modules-db version 2.1.27+dfsg-1+deb10u1 - - -Copyright: - -Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ -Upstream-Name: Cyrus SASL -Source: ftp://ftp.cyrusimap.org/cyrus-sasl/ -Files-Excluded: dlcompat-20010505 - doc/rfc* - doc/draft* - -Files: * -Copyright: 1998-2003, Carnegie Mellon University -License: BSD-4-clause - -Files: debian/* -Copyright: 2002-2004, Dima Barsky - 2006-2009, Fabian Fagerholm - 2006-2011, 2014, Roberto C. Sanchez - 2015-2016 Ondřej Surý -License: GPL-3+ - -Files: debian/saslfinger/* -Copyright: 2004, Patrick Koetter -License: GPL-3+ -Comment: The saslfinger utility was downloaded from - http://postfix.state-of-mind.de/patrick.koetter/saslfinger/ - -Files: debian/gen-auth/* -Copyright: 2002-2006, John Jetmore -License: GPL-3+ -Comment: The gen-auth utility was downloaded from - http://jetmore.org/john/code/gen-auth - -License: GPL-3+ - 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 3 of the License, or - (at your option) any later version. - . - 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. - . - You should have received a copy of the GNU General Public License - along with this program. If not, see . - . - On Debian systems, the full text of the GNU General Public License - version 3 can be found in the file `/usr/share/common-licenses/GPL-3'. - -License: BSD-4-clause - /* - * Copyright (c) 1998-2003 Carnegie Mellon University. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in - * the documentation and/or other materials provided with the - * distribution. - * - * 3. The name "Carnegie Mellon University" must not be used to - * endorse or promote products derived from this software without - * prior written permission. For permission or any other legal - * details, please contact - * Office of Technology Transfer - * Carnegie Mellon University - * 5000 Forbes Avenue - * Pittsburgh, PA 15213-3890 - * (412) 268-4387, fax: (412) 268-7395 - * tech-transfer@andrew.cmu.edu - * - * 4. Redistributions of any form whatsoever must retain the following - * acknowledgment: - * "This product includes software developed by Computing Services - * at Carnegie Mellon University (http://www.cmu.edu/computing/)." - * - * CARNEGIE MELLON UNIVERSITY DISCLAIMS ALL WARRANTIES WITH REGARD TO - * THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY - * AND FITNESS, IN NO EVENT SHALL CARNEGIE MELLON UNIVERSITY BE LIABLE - * FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES - * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN - * AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING - * OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - */ - - ----------------------------------------- -libsm6 version 2:1.2.3-1 - - -Copyright: - -This package was downloaded from -https://xorg.freedesktop.org/releases/individual/lib/ - -Copyright 1993, 1998 The Open Group - -Permission to use, copy, modify, distribute, and sell this software and its -documentation for any purpose is hereby granted without fee, provided that -the above copyright notice appear in all copies and that both that -copyright notice and this permission notice appear in supporting -documentation. - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN -AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN -CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -Except as contained in this notice, the name of The Open Group shall not be -used in advertising or otherwise to promote the sale, use or other dealings -in this Software without prior written authorization from The Open Group. - - ----------------------------------------- -libssh2-1 version 1.8.0-2.1 - - -Copyright: - -Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ -Upstream-Name: libssh2 -Upstream-Contact: Daniel Stenberg -Source: http://libssh2.org/ - -Files: * -Copyright: (c) 2004-2007 Sara Golemon - (c) 2005,2006 Mikhail Gusarov - (c) 2006-2007 The Written Word, Inc. - (c) 2007 Eli Fant - (c) 2009 Daniel Stenberg - (C) 2008, 2009 Simon Josefsson -License: BSD3 - -Files: debian/* -Copyright: 2007-2018 Mikhail Gusarov -License: BSD3 - -License: BSD3 - * Redistribution and use in source and binary forms, - * with or without modification, are permitted provided - * that the following conditions are met: - * - * Redistributions of source code must retain the above - * copyright notice, this list of conditions and the - * following disclaimer. - * - * Redistributions in binary form must reproduce the above - * copyright notice, this list of conditions and the following - * disclaimer in the documentation and/or other materials - * provided with the distribution. - * - * Neither the name of the copyright holder nor the names - * of any other contributors may be used to endorse or - * promote products derived from this software without - * specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND - * CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, - * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR - * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, - * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR - * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, - * OF SUCH DAMAGE. - - ----------------------------------------- -libuchardet0 version 0.0.6-3 - - -Copyright: - -Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ -Upstream-Name: uchardet -Source: https://www.freedesktop.org/wiki/Software/uchardet/ - -Files: * -Copyright: - 1998, 2001, 2005 Netscape Communications Corporation - 2011 BYVoid -License: MPL-1.1 or GPL-2+ or LGPL-2.1+ - -Files: debian/* -Copyright: - 2011 Asias He - 2017 James Cowgill -License: GPL-2+ - -License: GPL-2+ - This package 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. - . - This package 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. - . - You should have received a copy of the GNU General Public License - along with this program. If not, see - . - On Debian systems, the complete text of the GNU General - Public License version 2 can be found in "/usr/share/common-licenses/GPL-2". - -License: LGPL-2.1+ - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU Lesser General Public License as published by - the Free Software Foundation; either version 2.1, or (at your option) - any later version. - . - 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 Lesser General Public License for more details. - . - You should have received a copy of the GNU Lesser 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. - . - On Debian systems, the complete text of the GNU Lesser General Public - License version 2.1 can be found in ‘/usr/share/common-licenses/LGPL-2.1’. - -License: MPL-1.1 - MOZILLA PUBLIC LICENSE - Version 1.1 - . - --------------- - . - 1. Definitions. - . - 1.0.1. "Commercial Use" means distribution or otherwise making the - Covered Code available to a third party. - . - 1.1. "Contributor" means each entity that creates or contributes to - the creation of Modifications. - . - 1.2. "Contributor Version" means the combination of the Original - Code, prior Modifications used by a Contributor, and the Modifications - made by that particular Contributor. - . - 1.3. "Covered Code" means the Original Code or Modifications or the - combination of the Original Code and Modifications, in each case - including portions thereof. - . - 1.4. "Electronic Distribution Mechanism" means a mechanism generally - accepted in the software development community for the electronic - transfer of data. - . - 1.5. "Executable" means Covered Code in any form other than Source - Code. - . - 1.6. "Initial Developer" means the individual or entity identified - as the Initial Developer in the Source Code notice required by Exhibit - A. - . - 1.7. "Larger Work" means a work which combines Covered Code or - portions thereof with code not governed by the terms of this License. - . - 1.8. "License" means this document. - . - 1.8.1. "Licensable" means having the right to grant, to the maximum - extent possible, whether at the time of the initial grant or - subsequently acquired, any and all of the rights conveyed herein. - . - 1.9. "Modifications" means any addition to or deletion from the - substance or structure of either the Original Code or any previous - Modifications. When Covered Code is released as a series of files, a - Modification is: - A. Any addition to or deletion from the contents of a file - containing Original Code or previous Modifications. - . - B. Any new file that contains any part of the Original Code or - previous Modifications. - . - 1.10. "Original Code" means Source Code of computer software code - which is described in the Source Code notice required by Exhibit A as - Original Code, and which, at the time of its release under this - License is not already Covered Code governed by this License. - . - 1.10.1. "Patent Claims" means any patent claim(s), now owned or - hereafter acquired, including without limitation, method, process, - and apparatus claims, in any patent Licensable by grantor. - . - 1.11. "Source Code" means the preferred form of the Covered Code for - making modifications to it, including all modules it contains, plus - any associated interface definition files, scripts used to control - compilation and installation of an Executable, or source code - differential comparisons against either the Original Code or another - well known, available Covered Code of the Contributor's choice. The - Source Code can be in a compressed or archival form, provided the - appropriate decompression or de-archiving software is widely available - for no charge. - . - 1.12. "You" (or "Your") means an individual or a legal entity - exercising rights under, and complying with all of the terms of, this - License or a future version of this License issued under Section 6.1. - For legal entities, "You" includes any entity which controls, is - controlled by, or is under common control with You. For purposes of - this definition, "control" means (a) the power, direct or indirect, - to cause the direction or management of such entity, whether by - contract or otherwise, or (b) ownership of more than fifty percent - (50%) of the outstanding shares or beneficial ownership of such - entity. - . - 2. Source Code License. - . - 2.1. The Initial Developer Grant. - The Initial Developer hereby grants You a world-wide, royalty-free, - non-exclusive license, subject to third party intellectual property - claims: - (a) under intellectual property rights (other than patent or - trademark) Licensable by Initial Developer to use, reproduce, - modify, display, perform, sublicense and distribute the Original - Code (or portions thereof) with or without Modifications, and/or - as part of a Larger Work; and - . - (b) under Patents Claims infringed by the making, using or - selling of Original Code, to make, have made, use, practice, - sell, and offer for sale, and/or otherwise dispose of the - Original Code (or portions thereof). - . - (c) the licenses granted in this Section 2.1(a) and (b) are - effective on the date Initial Developer first distributes - Original Code under the terms of this License. - . - (d) Notwithstanding Section 2.1(b) above, no patent license is - granted: 1) for code that You delete from the Original Code; 2) - separate from the Original Code; or 3) for infringements caused - by: i) the modification of the Original Code or ii) the - combination of the Original Code with other software or devices. - . - 2.2. Contributor Grant. - Subject to third party intellectual property claims, each Contributor - hereby grants You a world-wide, royalty-free, non-exclusive license - . - (a) under intellectual property rights (other than patent or - trademark) Licensable by Contributor, to use, reproduce, modify, - display, perform, sublicense and distribute the Modifications - created by such Contributor (or portions thereof) either on an - unmodified basis, with other Modifications, as Covered Code - and/or as part of a Larger Work; and - . - (b) under Patent Claims infringed by the making, using, or - selling of Modifications made by that Contributor either alone - and/or in combination with its Contributor Version (or portions - of such combination), to make, use, sell, offer for sale, have - made, and/or otherwise dispose of: 1) Modifications made by that - Contributor (or portions thereof); and 2) the combination of - Modifications made by that Contributor with its Contributor - Version (or portions of such combination). - . - (c) the licenses granted in Sections 2.2(a) and 2.2(b) are - effective on the date Contributor first makes Commercial Use of - the Covered Code. - . - (d) Notwithstanding Section 2.2(b) above, no patent license is - granted: 1) for any code that Contributor has deleted from the - Contributor Version; 2) separate from the Contributor Version; - 3) for infringements caused by: i) third party modifications of - Contributor Version or ii) the combination of Modifications made - by that Contributor with other software (except as part of the - Contributor Version) or other devices; or 4) under Patent Claims - infringed by Covered Code in the absence of Modifications made by - that Contributor. - . - 3. Distribution Obligations. - . - 3.1. Application of License. - The Modifications which You create or to which You contribute are - governed by the terms of this License, including without limitation - Section 2.2. The Source Code version of Covered Code may be - distributed only under the terms of this License or a future version - of this License released under Section 6.1, and You must include a - copy of this License with every copy of the Source Code You - distribute. You may not offer or impose any terms on any Source Code - version that alters or restricts the applicable version of this - License or the recipients' rights hereunder. However, You may include - an additional document offering the additional rights described in - Section 3.5. - . - 3.2. Availability of Source Code. - Any Modification which You create or to which You contribute must be - made available in Source Code form under the terms of this License - either on the same media as an Executable version or via an accepted - Electronic Distribution Mechanism to anyone to whom you made an - Executable version available; and if made available via Electronic - Distribution Mechanism, must remain available for at least twelve (12) - months after the date it initially became available, or at least six - (6) months after a subsequent version of that particular Modification - has been made available to such recipients. You are responsible for - ensuring that the Source Code version remains available even if the - Electronic Distribution Mechanism is maintained by a third party. - . - 3.3. Description of Modifications. - You must cause all Covered Code to which You contribute to contain a - file documenting the changes You made to create that Covered Code and - the date of any change. You must include a prominent statement that - the Modification is derived, directly or indirectly, from Original - Code provided by the Initial Developer and including the name of the - Initial Developer in (a) the Source Code, and (b) in any notice in an - Executable version or related documentation in which You describe the - origin or ownership of the Covered Code. - . - 3.4. Intellectual Property Matters - (a) Third Party Claims. - If Contributor has knowledge that a license under a third party's - intellectual property rights is required to exercise the rights - granted by such Contributor under Sections 2.1 or 2.2, - Contributor must include a text file with the Source Code - distribution titled "LEGAL" which describes the claim and the - party making the claim in sufficient detail that a recipient will - know whom to contact. If Contributor obtains such knowledge after - the Modification is made available as described in Section 3.2, - Contributor shall promptly modify the LEGAL file in all copies - Contributor makes available thereafter and shall take other steps - (such as notifying appropriate mailing lists or newsgroups) - reasonably calculated to inform those who received the Covered - Code that new knowledge has been obtained. - . - (b) Contributor APIs. - If Contributor's Modifications include an application programming - interface and Contributor has knowledge of patent licenses which - are reasonably necessary to implement that API, Contributor must - also include this information in the LEGAL file. - . - (c) Representations. - Contributor represents that, except as disclosed pursuant to - Section 3.4(a) above, Contributor believes that Contributor's - Modifications are Contributor's original creation(s) and/or - Contributor has sufficient rights to grant the rights conveyed by - this License. - . - 3.5. Required Notices. - You must duplicate the notice in Exhibit A in each file of the Source - Code. If it is not possible to put such notice in a particular Source - Code file due to its structure, then You must include such notice in a - location (such as a relevant directory) where a user would be likely - to look for such a notice. If You created one or more Modification(s) - You may add your name as a Contributor to the notice described in - Exhibit A. You must also duplicate this License in any documentation - for the Source Code where You describe recipients' rights or ownership - rights relating to Covered Code. You may choose to offer, and to - charge a fee for, warranty, support, indemnity or liability - obligations to one or more recipients of Covered Code. However, You - may do so only on Your own behalf, and not on behalf of the Initial - Developer or any Contributor. You must make it absolutely clear than - any such warranty, support, indemnity or liability obligation is - offered by You alone, and You hereby agree to indemnify the Initial - Developer and every Contributor for any liability incurred by the - Initial Developer or such Contributor as a result of warranty, - support, indemnity or liability terms You offer. - . - 3.6. Distribution of Executable Versions. - You may distribute Covered Code in Executable form only if the - requirements of Section 3.1-3.5 have been met for that Covered Code, - and if You include a notice stating that the Source Code version of - the Covered Code is available under the terms of this License, - including a description of how and where You have fulfilled the - obligations of Section 3.2. The notice must be conspicuously included - in any notice in an Executable version, related documentation or - collateral in which You describe recipients' rights relating to the - Covered Code. You may distribute the Executable version of Covered - Code or ownership rights under a license of Your choice, which may - contain terms different from this License, provided that You are in - compliance with the terms of this License and that the license for the - Executable version does not attempt to limit or alter the recipient's - rights in the Source Code version from the rights set forth in this - License. If You distribute the Executable version under a different - license You must make it absolutely clear that any terms which differ - from this License are offered by You alone, not by the Initial - Developer or any Contributor. You hereby agree to indemnify the - Initial Developer and every Contributor for any liability incurred by - the Initial Developer or such Contributor as a result of any such - terms You offer. - . - 3.7. Larger Works. - You may create a Larger Work by combining Covered Code with other code - not governed by the terms of this License and distribute the Larger - Work as a single product. In such a case, You must make sure the - requirements of this License are fulfilled for the Covered Code. - . - 4. Inability to Comply Due to Statute or Regulation. - . - If it is impossible for You to comply with any of the terms of this - License with respect to some or all of the Covered Code due to - statute, judicial order, or regulation then You must: (a) comply with - the terms of this License to the maximum extent possible; and (b) - describe the limitations and the code they affect. Such description - must be included in the LEGAL file described in Section 3.4 and must - be included with all distributions of the Source Code. Except to the - extent prohibited by statute or regulation, such description must be - sufficiently detailed for a recipient of ordinary skill to be able to - understand it. - . - 5. Application of this License. - . - This License applies to code to which the Initial Developer has - attached the notice in Exhibit A and to related Covered Code. - . - 6. Versions of the License. - . - 6.1. New Versions. - Netscape Communications Corporation ("Netscape") may publish revised - and/or new versions of the License from time to time. Each version - will be given a distinguishing version number. - . - 6.2. Effect of New Versions. - Once Covered Code has been published under a particular version of the - License, You may always continue to use it under the terms of that - version. You may also choose to use such Covered Code under the terms - of any subsequent version of the License published by Netscape. No one - other than Netscape has the right to modify the terms applicable to - Covered Code created under this License. - . - 6.3. Derivative Works. - If You create or use a modified version of this License (which you may - only do in order to apply it to code which is not already Covered Code - governed by this License), You must (a) rename Your license so that - the phrases "Mozilla", "MOZILLAPL", "MOZPL", "Netscape", - "MPL", "NPL" or any confusingly similar phrase do not appear in your - license (except to note that your license differs from this License) - and (b) otherwise make it clear that Your version of the license - contains terms which differ from the Mozilla Public License and - Netscape Public License. (Filling in the name of the Initial - Developer, Original Code or Contributor in the notice described in - Exhibit A shall not of themselves be deemed to be modifications of - this License.) - . - 7. DISCLAIMER OF WARRANTY. - . - COVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN "AS IS" BASIS, - WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, - WITHOUT LIMITATION, WARRANTIES THAT THE COVERED CODE IS FREE OF - DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. - THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED CODE - IS WITH YOU. SHOULD ANY COVERED CODE PROVE DEFECTIVE IN ANY RESPECT, - YOU (NOT THE INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE - COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER - OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF - ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER. - . - 8. TERMINATION. - . - 8.1. This License and the rights granted hereunder will terminate - automatically if You fail to comply with terms herein and fail to cure - such breach within 30 days of becoming aware of the breach. All - sublicenses to the Covered Code which are properly granted shall - survive any termination of this License. Provisions which, by their - nature, must remain in effect beyond the termination of this License - shall survive. - . - 8.2. If You initiate litigation by asserting a patent infringement - claim (excluding declatory judgment actions) against Initial Developer - or a Contributor (the Initial Developer or Contributor against whom - You file such action is referred to as "Participant") alleging that: - . - (a) such Participant's Contributor Version directly or indirectly - infringes any patent, then any and all rights granted by such - Participant to You under Sections 2.1 and/or 2.2 of this License - shall, upon 60 days notice from Participant terminate prospectively, - unless if within 60 days after receipt of notice You either: (i) - agree in writing to pay Participant a mutually agreeable reasonable - royalty for Your past and future use of Modifications made by such - Participant, or (ii) withdraw Your litigation claim with respect to - the Contributor Version against such Participant. If within 60 days - of notice, a reasonable royalty and payment arrangement are not - mutually agreed upon in writing by the parties or the litigation claim - is not withdrawn, the rights granted by Participant to You under - Sections 2.1 and/or 2.2 automatically terminate at the expiration of - the 60 day notice period specified above. - . - (b) any software, hardware, or device, other than such Participant's - Contributor Version, directly or indirectly infringes any patent, then - any rights granted to You by such Participant under Sections 2.1(b) - and 2.2(b) are revoked effective as of the date You first made, used, - sold, distributed, or had made, Modifications made by that - Participant. - . - 8.3. If You assert a patent infringement claim against Participant - alleging that such Participant's Contributor Version directly or - indirectly infringes any patent where such claim is resolved (such as - by license or settlement) prior to the initiation of patent - infringement litigation, then the reasonable value of the licenses - granted by such Participant under Sections 2.1 or 2.2 shall be taken - into account in determining the amount or value of any payment or - license. - . - 8.4. In the event of termination under Sections 8.1 or 8.2 above, - all end user license agreements (excluding distributors and resellers) - which have been validly granted by You or any distributor hereunder - prior to termination shall survive termination. - . - 9. LIMITATION OF LIABILITY. - . - UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT - (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE INITIAL - DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED CODE, - OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR - ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY - CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, - WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER - COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN - INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF - LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY - RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW - PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE - EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO - THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU. - . - 10. U.S. GOVERNMENT END USERS. - . - The Covered Code is a "commercial item," as that term is defined in - 48 C.F.R. 2.101 (Oct. 1995), consisting of "commercial computer - software" and "commercial computer software documentation," as such - terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 - C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), - all U.S. Government End Users acquire Covered Code with only those - rights set forth herein. - . - 11. MISCELLANEOUS. - . - This License represents the complete agreement concerning subject - matter hereof. If any provision of this License is held to be - unenforceable, such provision shall be reformed only to the extent - necessary to make it enforceable. This License shall be governed by - California law provisions (except to the extent applicable law, if - any, provides otherwise), excluding its conflict-of-law provisions. - With respect to disputes in which at least one party is a citizen of, - or an entity chartered or registered to do business in the United - States of America, any litigation relating to this License shall be - subject to the jurisdiction of the Federal Courts of the Northern - District of California, with venue lying in Santa Clara County, - California, with the losing party responsible for costs, including - without limitation, court costs and reasonable attorneys' fees and - expenses. The application of the United Nations Convention on - Contracts for the International Sale of Goods is expressly excluded. - Any law or regulation which provides that the language of a contract - shall be construed against the drafter shall not apply to this - License. - . - 12. RESPONSIBILITY FOR CLAIMS. - . - As between Initial Developer and the Contributors, each party is - responsible for claims and damages arising, directly or indirectly, - out of its utilization of rights under this License and You agree to - work with Initial Developer and Contributors to distribute such - responsibility on an equitable basis. Nothing herein is intended or - shall be deemed to constitute any admission of liability. - . - 13. MULTIPLE-LICENSED CODE. - . - Initial Developer may designate portions of the Covered Code as - "Multiple-Licensed". "Multiple-Licensed" means that the Initial - Developer permits you to utilize portions of the Covered Code under - Your choice of the NPL or the alternative licenses, if any, specified - by the Initial Developer in the file described in Exhibit A. - . - EXHIBIT A -Mozilla Public License. - . - ``The contents of this file are subject to the Mozilla Public License - Version 1.1 (the "License"); you may not use this file except in - compliance with the License. You may obtain a copy of the License at - http://www.mozilla.org/MPL/ - . - Software distributed under the License is distributed on an "AS IS" - basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the - License for the specific language governing rights and limitations - under the License. - . - The Original Code is ______________________________________. - . - The Initial Developer of the Original Code is ________________________. - Portions created by ______________________ are Copyright (C) ______ - _______________________. All Rights Reserved. - . - Contributor(s): ______________________________________. - . - Alternatively, the contents of this file may be used under the terms - of the _____ license (the "[___] License"), in which case the - provisions of [______] License are applicable instead of those - above. If you wish to allow use of your version of this file only - under the terms of the [____] License and not to allow others to use - your version of this file under the MPL, indicate your decision by - deleting the provisions above and replace them with the notice and - other provisions required by the [___] License. If you do not delete - the provisions above, a recipient may use your version of this file - under either the MPL or the [___] License." - . - [NOTE: The text of this Exhibit A may differ slightly from the text of - the notices in the Source Code files of the Original Code. You should - use the text of this Exhibit A rather than the text found in the - Original Code Source Code for Your Modifications.] - - ----------------------------------------- -libx11-6 version 2:1.6.7-1+deb10u1 - - -Copyright: - -This package was downloaded from -https://xorg.freedesktop.org/releases/individual/lib/ - -The following is the 'standard copyright' agreed upon by most contributors, -and is currently the canonical license preferred by the X.Org Foundation. -This is a slight variant of the common MIT license form published by the -Open Source Initiative at https://opensource.org/licenses/mit-license.php - -Copyright holders of new code should use this license statement where -possible, and insert their name to this list. Please sort by surname -for people, and by the full name for other entities (e.g. Juliusz -Chroboczek sorts before Intel Corporation sorts before Daniel Stone). - -See each individual source file or directory for the license that applies -to that file. - -Copyright (C) 2003-2006,2008 Jamey Sharp, Josh Triplett -Copyright © 2009 Red Hat, Inc. -Copyright 1990-1992,1999,2000,2004,2009,2010 Oracle and/or its affiliates. -All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining a -copy of this software and associated documentation files (the "Software"), -to deal in the Software without restriction, including without limitation -the rights to use, copy, modify, merge, publish, distribute, sublicense, -and/or sell copies of the Software, and to permit persons to whom the -Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice (including the next -paragraph) shall be included in all copies or substantial portions of the -Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL -THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -DEALINGS IN THE SOFTWARE. - - ---------------------------------------------------------------------- - -The following licenses are 'legacy' - usually MIT/X11 licenses with the name -of the copyright holder(s) in the license statement: - -Copyright 1984-1994, 1998 The Open Group - -Permission to use, copy, modify, distribute, and sell this software and its -documentation for any purpose is hereby granted without fee, provided that -the above copyright notice appear in all copies and that both that -copyright notice and this permission notice appear in supporting -documentation. - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN -AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN -CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -Except as contained in this notice, the name of The Open Group shall not be -used in advertising or otherwise to promote the sale, use or other dealings -in this Software without prior written authorization from The Open Group. - -X Window System is a trademark of The Open Group. - - ---------------------------------------- - -Copyright 1985, 1986, 1987, 1988, 1989, 1990, 1991, 1994, 1996 X Consortium -Copyright 2000 The XFree86 Project, Inc. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS -OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -IN NO EVENT SHALL THE X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR -OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, -ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR -OTHER DEALINGS IN THE SOFTWARE. - -Except as contained in this notice, the name of the X Consortium shall -not be used in advertising or otherwise to promote the sale, use or -other dealings in this Software without prior written authorization -from the X Consortium. - -Copyright 1985, 1986, 1987, 1988, 1989, 1990, 1991 by -Digital Equipment Corporation - -Portions Copyright 1990, 1991 by Tektronix, Inc. - -Permission to use, copy, modify and distribute this documentation for -any purpose and without fee is hereby granted, provided that the above -copyright notice appears in all copies and that both that copyright notice -and this permission notice appear in all copies, and that the names of -Digital and Tektronix not be used in in advertising or publicity pertaining -to this documentation without specific, written prior permission. -Digital and Tektronix makes no representations about the suitability -of this documentation for any purpose. -It is provided ``as is'' without express or implied warranty. - - ---------------------------------------- - -Copyright (c) 1999-2000 Free Software Foundation, Inc. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -FREE SOFTWARE FOUNDATION BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, -WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR -IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -Except as contained in this notice, the name of the Free Software Foundation -shall not be used in advertising or otherwise to promote the sale, use or -other dealings in this Software without prior written authorization from the -Free Software Foundation. - - ---------------------------------------- - -Code and supporting documentation (c) Copyright 1990 1991 Tektronix, Inc. - All Rights Reserved - -This file is a component of an X Window System-specific implementation -of Xcms based on the TekColor Color Management System. TekColor is a -trademark of Tektronix, Inc. The term "TekHVC" designates a particular -color space that is the subject of U.S. Patent No. 4,985,853 (equivalent -foreign patents pending). Permission is hereby granted to use, copy, -modify, sell, and otherwise distribute this software and its -documentation for any purpose and without fee, provided that: - -1. This copyright, permission, and disclaimer notice is reproduced in - all copies of this software and any modification thereof and in - supporting documentation; -2. Any color-handling application which displays TekHVC color - cooordinates identifies these as TekHVC color coordinates in any - interface that displays these coordinates and in any associated - documentation; -3. The term "TekHVC" is always used, and is only used, in association - with the mathematical derivations of the TekHVC Color Space, - including those provided in this file and any equivalent pathways and - mathematical derivations, regardless of digital (e.g., floating point - or integer) representation. - -Tektronix makes no representation about the suitability of this software -for any purpose. It is provided "as is" and with all faults. - -TEKTRONIX DISCLAIMS ALL WARRANTIES APPLICABLE TO THIS SOFTWARE, -INCLUDING THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A -PARTICULAR PURPOSE. IN NO EVENT SHALL TEKTRONIX BE LIABLE FOR ANY -SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER -RESULTING FROM LOSS OF USE, DATA, OR PROFITS, WHETHER IN AN ACTION OF -CONTRACT, NEGLIGENCE, OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN -CONNECTION WITH THE USE OR THE PERFORMANCE OF THIS SOFTWARE. - - ---------------------------------------- - -(c) Copyright 1995 FUJITSU LIMITED -This is source code modified by FUJITSU LIMITED under the Joint -Development Agreement for the CDE/Motif PST. - - ---------------------------------------- - -Copyright 1992 by Oki Technosystems Laboratory, Inc. -Copyright 1992 by Fuji Xerox Co., Ltd. - -Permission to use, copy, modify, distribute, and sell this software -and its documentation for any purpose is hereby granted without fee, -provided that the above copyright notice appear in all copies and -that both that copyright notice and this permission notice appear -in supporting documentation, and that the name of Oki Technosystems -Laboratory and Fuji Xerox not be used in advertising or publicity -pertaining to distribution of the software without specific, written -prior permission. -Oki Technosystems Laboratory and Fuji Xerox make no representations -about the suitability of this software for any purpose. It is provided -"as is" without express or implied warranty. - -OKI TECHNOSYSTEMS LABORATORY AND FUJI XEROX DISCLAIM ALL WARRANTIES -WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL OKI TECHNOSYSTEMS -LABORATORY AND FUJI XEROX BE LIABLE FOR ANY SPECIAL, INDIRECT OR -CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS -OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE -OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE -OR PERFORMANCE OF THIS SOFTWARE. - - ---------------------------------------- - -Copyright 1990, 1991, 1992, 1993, 1994 by FUJITSU LIMITED - -Permission to use, copy, modify, distribute, and sell this software -and its documentation for any purpose is hereby granted without fee, -provided that the above copyright notice appear in all copies and -that both that copyright notice and this permission notice appear -in supporting documentation, and that the name of FUJITSU LIMITED -not be used in advertising or publicity pertaining to distribution -of the software without specific, written prior permission. -FUJITSU LIMITED makes no representations about the suitability of -this software for any purpose. -It is provided "as is" without express or implied warranty. - -FUJITSU LIMITED DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, -INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO -EVENT SHALL FUJITSU LIMITED BE LIABLE FOR ANY SPECIAL, INDIRECT OR -CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF -USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR -OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THIS SOFTWARE. - - ---------------------------------------- - - -Copyright (c) 1995 David E. Wexelblat. All rights reserved - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS -OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -IN NO EVENT SHALL DAVID E. WEXELBLAT BE LIABLE FOR ANY CLAIM, DAMAGES OR -OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, -ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR -OTHER DEALINGS IN THE SOFTWARE. - -Except as contained in this notice, the name of David E. Wexelblat shall -not be used in advertising or otherwise to promote the sale, use or -other dealings in this Software without prior written authorization -from David E. Wexelblat. - - ---------------------------------------- - -Copyright 1990, 1991 by OMRON Corporation - -Permission to use, copy, modify, distribute, and sell this software and its -documentation for any purpose is hereby granted without fee, provided that -the above copyright notice appear in all copies and that both that -copyright notice and this permission notice appear in supporting -documentation, and that the name OMRON not be used in -advertising or publicity pertaining to distribution of the software without -specific, written prior permission. OMRON makes no representations -about the suitability of this software for any purpose. It is provided -"as is" without express or implied warranty. - -OMRON DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, -INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO -EVENT SHALL OMRON BE LIABLE FOR ANY SPECIAL, INDIRECT OR -CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTUOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THIS SOFTWARE. - - ---------------------------------------- - -Copyright 1985, 1986, 1987, 1988, 1989, 1990, 1991 by -Digital Equipment Corporation - -Portions Copyright 1990, 1991 by Tektronix, Inc - -Rewritten for X.org by Chris Lee - -Permission to use, copy, modify, distribute, and sell this documentation -for any purpose and without fee is hereby granted, provided that the above -copyright notice and this permission notice appear in all copies. -Chris Lee makes no representations about the suitability for any purpose -of the information in this document. It is provided \`\`as-is'' without -express or implied warranty. - - ---------------------------------------- - -Copyright 1993 by Digital Equipment Corporation, Maynard, Massachusetts, -Copyright 1994 by FUJITSU LIMITED -Copyright 1994 by Sony Corporation - - All Rights Reserved - -Permission to use, copy, modify, and distribute this software and its -documentation for any purpose and without fee is hereby granted, -provided that the above copyright notice appear in all copies and that -both that copyright notice and this permission notice appear in -supporting documentation, and that the names of Digital, FUJITSU -LIMITED and Sony Corporation not be used in advertising or publicity -pertaining to distribution of the software without specific, written -prior permission. - -DIGITAL, FUJITSU LIMITED AND SONY CORPORATION DISCLAIMS ALL WARRANTIES -WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL DIGITAL, FUJITSU LIMITED -AND SONY CORPORATION BE LIABLE FOR ANY SPECIAL, INDIRECT OR -CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF -USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR -OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THIS SOFTWARE. - - ---------------------------------------- - - -Copyright 1991 by the Open Software Foundation - -Permission to use, copy, modify, distribute, and sell this software and its -documentation for any purpose is hereby granted without fee, provided that -the above copyright notice appear in all copies and that both that -copyright notice and this permission notice appear in supporting -documentation, and that the name of Open Software Foundation -not be used in advertising or publicity pertaining to distribution of the -software without specific, written prior permission. Open Software -Foundation makes no representations about the suitability of this -software for any purpose. It is provided "as is" without express or -implied warranty. - -OPEN SOFTWARE FOUNDATION DISCLAIMS ALL WARRANTIES WITH REGARD TO -THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS, IN NO EVENT SHALL OPEN SOFTWARE FOUNDATIONN BE -LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN -ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF -OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - - ---------------------------------------- - -Copyright 1990, 1991, 1992,1993, 1994 by FUJITSU LIMITED -Copyright 1993, 1994 by Sony Corporation - -Permission to use, copy, modify, distribute, and sell this software and -its documentation for any purpose is hereby granted without fee, provided -that the above copyright notice appear in all copies and that both that -copyright notice and this permission notice appear in supporting -documentation, and that the name of FUJITSU LIMITED and Sony Corporation -not be used in advertising or publicity pertaining to distribution of the -software without specific, written prior permission. FUJITSU LIMITED and -Sony Corporation makes no representations about the suitability of this -software for any purpose. It is provided "as is" without express or -implied warranty. - -FUJITSU LIMITED AND SONY CORPORATION DISCLAIMS ALL WARRANTIES WITH REGARD -TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS, IN NO EVENT SHALL FUJITSU LIMITED OR SONY CORPORATION BE LIABLE -FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER -RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, -NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE -USE OR PERFORMANCE OF THIS SOFTWARE. - - ---------------------------------------- - -Copyright (c) 1993, 1995 by Silicon Graphics Computer Systems, Inc. - -Permission to use, copy, modify, and distribute this -software and its documentation for any purpose and without -fee is hereby granted, provided that the above copyright -notice appear in all copies and that both that copyright -notice and this permission notice appear in supporting -documentation, and that the name of Silicon Graphics not be -used in advertising or publicity pertaining to distribution -of the software without specific prior written permission. -Silicon Graphics makes no representation about the suitability -of this software for any purpose. It is provided "as is" -without any express or implied warranty. - -SILICON GRAPHICS DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS -SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY -AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL SILICON -GRAPHICS BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL -DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE -OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH -THE USE OR PERFORMANCE OF THIS SOFTWARE. - - ---------------------------------------- - -Copyright 1991, 1992, 1993, 1994 by FUJITSU LIMITED -Copyright 1993 by Digital Equipment Corporation - -Permission to use, copy, modify, distribute, and sell this software -and its documentation for any purpose is hereby granted without fee, -provided that the above copyright notice appear in all copies and that -both that copyright notice and this permission notice appear in -supporting documentation, and that the name of FUJITSU LIMITED and -Digital Equipment Corporation not be used in advertising or publicity -pertaining to distribution of the software without specific, written -prior permission. FUJITSU LIMITED and Digital Equipment Corporation -makes no representations about the suitability of this software for -any purpose. It is provided "as is" without express or implied -warranty. - -FUJITSU LIMITED AND DIGITAL EQUIPMENT CORPORATION DISCLAIM ALL -WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL -FUJITSU LIMITED AND DIGITAL EQUIPMENT CORPORATION BE LIABLE FOR -ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER -IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, -ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF -THIS SOFTWARE. - - ---------------------------------------- - -Copyright 1992, 1993 by FUJITSU LIMITED -Copyright 1993 by Fujitsu Open Systems Solutions, Inc. -Copyright 1994 by Sony Corporation - -Permission to use, copy, modify, distribute and sell this software -and its documentation for any purpose is hereby granted without fee, -provided that the above copyright notice appear in all copies and -that both that copyright notice and this permission notice appear -in supporting documentation, and that the name of FUJITSU LIMITED, -Fujitsu Open Systems Solutions, Inc. and Sony Corporation not be -used in advertising or publicity pertaining to distribution of the -software without specific, written prior permission. -FUJITSU LIMITED, Fujitsu Open Systems Solutions, Inc. and -Sony Corporation make no representations about the suitability of -this software for any purpose. It is provided "as is" without -express or implied warranty. - -FUJITSU LIMITED, FUJITSU OPEN SYSTEMS SOLUTIONS, INC. AND SONY -CORPORATION DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, -INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, -IN NO EVENT SHALL FUJITSU OPEN SYSTEMS SOLUTIONS, INC., FUJITSU LIMITED -AND SONY CORPORATION BE LIABLE FOR ANY SPECIAL, INDIRECT OR -CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS -OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE -OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE -OR PERFORMANCE OF THIS SOFTWARE. - - ---------------------------------------- - -Copyright 1987, 1988, 1990, 1993 by Digital Equipment Corporation, -Maynard, Massachusetts, - - All Rights Reserved - -Permission to use, copy, modify, and distribute this software and its -documentation for any purpose and without fee is hereby granted, -provided that the above copyright notice appear in all copies and that -both that copyright notice and this permission notice appear in -supporting documentation, and that the name of Digital not be -used in advertising or publicity pertaining to distribution of the -software without specific, written prior permission. - -DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING -ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL -DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR -ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, -WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, -ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS -SOFTWARE. - - ---------------------------------------- - -Copyright 1993 by SunSoft, Inc. -Copyright 1999-2000 by Bruno Haible - -Permission to use, copy, modify, distribute, and sell this software -and its documentation for any purpose is hereby granted without fee, -provided that the above copyright notice appear in all copies and -that both that copyright notice and this permission notice appear -in supporting documentation, and that the names of SunSoft, Inc. and -Bruno Haible not be used in advertising or publicity pertaining to -distribution of the software without specific, written prior -permission. SunSoft, Inc. and Bruno Haible make no representations -about the suitability of this software for any purpose. It is -provided "as is" without express or implied warranty. - -SunSoft Inc. AND Bruno Haible DISCLAIM ALL WARRANTIES WITH REGARD -TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY -AND FITNESS, IN NO EVENT SHALL SunSoft, Inc. OR Bruno Haible BE LIABLE -FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN -ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT -OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - - ---------------------------------------- - -Copyright 1991 by the Open Software Foundation -Copyright 1993 by the TOSHIBA Corp. - -Permission to use, copy, modify, distribute, and sell this software and its -documentation for any purpose is hereby granted without fee, provided that -the above copyright notice appear in all copies and that both that -copyright notice and this permission notice appear in supporting -documentation, and that the names of Open Software Foundation and TOSHIBA -not be used in advertising or publicity pertaining to distribution of the -software without specific, written prior permission. Open Software -Foundation and TOSHIBA make no representations about the suitability of this -software for any purpose. It is provided "as is" without express or -implied warranty. - -OPEN SOFTWARE FOUNDATION AND TOSHIBA DISCLAIM ALL WARRANTIES WITH REGARD TO -THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS, IN NO EVENT SHALL OPEN SOFTWARE FOUNDATIONN OR TOSHIBA BE -LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN -ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF -OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - - ---------------------------------------- - -Copyright 1988 by Wyse Technology, Inc., San Jose, Ca., - - All Rights Reserved - -Permission to use, copy, modify, and distribute this software and its -documentation for any purpose and without fee is hereby granted, -provided that the above copyright notice appear in all copies and that -both that copyright notice and this permission notice appear in -supporting documentation, and that the name Wyse not be -used in advertising or publicity pertaining to distribution of the -software without specific, written prior permission. - -WYSE DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING -ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL -DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR -ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, -WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, -ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS -SOFTWARE. - - ---------------------------------------- - - -Copyright 1991 by the Open Software Foundation -Copyright 1993, 1994 by the Sony Corporation - -Permission to use, copy, modify, distribute, and sell this software and its -documentation for any purpose is hereby granted without fee, provided that -the above copyright notice appear in all copies and that both that -copyright notice and this permission notice appear in supporting -documentation, and that the names of Open Software Foundation and -Sony Corporation not be used in advertising or publicity pertaining to -distribution of the software without specific, written prior permission. -Open Software Foundation and Sony Corporation make no -representations about the suitability of this software for any purpose. -It is provided "as is" without express or implied warranty. - -OPEN SOFTWARE FOUNDATION AND SONY CORPORATION DISCLAIM ALL -WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL OPEN -SOFTWARE FOUNDATIONN OR SONY CORPORATION BE LIABLE FOR ANY SPECIAL, -INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM -LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE -OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THIS SOFTWARE. - - ---------------------------------------- - -Copyright 1992, 1993 by FUJITSU LIMITED -Copyright 1993 by Fujitsu Open Systems Solutions, Inc. - -Permission to use, copy, modify, distribute and sell this software -and its documentation for any purpose is hereby granted without fee, -provided that the above copyright notice appear in all copies and -that both that copyright notice and this permission notice appear -in supporting documentation, and that the name of FUJITSU LIMITED and -Fujitsu Open Systems Solutions, Inc. not be used in advertising or -publicity pertaining to distribution of the software without specific, -written prior permission. -FUJITSU LIMITED and Fujitsu Open Systems Solutions, Inc. makes no -representations about the suitability of this software for any purpose. -It is provided "as is" without express or implied warranty. - -FUJITSU LIMITED AND FUJITSU OPEN SYSTEMS SOLUTIONS, INC. DISCLAIMS ALL -WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES -OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL FUJITSU OPEN SYSTEMS -SOLUTIONS, INC. AND FUJITSU LIMITED BE LIABLE FOR ANY SPECIAL, INDIRECT -OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF -USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE -OF THIS SOFTWARE. - - ---------------------------------------- - -Copyright 1993, 1994 by Sony Corporation - -Permission to use, copy, modify, distribute, and sell this software -and its documentation for any purpose is hereby granted without fee, -provided that the above copyright notice appear in all copies and -that both that copyright notice and this permission notice appear -in supporting documentation, and that the name of Sony Corporation -not be used in advertising or publicity pertaining to distribution -of the software without specific, written prior permission. -Sony Corporation makes no representations about the suitability of -this software for any purpose. It is provided "as is" without -express or implied warranty. - -SONY CORPORATION DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, -INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO -EVENT SHALL SONY CORPORATION BE LIABLE FOR ANY SPECIAL, INDIRECT OR -CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF -USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR -OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THIS SOFTWARE. - - ---------------------------------------- - -Copyright 1986, 1998 The Open Group -Copyright (c) 2000 The XFree86 Project, Inc. - -Permission to use, copy, modify, distribute, and sell this software and its -documentation for any purpose is hereby granted without fee, provided that -the above copyright notice appear in all copies and that both that -copyright notice and this permission notice appear in supporting -documentation. - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -X CONSORTIUM OR THE XFREE86 PROJECT BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - -Except as contained in this notice, the name of the X Consortium or of the -XFree86 Project shall not be used in advertising or otherwise to promote the -sale, use or other dealings in this Software without prior written -authorization from the X Consortium and the XFree86 Project. - - ---------------------------------------- - -Copyright 1990, 1991 by OMRON Corporation, NTT Software Corporation, - and Nippon Telegraph and Telephone Corporation -Copyright 1991 by the Open Software Foundation -Copyright 1993 by the FUJITSU LIMITED - -Permission to use, copy, modify, distribute, and sell this software and its -documentation for any purpose is hereby granted without fee, provided that -the above copyright notice appear in all copies and that both that -copyright notice and this permission notice appear in supporting -documentation, and that the names of OMRON, NTT Software, NTT, and -Open Software Foundation not be used in advertising or publicity -pertaining to distribution of the software without specific, -written prior permission. OMRON, NTT Software, NTT, and Open Software -Foundation make no representations about the suitability of this -software for any purpose. It is provided "as is" without express or -implied warranty. - -OMRON, NTT SOFTWARE, NTT, AND OPEN SOFTWARE FOUNDATION -DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING -ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT -SHALL OMRON, NTT SOFTWARE, NTT, OR OPEN SOFTWARE FOUNDATION BE -LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN -ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF -OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - - ---------------------------------------- - -Copyright 1988 by Wyse Technology, Inc., San Jose, Ca, -Copyright 1987 by Digital Equipment Corporation, Maynard, Massachusetts, - - All Rights Reserved - -Permission to use, copy, modify, and distribute this software and its -documentation for any purpose and without fee is hereby granted, -provided that the above copyright notice appear in all copies and that -both that copyright notice and this permission notice appear in -supporting documentation, and that the name Digital not be -used in advertising or publicity pertaining to distribution of the -software without specific, written prior permission. - -DIGITAL AND WYSE DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, -INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO -EVENT SHALL DIGITAL OR WYSE BE LIABLE FOR ANY SPECIAL, INDIRECT OR -CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF -USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR -OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THIS SOFTWARE. - - ---------------------------------------- - - -Copyright 1991, 1992 by Fuji Xerox Co., Ltd. -Copyright 1992, 1993, 1994 by FUJITSU LIMITED - -Permission to use, copy, modify, distribute, and sell this software -and its documentation for any purpose is hereby granted without fee, -provided that the above copyright notice appear in all copies and -that both that copyright notice and this permission notice appear -in supporting documentation, and that the name of Fuji Xerox, -FUJITSU LIMITED not be used in advertising or publicity pertaining -to distribution of the software without specific, written prior -permission. Fuji Xerox, FUJITSU LIMITED make no representations -about the suitability of this software for any purpose. -It is provided "as is" without express or implied warranty. - -FUJI XEROX, FUJITSU LIMITED DISCLAIM ALL WARRANTIES WITH -REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL FUJI XEROX, -FUJITSU LIMITED BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL -DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA -OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THIS SOFTWARE. - - ---------------------------------------- - -Copyright 2006 Josh Triplett - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS -OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -IN NO EVENT SHALL THE X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR -OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, -ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR -OTHER DEALINGS IN THE SOFTWARE. - - ---------------------------------------- - -(c) Copyright 1996 by Sebastien Marineau and Holger Veit - - - -Permission is hereby granted, free of charge, to any person obtaining a -copy of this software and associated documentation files (the "Software"), -to deal in the Software without restriction, including without limitation -the rights to use, copy, modify, merge, publish, distribute, sublicense, -and/or sell copies of the Software, and to permit persons to whom the -Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL -HOLGER VEIT BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, -WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF -OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - -Except as contained in this notice, the name of Sebastien Marineau or Holger Veit -shall not be used in advertising or otherwise to promote the sale, use or other -dealings in this Software without prior written authorization from Holger Veit or -Sebastien Marineau. - - ---------------------------------------- - -Copyright 1990, 1991 by OMRON Corporation, NTT Software Corporation, - and Nippon Telegraph and Telephone Corporation -Copyright 1991 by the Open Software Foundation -Copyright 1993 by the TOSHIBA Corp. -Copyright 1993, 1994 by Sony Corporation -Copyright 1993, 1994 by the FUJITSU LIMITED - -Permission to use, copy, modify, distribute, and sell this software and its -documentation for any purpose is hereby granted without fee, provided that -the above copyright notice appear in all copies and that both that -copyright notice and this permission notice appear in supporting -documentation, and that the names of OMRON, NTT Software, NTT, Open -Software Foundation, and Sony Corporation not be used in advertising -or publicity pertaining to distribution of the software without specific, -written prior permission. OMRON, NTT Software, NTT, Open Software -Foundation, and Sony Corporation make no representations about the -suitability of this software for any purpose. It is provided "as is" -without express or implied warranty. - -OMRON, NTT SOFTWARE, NTT, OPEN SOFTWARE FOUNDATION, AND SONY -CORPORATION DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING -ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT -SHALL OMRON, NTT SOFTWARE, NTT, OPEN SOFTWARE FOUNDATION, OR SONY -CORPORATION BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR -ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER -IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT -OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - - ---------------------------------------- - -Copyright 2000 by Bruno Haible - -Permission to use, copy, modify, distribute, and sell this software -and its documentation for any purpose is hereby granted without fee, -provided that the above copyright notice appear in all copies and -that both that copyright notice and this permission notice appear -in supporting documentation, and that the name of Bruno Haible not -be used in advertising or publicity pertaining to distribution of the -software without specific, written prior permission. Bruno Haible -makes no representations about the suitability of this software for -any purpose. It is provided "as is" without express or implied -warranty. - -Bruno Haible DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, -INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN -NO EVENT SHALL Bruno Haible BE LIABLE FOR ANY SPECIAL, INDIRECT OR -CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS -OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE -OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE -OR PERFORMANCE OF THIS SOFTWARE. - - ---------------------------------------- - -Copyright © 2003 Keith Packard - -Permission to use, copy, modify, distribute, and sell this software and its -documentation for any purpose is hereby granted without fee, provided that -the above copyright notice appear in all copies and that both that -copyright notice and this permission notice appear in supporting -documentation, and that the name of Keith Packard not be used in -advertising or publicity pertaining to distribution of the software without -specific, written prior permission. Keith Packard makes no -representations about the suitability of this software for any purpose. It -is provided "as is" without express or implied warranty. - -KEITH PACKARD DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, -INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO -EVENT SHALL KEITH PACKARD BE LIABLE FOR ANY SPECIAL, INDIRECT OR -CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THIS SOFTWARE. - - ---------------------------------------- - -Copyright (c) 2007-2009, Troy D. Hanson -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - -Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS -IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED -TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A -PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER -OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, -EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, -PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - ---------------------------------------- - -Copyright 1992, 1993 by TOSHIBA Corp. - -Permission to use, copy, modify, and distribute this software and its -documentation for any purpose and without fee is hereby granted, provided -that the above copyright notice appear in all copies and that both that -copyright notice and this permission notice appear in supporting -documentation, and that the name of TOSHIBA not be used in advertising -or publicity pertaining to distribution of the software without specific, -written prior permission. TOSHIBA make no representations about the -suitability of this software for any purpose. It is provided "as is" -without express or implied warranty. - -TOSHIBA DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING -ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL -TOSHIBA BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR -ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, -WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, -ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS -SOFTWARE. - - - ---------------------------------------- - -Copyright IBM Corporation 1993 - -All Rights Reserved - -License to use, copy, modify, and distribute this software and its -documentation for any purpose and without fee is hereby granted, -provided that the above copyright notice appear in all copies and that -both that copyright notice and this permission notice appear in -supporting documentation, and that the name of IBM not be -used in advertising or publicity pertaining to distribution of the -software without specific, written prior permission. - -IBM DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING -ALL IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS, AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS, IN NO EVENT SHALL -IBM BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR -ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, -WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, -ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS -SOFTWARE. - - ---------------------------------------- - -Copyright 1990, 1991 by OMRON Corporation, NTT Software Corporation, - and Nippon Telegraph and Telephone Corporation - -Permission to use, copy, modify, distribute, and sell this software and its -documentation for any purpose is hereby granted without fee, provided that -the above copyright notice appear in all copies and that both that -copyright notice and this permission notice appear in supporting -documentation, and that the names of OMRON, NTT Software, and NTT -not be used in advertising or publicity pertaining to distribution of the -software without specific, written prior permission. OMRON, NTT Software, -and NTT make no representations about the suitability of this -software for any purpose. It is provided "as is" without express or -implied warranty. - -OMRON, NTT SOFTWARE, AND NTT, DISCLAIM ALL WARRANTIES WITH REGARD -TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY -AND FITNESS, IN NO EVENT SHALL OMRON, NTT SOFTWARE, OR NTT, BE -LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN -ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF -OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - - ----------------------------------------- -libx11-data version 2:1.6.7-1+deb10u1 - - -Copyright: - -This package was downloaded from -https://xorg.freedesktop.org/releases/individual/lib/ - -The following is the 'standard copyright' agreed upon by most contributors, -and is currently the canonical license preferred by the X.Org Foundation. -This is a slight variant of the common MIT license form published by the -Open Source Initiative at https://opensource.org/licenses/mit-license.php - -Copyright holders of new code should use this license statement where -possible, and insert their name to this list. Please sort by surname -for people, and by the full name for other entities (e.g. Juliusz -Chroboczek sorts before Intel Corporation sorts before Daniel Stone). - -See each individual source file or directory for the license that applies -to that file. - -Copyright (C) 2003-2006,2008 Jamey Sharp, Josh Triplett -Copyright © 2009 Red Hat, Inc. -Copyright 1990-1992,1999,2000,2004,2009,2010 Oracle and/or its affiliates. -All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining a -copy of this software and associated documentation files (the "Software"), -to deal in the Software without restriction, including without limitation -the rights to use, copy, modify, merge, publish, distribute, sublicense, -and/or sell copies of the Software, and to permit persons to whom the -Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice (including the next -paragraph) shall be included in all copies or substantial portions of the -Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL -THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -DEALINGS IN THE SOFTWARE. - - ---------------------------------------------------------------------- - -The following licenses are 'legacy' - usually MIT/X11 licenses with the name -of the copyright holder(s) in the license statement: - -Copyright 1984-1994, 1998 The Open Group - -Permission to use, copy, modify, distribute, and sell this software and its -documentation for any purpose is hereby granted without fee, provided that -the above copyright notice appear in all copies and that both that -copyright notice and this permission notice appear in supporting -documentation. - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN -AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN -CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -Except as contained in this notice, the name of The Open Group shall not be -used in advertising or otherwise to promote the sale, use or other dealings -in this Software without prior written authorization from The Open Group. - -X Window System is a trademark of The Open Group. - - ---------------------------------------- - -Copyright 1985, 1986, 1987, 1988, 1989, 1990, 1991, 1994, 1996 X Consortium -Copyright 2000 The XFree86 Project, Inc. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS -OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -IN NO EVENT SHALL THE X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR -OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, -ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR -OTHER DEALINGS IN THE SOFTWARE. - -Except as contained in this notice, the name of the X Consortium shall -not be used in advertising or otherwise to promote the sale, use or -other dealings in this Software without prior written authorization -from the X Consortium. - -Copyright 1985, 1986, 1987, 1988, 1989, 1990, 1991 by -Digital Equipment Corporation - -Portions Copyright 1990, 1991 by Tektronix, Inc. - -Permission to use, copy, modify and distribute this documentation for -any purpose and without fee is hereby granted, provided that the above -copyright notice appears in all copies and that both that copyright notice -and this permission notice appear in all copies, and that the names of -Digital and Tektronix not be used in in advertising or publicity pertaining -to this documentation without specific, written prior permission. -Digital and Tektronix makes no representations about the suitability -of this documentation for any purpose. -It is provided ``as is'' without express or implied warranty. - - ---------------------------------------- - -Copyright (c) 1999-2000 Free Software Foundation, Inc. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -FREE SOFTWARE FOUNDATION BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, -WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR -IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -Except as contained in this notice, the name of the Free Software Foundation -shall not be used in advertising or otherwise to promote the sale, use or -other dealings in this Software without prior written authorization from the -Free Software Foundation. - - ---------------------------------------- - -Code and supporting documentation (c) Copyright 1990 1991 Tektronix, Inc. - All Rights Reserved - -This file is a component of an X Window System-specific implementation -of Xcms based on the TekColor Color Management System. TekColor is a -trademark of Tektronix, Inc. The term "TekHVC" designates a particular -color space that is the subject of U.S. Patent No. 4,985,853 (equivalent -foreign patents pending). Permission is hereby granted to use, copy, -modify, sell, and otherwise distribute this software and its -documentation for any purpose and without fee, provided that: - -1. This copyright, permission, and disclaimer notice is reproduced in - all copies of this software and any modification thereof and in - supporting documentation; -2. Any color-handling application which displays TekHVC color - cooordinates identifies these as TekHVC color coordinates in any - interface that displays these coordinates and in any associated - documentation; -3. The term "TekHVC" is always used, and is only used, in association - with the mathematical derivations of the TekHVC Color Space, - including those provided in this file and any equivalent pathways and - mathematical derivations, regardless of digital (e.g., floating point - or integer) representation. - -Tektronix makes no representation about the suitability of this software -for any purpose. It is provided "as is" and with all faults. - -TEKTRONIX DISCLAIMS ALL WARRANTIES APPLICABLE TO THIS SOFTWARE, -INCLUDING THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A -PARTICULAR PURPOSE. IN NO EVENT SHALL TEKTRONIX BE LIABLE FOR ANY -SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER -RESULTING FROM LOSS OF USE, DATA, OR PROFITS, WHETHER IN AN ACTION OF -CONTRACT, NEGLIGENCE, OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN -CONNECTION WITH THE USE OR THE PERFORMANCE OF THIS SOFTWARE. - - ---------------------------------------- - -(c) Copyright 1995 FUJITSU LIMITED -This is source code modified by FUJITSU LIMITED under the Joint -Development Agreement for the CDE/Motif PST. - - ---------------------------------------- - -Copyright 1992 by Oki Technosystems Laboratory, Inc. -Copyright 1992 by Fuji Xerox Co., Ltd. - -Permission to use, copy, modify, distribute, and sell this software -and its documentation for any purpose is hereby granted without fee, -provided that the above copyright notice appear in all copies and -that both that copyright notice and this permission notice appear -in supporting documentation, and that the name of Oki Technosystems -Laboratory and Fuji Xerox not be used in advertising or publicity -pertaining to distribution of the software without specific, written -prior permission. -Oki Technosystems Laboratory and Fuji Xerox make no representations -about the suitability of this software for any purpose. It is provided -"as is" without express or implied warranty. - -OKI TECHNOSYSTEMS LABORATORY AND FUJI XEROX DISCLAIM ALL WARRANTIES -WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL OKI TECHNOSYSTEMS -LABORATORY AND FUJI XEROX BE LIABLE FOR ANY SPECIAL, INDIRECT OR -CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS -OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE -OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE -OR PERFORMANCE OF THIS SOFTWARE. - - ---------------------------------------- - -Copyright 1990, 1991, 1992, 1993, 1994 by FUJITSU LIMITED - -Permission to use, copy, modify, distribute, and sell this software -and its documentation for any purpose is hereby granted without fee, -provided that the above copyright notice appear in all copies and -that both that copyright notice and this permission notice appear -in supporting documentation, and that the name of FUJITSU LIMITED -not be used in advertising or publicity pertaining to distribution -of the software without specific, written prior permission. -FUJITSU LIMITED makes no representations about the suitability of -this software for any purpose. -It is provided "as is" without express or implied warranty. - -FUJITSU LIMITED DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, -INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO -EVENT SHALL FUJITSU LIMITED BE LIABLE FOR ANY SPECIAL, INDIRECT OR -CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF -USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR -OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THIS SOFTWARE. - - ---------------------------------------- - - -Copyright (c) 1995 David E. Wexelblat. All rights reserved - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS -OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -IN NO EVENT SHALL DAVID E. WEXELBLAT BE LIABLE FOR ANY CLAIM, DAMAGES OR -OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, -ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR -OTHER DEALINGS IN THE SOFTWARE. - -Except as contained in this notice, the name of David E. Wexelblat shall -not be used in advertising or otherwise to promote the sale, use or -other dealings in this Software without prior written authorization -from David E. Wexelblat. - - ---------------------------------------- - -Copyright 1990, 1991 by OMRON Corporation - -Permission to use, copy, modify, distribute, and sell this software and its -documentation for any purpose is hereby granted without fee, provided that -the above copyright notice appear in all copies and that both that -copyright notice and this permission notice appear in supporting -documentation, and that the name OMRON not be used in -advertising or publicity pertaining to distribution of the software without -specific, written prior permission. OMRON makes no representations -about the suitability of this software for any purpose. It is provided -"as is" without express or implied warranty. - -OMRON DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, -INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO -EVENT SHALL OMRON BE LIABLE FOR ANY SPECIAL, INDIRECT OR -CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTUOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THIS SOFTWARE. - - ---------------------------------------- - -Copyright 1985, 1986, 1987, 1988, 1989, 1990, 1991 by -Digital Equipment Corporation - -Portions Copyright 1990, 1991 by Tektronix, Inc - -Rewritten for X.org by Chris Lee - -Permission to use, copy, modify, distribute, and sell this documentation -for any purpose and without fee is hereby granted, provided that the above -copyright notice and this permission notice appear in all copies. -Chris Lee makes no representations about the suitability for any purpose -of the information in this document. It is provided \`\`as-is'' without -express or implied warranty. - - ---------------------------------------- - -Copyright 1993 by Digital Equipment Corporation, Maynard, Massachusetts, -Copyright 1994 by FUJITSU LIMITED -Copyright 1994 by Sony Corporation - - All Rights Reserved - -Permission to use, copy, modify, and distribute this software and its -documentation for any purpose and without fee is hereby granted, -provided that the above copyright notice appear in all copies and that -both that copyright notice and this permission notice appear in -supporting documentation, and that the names of Digital, FUJITSU -LIMITED and Sony Corporation not be used in advertising or publicity -pertaining to distribution of the software without specific, written -prior permission. - -DIGITAL, FUJITSU LIMITED AND SONY CORPORATION DISCLAIMS ALL WARRANTIES -WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL DIGITAL, FUJITSU LIMITED -AND SONY CORPORATION BE LIABLE FOR ANY SPECIAL, INDIRECT OR -CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF -USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR -OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THIS SOFTWARE. - - ---------------------------------------- - - -Copyright 1991 by the Open Software Foundation - -Permission to use, copy, modify, distribute, and sell this software and its -documentation for any purpose is hereby granted without fee, provided that -the above copyright notice appear in all copies and that both that -copyright notice and this permission notice appear in supporting -documentation, and that the name of Open Software Foundation -not be used in advertising or publicity pertaining to distribution of the -software without specific, written prior permission. Open Software -Foundation makes no representations about the suitability of this -software for any purpose. It is provided "as is" without express or -implied warranty. - -OPEN SOFTWARE FOUNDATION DISCLAIMS ALL WARRANTIES WITH REGARD TO -THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS, IN NO EVENT SHALL OPEN SOFTWARE FOUNDATIONN BE -LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN -ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF -OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - - ---------------------------------------- - -Copyright 1990, 1991, 1992,1993, 1994 by FUJITSU LIMITED -Copyright 1993, 1994 by Sony Corporation - -Permission to use, copy, modify, distribute, and sell this software and -its documentation for any purpose is hereby granted without fee, provided -that the above copyright notice appear in all copies and that both that -copyright notice and this permission notice appear in supporting -documentation, and that the name of FUJITSU LIMITED and Sony Corporation -not be used in advertising or publicity pertaining to distribution of the -software without specific, written prior permission. FUJITSU LIMITED and -Sony Corporation makes no representations about the suitability of this -software for any purpose. It is provided "as is" without express or -implied warranty. - -FUJITSU LIMITED AND SONY CORPORATION DISCLAIMS ALL WARRANTIES WITH REGARD -TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS, IN NO EVENT SHALL FUJITSU LIMITED OR SONY CORPORATION BE LIABLE -FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER -RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, -NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE -USE OR PERFORMANCE OF THIS SOFTWARE. - - ---------------------------------------- - -Copyright (c) 1993, 1995 by Silicon Graphics Computer Systems, Inc. - -Permission to use, copy, modify, and distribute this -software and its documentation for any purpose and without -fee is hereby granted, provided that the above copyright -notice appear in all copies and that both that copyright -notice and this permission notice appear in supporting -documentation, and that the name of Silicon Graphics not be -used in advertising or publicity pertaining to distribution -of the software without specific prior written permission. -Silicon Graphics makes no representation about the suitability -of this software for any purpose. It is provided "as is" -without any express or implied warranty. - -SILICON GRAPHICS DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS -SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY -AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL SILICON -GRAPHICS BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL -DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE -OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH -THE USE OR PERFORMANCE OF THIS SOFTWARE. - - ---------------------------------------- - -Copyright 1991, 1992, 1993, 1994 by FUJITSU LIMITED -Copyright 1993 by Digital Equipment Corporation - -Permission to use, copy, modify, distribute, and sell this software -and its documentation for any purpose is hereby granted without fee, -provided that the above copyright notice appear in all copies and that -both that copyright notice and this permission notice appear in -supporting documentation, and that the name of FUJITSU LIMITED and -Digital Equipment Corporation not be used in advertising or publicity -pertaining to distribution of the software without specific, written -prior permission. FUJITSU LIMITED and Digital Equipment Corporation -makes no representations about the suitability of this software for -any purpose. It is provided "as is" without express or implied -warranty. - -FUJITSU LIMITED AND DIGITAL EQUIPMENT CORPORATION DISCLAIM ALL -WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL -FUJITSU LIMITED AND DIGITAL EQUIPMENT CORPORATION BE LIABLE FOR -ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER -IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, -ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF -THIS SOFTWARE. - - ---------------------------------------- - -Copyright 1992, 1993 by FUJITSU LIMITED -Copyright 1993 by Fujitsu Open Systems Solutions, Inc. -Copyright 1994 by Sony Corporation - -Permission to use, copy, modify, distribute and sell this software -and its documentation for any purpose is hereby granted without fee, -provided that the above copyright notice appear in all copies and -that both that copyright notice and this permission notice appear -in supporting documentation, and that the name of FUJITSU LIMITED, -Fujitsu Open Systems Solutions, Inc. and Sony Corporation not be -used in advertising or publicity pertaining to distribution of the -software without specific, written prior permission. -FUJITSU LIMITED, Fujitsu Open Systems Solutions, Inc. and -Sony Corporation make no representations about the suitability of -this software for any purpose. It is provided "as is" without -express or implied warranty. - -FUJITSU LIMITED, FUJITSU OPEN SYSTEMS SOLUTIONS, INC. AND SONY -CORPORATION DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, -INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, -IN NO EVENT SHALL FUJITSU OPEN SYSTEMS SOLUTIONS, INC., FUJITSU LIMITED -AND SONY CORPORATION BE LIABLE FOR ANY SPECIAL, INDIRECT OR -CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS -OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE -OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE -OR PERFORMANCE OF THIS SOFTWARE. - - ---------------------------------------- - -Copyright 1987, 1988, 1990, 1993 by Digital Equipment Corporation, -Maynard, Massachusetts, - - All Rights Reserved - -Permission to use, copy, modify, and distribute this software and its -documentation for any purpose and without fee is hereby granted, -provided that the above copyright notice appear in all copies and that -both that copyright notice and this permission notice appear in -supporting documentation, and that the name of Digital not be -used in advertising or publicity pertaining to distribution of the -software without specific, written prior permission. - -DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING -ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL -DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR -ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, -WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, -ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS -SOFTWARE. - - ---------------------------------------- - -Copyright 1993 by SunSoft, Inc. -Copyright 1999-2000 by Bruno Haible - -Permission to use, copy, modify, distribute, and sell this software -and its documentation for any purpose is hereby granted without fee, -provided that the above copyright notice appear in all copies and -that both that copyright notice and this permission notice appear -in supporting documentation, and that the names of SunSoft, Inc. and -Bruno Haible not be used in advertising or publicity pertaining to -distribution of the software without specific, written prior -permission. SunSoft, Inc. and Bruno Haible make no representations -about the suitability of this software for any purpose. It is -provided "as is" without express or implied warranty. - -SunSoft Inc. AND Bruno Haible DISCLAIM ALL WARRANTIES WITH REGARD -TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY -AND FITNESS, IN NO EVENT SHALL SunSoft, Inc. OR Bruno Haible BE LIABLE -FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN -ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT -OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - - ---------------------------------------- - -Copyright 1991 by the Open Software Foundation -Copyright 1993 by the TOSHIBA Corp. - -Permission to use, copy, modify, distribute, and sell this software and its -documentation for any purpose is hereby granted without fee, provided that -the above copyright notice appear in all copies and that both that -copyright notice and this permission notice appear in supporting -documentation, and that the names of Open Software Foundation and TOSHIBA -not be used in advertising or publicity pertaining to distribution of the -software without specific, written prior permission. Open Software -Foundation and TOSHIBA make no representations about the suitability of this -software for any purpose. It is provided "as is" without express or -implied warranty. - -OPEN SOFTWARE FOUNDATION AND TOSHIBA DISCLAIM ALL WARRANTIES WITH REGARD TO -THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS, IN NO EVENT SHALL OPEN SOFTWARE FOUNDATIONN OR TOSHIBA BE -LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN -ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF -OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - - ---------------------------------------- - -Copyright 1988 by Wyse Technology, Inc., San Jose, Ca., - - All Rights Reserved - -Permission to use, copy, modify, and distribute this software and its -documentation for any purpose and without fee is hereby granted, -provided that the above copyright notice appear in all copies and that -both that copyright notice and this permission notice appear in -supporting documentation, and that the name Wyse not be -used in advertising or publicity pertaining to distribution of the -software without specific, written prior permission. - -WYSE DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING -ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL -DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR -ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, -WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, -ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS -SOFTWARE. - - ---------------------------------------- - - -Copyright 1991 by the Open Software Foundation -Copyright 1993, 1994 by the Sony Corporation - -Permission to use, copy, modify, distribute, and sell this software and its -documentation for any purpose is hereby granted without fee, provided that -the above copyright notice appear in all copies and that both that -copyright notice and this permission notice appear in supporting -documentation, and that the names of Open Software Foundation and -Sony Corporation not be used in advertising or publicity pertaining to -distribution of the software without specific, written prior permission. -Open Software Foundation and Sony Corporation make no -representations about the suitability of this software for any purpose. -It is provided "as is" without express or implied warranty. - -OPEN SOFTWARE FOUNDATION AND SONY CORPORATION DISCLAIM ALL -WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL OPEN -SOFTWARE FOUNDATIONN OR SONY CORPORATION BE LIABLE FOR ANY SPECIAL, -INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM -LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE -OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THIS SOFTWARE. - - ---------------------------------------- - -Copyright 1992, 1993 by FUJITSU LIMITED -Copyright 1993 by Fujitsu Open Systems Solutions, Inc. - -Permission to use, copy, modify, distribute and sell this software -and its documentation for any purpose is hereby granted without fee, -provided that the above copyright notice appear in all copies and -that both that copyright notice and this permission notice appear -in supporting documentation, and that the name of FUJITSU LIMITED and -Fujitsu Open Systems Solutions, Inc. not be used in advertising or -publicity pertaining to distribution of the software without specific, -written prior permission. -FUJITSU LIMITED and Fujitsu Open Systems Solutions, Inc. makes no -representations about the suitability of this software for any purpose. -It is provided "as is" without express or implied warranty. - -FUJITSU LIMITED AND FUJITSU OPEN SYSTEMS SOLUTIONS, INC. DISCLAIMS ALL -WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES -OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL FUJITSU OPEN SYSTEMS -SOLUTIONS, INC. AND FUJITSU LIMITED BE LIABLE FOR ANY SPECIAL, INDIRECT -OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF -USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE -OF THIS SOFTWARE. - - ---------------------------------------- - -Copyright 1993, 1994 by Sony Corporation - -Permission to use, copy, modify, distribute, and sell this software -and its documentation for any purpose is hereby granted without fee, -provided that the above copyright notice appear in all copies and -that both that copyright notice and this permission notice appear -in supporting documentation, and that the name of Sony Corporation -not be used in advertising or publicity pertaining to distribution -of the software without specific, written prior permission. -Sony Corporation makes no representations about the suitability of -this software for any purpose. It is provided "as is" without -express or implied warranty. - -SONY CORPORATION DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, -INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO -EVENT SHALL SONY CORPORATION BE LIABLE FOR ANY SPECIAL, INDIRECT OR -CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF -USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR -OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THIS SOFTWARE. - - ---------------------------------------- - -Copyright 1986, 1998 The Open Group -Copyright (c) 2000 The XFree86 Project, Inc. - -Permission to use, copy, modify, distribute, and sell this software and its -documentation for any purpose is hereby granted without fee, provided that -the above copyright notice appear in all copies and that both that -copyright notice and this permission notice appear in supporting -documentation. - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -X CONSORTIUM OR THE XFREE86 PROJECT BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - -Except as contained in this notice, the name of the X Consortium or of the -XFree86 Project shall not be used in advertising or otherwise to promote the -sale, use or other dealings in this Software without prior written -authorization from the X Consortium and the XFree86 Project. - - ---------------------------------------- - -Copyright 1990, 1991 by OMRON Corporation, NTT Software Corporation, - and Nippon Telegraph and Telephone Corporation -Copyright 1991 by the Open Software Foundation -Copyright 1993 by the FUJITSU LIMITED - -Permission to use, copy, modify, distribute, and sell this software and its -documentation for any purpose is hereby granted without fee, provided that -the above copyright notice appear in all copies and that both that -copyright notice and this permission notice appear in supporting -documentation, and that the names of OMRON, NTT Software, NTT, and -Open Software Foundation not be used in advertising or publicity -pertaining to distribution of the software without specific, -written prior permission. OMRON, NTT Software, NTT, and Open Software -Foundation make no representations about the suitability of this -software for any purpose. It is provided "as is" without express or -implied warranty. - -OMRON, NTT SOFTWARE, NTT, AND OPEN SOFTWARE FOUNDATION -DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING -ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT -SHALL OMRON, NTT SOFTWARE, NTT, OR OPEN SOFTWARE FOUNDATION BE -LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN -ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF -OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - - ---------------------------------------- - -Copyright 1988 by Wyse Technology, Inc., San Jose, Ca, -Copyright 1987 by Digital Equipment Corporation, Maynard, Massachusetts, - - All Rights Reserved - -Permission to use, copy, modify, and distribute this software and its -documentation for any purpose and without fee is hereby granted, -provided that the above copyright notice appear in all copies and that -both that copyright notice and this permission notice appear in -supporting documentation, and that the name Digital not be -used in advertising or publicity pertaining to distribution of the -software without specific, written prior permission. - -DIGITAL AND WYSE DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, -INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO -EVENT SHALL DIGITAL OR WYSE BE LIABLE FOR ANY SPECIAL, INDIRECT OR -CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF -USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR -OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THIS SOFTWARE. - - ---------------------------------------- - - -Copyright 1991, 1992 by Fuji Xerox Co., Ltd. -Copyright 1992, 1993, 1994 by FUJITSU LIMITED - -Permission to use, copy, modify, distribute, and sell this software -and its documentation for any purpose is hereby granted without fee, -provided that the above copyright notice appear in all copies and -that both that copyright notice and this permission notice appear -in supporting documentation, and that the name of Fuji Xerox, -FUJITSU LIMITED not be used in advertising or publicity pertaining -to distribution of the software without specific, written prior -permission. Fuji Xerox, FUJITSU LIMITED make no representations -about the suitability of this software for any purpose. -It is provided "as is" without express or implied warranty. - -FUJI XEROX, FUJITSU LIMITED DISCLAIM ALL WARRANTIES WITH -REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL FUJI XEROX, -FUJITSU LIMITED BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL -DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA -OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THIS SOFTWARE. - - ---------------------------------------- - -Copyright 2006 Josh Triplett - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS -OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -IN NO EVENT SHALL THE X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR -OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, -ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR -OTHER DEALINGS IN THE SOFTWARE. - - ---------------------------------------- - -(c) Copyright 1996 by Sebastien Marineau and Holger Veit - - - -Permission is hereby granted, free of charge, to any person obtaining a -copy of this software and associated documentation files (the "Software"), -to deal in the Software without restriction, including without limitation -the rights to use, copy, modify, merge, publish, distribute, sublicense, -and/or sell copies of the Software, and to permit persons to whom the -Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL -HOLGER VEIT BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, -WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF -OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - -Except as contained in this notice, the name of Sebastien Marineau or Holger Veit -shall not be used in advertising or otherwise to promote the sale, use or other -dealings in this Software without prior written authorization from Holger Veit or -Sebastien Marineau. - - ---------------------------------------- - -Copyright 1990, 1991 by OMRON Corporation, NTT Software Corporation, - and Nippon Telegraph and Telephone Corporation -Copyright 1991 by the Open Software Foundation -Copyright 1993 by the TOSHIBA Corp. -Copyright 1993, 1994 by Sony Corporation -Copyright 1993, 1994 by the FUJITSU LIMITED - -Permission to use, copy, modify, distribute, and sell this software and its -documentation for any purpose is hereby granted without fee, provided that -the above copyright notice appear in all copies and that both that -copyright notice and this permission notice appear in supporting -documentation, and that the names of OMRON, NTT Software, NTT, Open -Software Foundation, and Sony Corporation not be used in advertising -or publicity pertaining to distribution of the software without specific, -written prior permission. OMRON, NTT Software, NTT, Open Software -Foundation, and Sony Corporation make no representations about the -suitability of this software for any purpose. It is provided "as is" -without express or implied warranty. - -OMRON, NTT SOFTWARE, NTT, OPEN SOFTWARE FOUNDATION, AND SONY -CORPORATION DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING -ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT -SHALL OMRON, NTT SOFTWARE, NTT, OPEN SOFTWARE FOUNDATION, OR SONY -CORPORATION BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR -ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER -IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT -OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - - ---------------------------------------- - -Copyright 2000 by Bruno Haible - -Permission to use, copy, modify, distribute, and sell this software -and its documentation for any purpose is hereby granted without fee, -provided that the above copyright notice appear in all copies and -that both that copyright notice and this permission notice appear -in supporting documentation, and that the name of Bruno Haible not -be used in advertising or publicity pertaining to distribution of the -software without specific, written prior permission. Bruno Haible -makes no representations about the suitability of this software for -any purpose. It is provided "as is" without express or implied -warranty. - -Bruno Haible DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, -INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN -NO EVENT SHALL Bruno Haible BE LIABLE FOR ANY SPECIAL, INDIRECT OR -CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS -OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE -OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE -OR PERFORMANCE OF THIS SOFTWARE. - - ---------------------------------------- - -Copyright © 2003 Keith Packard - -Permission to use, copy, modify, distribute, and sell this software and its -documentation for any purpose is hereby granted without fee, provided that -the above copyright notice appear in all copies and that both that -copyright notice and this permission notice appear in supporting -documentation, and that the name of Keith Packard not be used in -advertising or publicity pertaining to distribution of the software without -specific, written prior permission. Keith Packard makes no -representations about the suitability of this software for any purpose. It -is provided "as is" without express or implied warranty. - -KEITH PACKARD DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, -INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO -EVENT SHALL KEITH PACKARD BE LIABLE FOR ANY SPECIAL, INDIRECT OR -CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THIS SOFTWARE. - - ---------------------------------------- - -Copyright (c) 2007-2009, Troy D. Hanson -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - -Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS -IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED -TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A -PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER -OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, -EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, -PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - ---------------------------------------- - -Copyright 1992, 1993 by TOSHIBA Corp. - -Permission to use, copy, modify, and distribute this software and its -documentation for any purpose and without fee is hereby granted, provided -that the above copyright notice appear in all copies and that both that -copyright notice and this permission notice appear in supporting -documentation, and that the name of TOSHIBA not be used in advertising -or publicity pertaining to distribution of the software without specific, -written prior permission. TOSHIBA make no representations about the -suitability of this software for any purpose. It is provided "as is" -without express or implied warranty. - -TOSHIBA DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING -ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL -TOSHIBA BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR -ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, -WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, -ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS -SOFTWARE. - - - ---------------------------------------- - -Copyright IBM Corporation 1993 - -All Rights Reserved - -License to use, copy, modify, and distribute this software and its -documentation for any purpose and without fee is hereby granted, -provided that the above copyright notice appear in all copies and that -both that copyright notice and this permission notice appear in -supporting documentation, and that the name of IBM not be -used in advertising or publicity pertaining to distribution of the -software without specific, written prior permission. - -IBM DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING -ALL IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS, AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS, IN NO EVENT SHALL -IBM BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR -ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, -WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, -ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS -SOFTWARE. - - ---------------------------------------- - -Copyright 1990, 1991 by OMRON Corporation, NTT Software Corporation, - and Nippon Telegraph and Telephone Corporation - -Permission to use, copy, modify, distribute, and sell this software and its -documentation for any purpose is hereby granted without fee, provided that -the above copyright notice appear in all copies and that both that -copyright notice and this permission notice appear in supporting -documentation, and that the names of OMRON, NTT Software, and NTT -not be used in advertising or publicity pertaining to distribution of the -software without specific, written prior permission. OMRON, NTT Software, -and NTT make no representations about the suitability of this -software for any purpose. It is provided "as is" without express or -implied warranty. - -OMRON, NTT SOFTWARE, AND NTT, DISCLAIM ALL WARRANTIES WITH REGARD -TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY -AND FITNESS, IN NO EVENT SHALL OMRON, NTT SOFTWARE, OR NTT, BE -LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN -ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF -OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - - ----------------------------------------- -libxau6 version 1:1.0.8-1+b2 - - -Copyright: - -This package was downloaded from -http://xorg.freedesktop.org/releases/individual/lib/ - -Copyright 1988, 1998 The Open Group - -Permission to use, copy, modify, distribute, and sell this software and its -documentation for any purpose is hereby granted without fee, provided that -the above copyright notice appear in all copies and that both that -copyright notice and this permission notice appear in supporting -documentation. - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN -AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN -CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -Except as contained in this notice, the name of The Open Group shall not be -used in advertising or otherwise to promote the sale, use or other dealings -in this Software without prior written authorization from The Open Group. - - ----------------------------------------- -libxaw7 version 2:1.0.13-1+b2 - - -Copyright: - -This package was downloaded from -http://xorg.freedesktop.org/releases/individual/lib/ - -Copyright 1985-1990, 1994, 1998 The Open Group -Copyright 2003-2004 Roland Mainz - -Permission to use, copy, modify, distribute, and sell this software and its -documentation for any purpose is hereby granted without fee, provided that -the above copyright notice appear in all copies and that both that -copyright notice and this permission notice appear in supporting -documentation. - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN -AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN -CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -Except as contained in this notice, the name of The Open Group shall not be -used in advertising or otherwise to promote the sale, use or other dealings -in this Software without prior written authorization from The Open Group. - - -Copyright (c) 1998-1999 by The XFree86 Project, Inc. - -Permission is hereby granted, free of charge, to any person obtaining a -copy of this software and associated documentation files (the "Software"), -to deal in the Software without restriction, including without limitation -the rights to use, copy, modify, merge, publish, distribute, sublicense, -and/or sell copies of the Software, and to permit persons to whom the -Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL -THE XFREE86 PROJECT BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, -WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF -OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - -Except as contained in this notice, the name of the XFree86 Project shall -not be used in advertising or otherwise to promote the sale, use or other -dealings in this Software without prior written authorization from the -XFree86 Project. - - -Copyright 1991 by OMRON Corporation - -Permission to use, copy, modify, distribute, and sell this software and its -documentation for any purpose is hereby granted without fee, provided that -the above copyright notice appear in all copies and that both that -copyright notice and this permission notice appear in supporting -documentation, and that the name of OMRON not be used in advertising or -publicity pertaining to distribution of the software without specific, -written prior permission. OMRON makes no representations about the -suitability of this software for any purpose. It is provided "as is" -without express or implied warranty. - -OMRON DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING -ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL -OMRON BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR -ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, -WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTUOUS ACTION, -ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS -SOFTWARE. - - -Copyright 1987-1998 by Digital Equipment Corporation, Maynard, Massachusetts. -All Rights Reserved - -Permission to use, copy, modify, and distribute this software and its -documentation for any purpose and without fee is hereby granted, -provided that the above copyright notice appear in all copies and that -both that copyright notice and this permission notice appear in -supporting documentation, and that the name of Digital not be -used in advertising or publicity pertaining to distribution of the -software without specific, written prior permission. - -DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING -ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL -DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR -ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, -WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, -ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS -SOFTWARE. - - -Copyright 1989 Prentice Hall - -Permission to use, copy, modify, and distribute this software for any -purpose and without fee is hereby granted, provided that the above -copyright notice appear in all copies and that both the copyright notice -and this permission notice appear in supporting documentation. - -Prentice Hall and the authors disclaim all warranties with regard -to this software, including all implied warranties of merchantability and -fitness. In no event shall Prentice Hall or the authors be liable -for any special, indirect or cosequential damages or any damages whatsoever -resulting from loss of use, data or profits, whether in an action of -contract, negligence or other tortious action, arising out of or in -connection with the use or performance of this software. - - -(c) Copyright 2003 Danny Backx -(c) Copyright 2003-2004 Roland Mainz - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER -IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN -CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -Except as contained in this notice, the names of the copyright holders shall -not be used in advertising or otherwise to promote the sale, use or other -dealings in this Software without prior written authorization from said -copyright holders. - - - -Copyright 1985, 1986, 1987, 1988, 1989, 1991, 1994 X Consortium - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the ``Software''), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED ``AS IS'', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN -AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN -CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -Except as contained in this notice, the name of the X Consortium shall not be -used in advertising or otherwise to promote the sale, use or other dealings -in this Software without prior written authorization from the X Consortium. - -Copyright 1985, 1986, 1987, 1988, 1989, 1991 -Digital Equipment Corporation, Maynard, Massachusetts. - -Permission to use, copy, modify and distribute this documentation for any -purpose and without fee is hereby granted, provided that the above copyright -notice appears in all copies and that both that copyright notice and this -permission notice appear in supporting documentation, and that the name of -Digital not be used in in advertising or publicity pertaining -to distribution of the software without specific, written prior permission. -Digital makes no representations about the suitability of the -software described herein for any purpose. -It is provided ``as is'' without express or implied warranty. - - ----------------------------------------- -libxcb1 version 1.13.1-2 - - -Copyright: - -This package was debianized by Jamey Sharp on -Thu, 18 Mar 2004 00:48:42 -0800, and later updated by Josh Triplett -. The package is co-maintained by the XCB developers -via the XCB mailing list . - -It was downloaded from https://xcb.freedesktop.org/dist - -Upstream Authors: Jamey Sharp - Josh Triplett - -Copyright: - -Copyright (C) 2001-2006 Bart Massey, Jamey Sharp, and Josh Triplett. -All Rights Reserved. - -Permission is hereby granted, free of charge, to any person -obtaining a copy of this software and associated -documentation files (the "Software"), to deal in the -Software without restriction, including without limitation -the rights to use, copy, modify, merge, publish, distribute, -sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, -subject to the following conditions: - -The above copyright notice and this permission notice shall -be included in all copies or substantial portions of the -Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY -KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR -PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS -BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER -IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR -OTHER DEALINGS IN THE SOFTWARE. - -Except as contained in this notice, the names of the authors -or their institutions shall not be used in advertising or -otherwise to promote the sale, use or other dealings in this -Software without prior written authorization from the -authors. - - ----------------------------------------- -libxdmcp6 version 1:1.1.2-3 - - -Copyright: - -This package was downloaded from -http://xorg.freedesktop.org/releases/individual/lib/ - -Copyright 1989, 1998 The Open Group - -Permission to use, copy, modify, distribute, and sell this software and its -documentation for any purpose is hereby granted without fee, provided that -the above copyright notice appear in all copies and that both that -copyright notice and this permission notice appear in supporting -documentation. - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN -AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN -CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -Except as contained in this notice, the name of The Open Group shall not be -used in advertising or otherwise to promote the sale, use or other dealings -in this Software without prior written authorization from The Open Group. - -Author: Keith Packard, MIT X Consortium - - ----------------------------------------- -libxext6 version 2:1.3.3-1+b2 - - -Copyright: - -This package was downloaded from -http://xorg.freedesktop.org/releases/individual/lib/ - -Copyright 1986, 1987, 1988, 1989, 1994, 1998 The Open Group - -Permission to use, copy, modify, distribute, and sell this software and its -documentation for any purpose is hereby granted without fee, provided that -the above copyright notice appear in all copies and that both that -copyright notice and this permission notice appear in supporting -documentation. - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN -AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN -CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -Except as contained in this notice, the name of The Open Group shall not be -used in advertising or otherwise to promote the sale, use or other dealings -in this Software without prior written authorization from The Open Group. - -Copyright (c) 1996 Digital Equipment Corporation, Maynard, Massachusetts. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software. - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL -DIGITAL EQUIPMENT CORPORATION BE LIABLE FOR ANY CLAIM, DAMAGES, INCLUDING, -BUT NOT LIMITED TO CONSEQUENTIAL OR INCIDENTAL DAMAGES, OR OTHER LIABILITY, -WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR -IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -Except as contained in this notice, the name of Digital Equipment Corporation -shall not be used in advertising or otherwise to promote the sale, use or other -dealings in this Software without prior written authorization from Digital -Equipment Corporation. - -Copyright (c) 1997 by Silicon Graphics Computer Systems, Inc. -Permission to use, copy, modify, and distribute this -software and its documentation for any purpose and without -fee is hereby granted, provided that the above copyright -notice appear in all copies and that both that copyright -notice and this permission notice appear in supporting -documentation, and that the name of Silicon Graphics not be -used in advertising or publicity pertaining to distribution -of the software without specific prior written permission. -Silicon Graphics makes no representation about the suitability -of this software for any purpose. It is provided "as is" -without any express or implied warranty. -SILICON GRAPHICS DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS -SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY -AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL SILICON -GRAPHICS BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL -DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE -OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH -THE USE OR PERFORMANCE OF THIS SOFTWARE. - -Copyright 1992 Network Computing Devices - -Permission to use, copy, modify, distribute, and sell this software and its -documentation for any purpose is hereby granted without fee, provided that -the above copyright notice appear in all copies and that both that -copyright notice and this permission notice appear in supporting -documentation, and that the name of NCD. not be used in advertising or -publicity pertaining to distribution of the software without specific, -written prior permission. NCD. makes no representations about the -suitability of this software for any purpose. It is provided "as is" -without express or implied warranty. - -NCD. DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL NCD. -BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION -OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN -CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - -Copyright 1991,1993 by Digital Equipment Corporation, Maynard, Massachusetts, -and Olivetti Research Limited, Cambridge, England. - - All Rights Reserved - -Permission to use, copy, modify, and distribute this software and its -documentation for any purpose and without fee is hereby granted, -provided that the above copyright notice appear in all copies and that -both that copyright notice and this permission notice appear in -supporting documentation, and that the names of Digital or Olivetti -not be used in advertising or publicity pertaining to distribution of the -software without specific, written prior permission. - -DIGITAL AND OLIVETTI DISCLAIM ALL WARRANTIES WITH REGARD TO THIS -SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS, IN NO EVENT SHALL THEY BE LIABLE FOR ANY SPECIAL, INDIRECT OR -CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF -USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR -OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THIS SOFTWARE. - -Copyright 1986, 1987, 1988 by Hewlett-Packard Corporation - -Permission to use, copy, modify, and distribute this -software and its documentation for any purpose and without -fee is hereby granted, provided that the above copyright -notice appear in all copies and that both that copyright -notice and this permission notice appear in supporting -documentation, and that the name of Hewlett-Packard not be used in -advertising or publicity pertaining to distribution of the -software without specific, written prior permission. - -Hewlett-Packard makes no representations about the -suitability of this software for any purpose. It is provided -"as is" without express or implied warranty. - -This software is not subject to any license of the American -Telephone and Telegraph Company or of the Regents of the -University of California. - -Copyright (c) 1994, 1995 Hewlett-Packard Company - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS -OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -IN NO EVENT SHALL HEWLETT-PACKARD COMPANY BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR -THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -Except as contained in this notice, the name of the Hewlett-Packard -Company shall not be used in advertising or otherwise to promote the -sale, use or other dealings in this Software without prior written -authorization from the Hewlett-Packard Company. - -Copyright Digital Equipment Corporation, 1996 - -Permission to use, copy, modify, distribute, and sell this -documentation for any purpose is hereby granted without fee, -provided that the above copyright notice and this permission -notice appear in all copies. Digital Equipment Corporation -makes no representations about the suitability for any purpose -of the information in this document. This documentation is -provided ``as is'' without express or implied warranty. - -Copyright (c) 1999, 2005, 2006, Oracle and/or its affiliates. All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining a -copy of this software and associated documentation files (the "Software"), -to deal in the Software without restriction, including without limitation -the rights to use, copy, modify, merge, publish, distribute, sublicense, -and/or sell copies of the Software, and to permit persons to whom the -Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice (including the next -paragraph) shall be included in all copies or substantial portions of the -Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL -THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -DEALINGS IN THE SOFTWARE. - -Copyright (c) 1989 X Consortium, Inc. and Digital Equipment Corporation. -Copyright (c) 1992 X Consortium, Inc. and Intergraph Corporation. -Copyright (c) 1993 X Consortium, Inc. and Silicon Graphics, Inc. -Copyright (c) 1994, 1995 X Consortium, Inc. and Hewlett-Packard Company. - -Permission to use, copy, modify, and distribute this documentation for -any purpose and without fee is hereby granted, provided that the above -copyright notice and this permission notice appear in all copies. -Digital Equipment Corporation, Intergraph Corporation, Silicon -Graphics, Hewlett-Packard, and the X Consortium make no -representations about the suitability for any purpose of the -information in this document. This documentation is provided ``as is'' -without express or implied warranty. - - ----------------------------------------- -libxmu6 version 2:1.1.2-2+b3 - - -Copyright: - -This package was downloaded from -http://xorg.freedesktop.org/releases/individual/lib/ - -Copyright 1989, 1998 The Open Group - -Permission to use, copy, modify, distribute, and sell this software and its -documentation for any purpose is hereby granted without fee, provided that -the above copyright notice appear in all copies and that both that -copyright notice and this permission notice appear in supporting -documentation. - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN -AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN -CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -Except as contained in this notice, the name of The Open Group shall not be -used in advertising or otherwise to promote the sale, use or other dealings -in this Software without prior written authorization from The Open Group. - ------------ - -Xmu/StrToBmap.c and Xmu/GrayPixmap.c also have: - -Copyright 1987, 1988 by Digital Equipment Corporation, Maynard, Massachusetts. - - All Rights Reserved - -Permission to use, copy, modify, and distribute this software and its -documentation for any purpose and without fee is hereby granted, -provided that the above copyright notice appear in all copies and that -both that copyright notice and this permission notice appear in -supporting documentation, and that the name of Digital not be -used in advertising or publicity pertaining to distribution of the -software without specific, written prior permission. - -DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING -ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL -DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR -ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, -WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, -ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS -SOFTWARE. - ------------ - -And Xmu/Clip.c has: - -Copyright (c) 1998 by The XFree86 Project, Inc. - -Permission is hereby granted, free of charge, to any person obtaining a -copy of this software and associated documentation files (the "Software"), -to deal in the Software without restriction, including without limitation -the rights to use, copy, modify, merge, publish, distribute, sublicense, -and/or sell copies of the Software, and to permit persons to whom the -Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL -THE XFREE86 PROJECT BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, -WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF -OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - -Except as contained in this notice, the name of the XFree86 Project shall -not be used in advertising or otherwise to promote the sale, use or other -dealings in this Software without prior written authorization from the -XFree86 Project. - - ----------------------------------------- -libxpm4 version 1:3.5.12-1 - - -Copyright: - -This package was downloaded from -https://xorg.freedesktop.org/releases/individual/lib/ - -Copyright (C) 1989-95 GROUPE BULL - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to -deal in the Software without restriction, including without limitation the -rights to use, copy, modify, merge, publish, distribute, sublicense, and/or -sell copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL -GROUPE BULL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN -AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN -CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -Except as contained in this notice, the name of GROUPE BULL shall not be -used in advertising or otherwise to promote the sale, use or other dealings -in this Software without prior written authorization from GROUPE BULL. - -Copyright (C) 1998 Arnaud LE HORS - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to -deal in the Software without restriction, including without limitation the -rights to use, copy, modify, merge, publish, distribute, sublicense, and/or -sell copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL -Arnaud LE HORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER -IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN -CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -Except as contained in this notice, the name of Arnaud LE HORS shall not be -used in advertising or otherwise to promote the sale, use or other dealings -in this Software without prior written authorization from Arnaud LE HORS. - -Copyright (C) 19896 Lorens Younes - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to -deal in the Software without restriction, including without limitation the -rights to use, copy, modify, merge, publish, distribute, sublicense, and/or -sell copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL -Lorens Younes BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER -IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN -CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -Except as contained in this notice, the name of Lorens Younes shall not be -used in advertising or otherwise to promote the sale, use or other dealings -in this Software without prior written authorization from Lorens Younes. - - ----------------------------------------- -libxt6 version 1:1.1.5-1+b3 - - -Copyright: - -This package was downloaded from -http://xorg.freedesktop.org/releases/individual/lib/ - - -Copyright © 2001,2003 Keith Packard - -Permission to use, copy, modify, distribute, and sell this software and its -documentation for any purpose is hereby granted without fee, provided that -the above copyright notice appear in all copies and that both that -copyright notice and this permission notice appear in supporting -documentation, and that the name of Keith Packard not be used in -advertising or publicity pertaining to distribution of the software without -specific, written prior permission. Keith Packard makes no -representations about the suitability of this software for any purpose. It -is provided "as is" without express or implied warranty. - -KEITH PACKARD DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, -INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO -EVENT SHALL KEITH PACKARD BE LIABLE FOR ANY SPECIAL, INDIRECT OR -CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THIS SOFTWARE. - -Copyright (c) 1993, 2011, Oracle and/or its affiliates. All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining a -copy of this software and associated documentation files (the "Software"), -to deal in the Software without restriction, including without limitation -the rights to use, copy, modify, merge, publish, distribute, sublicense, -and/or sell copies of the Software, and to permit persons to whom the -Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice (including the next -paragraph) shall be included in all copies or substantial portions of the -Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL -THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -DEALINGS IN THE SOFTWARE. - - -Copyright 1987, 1988 by Digital Equipment Corporation, Maynard, Massachusetts, - - All Rights Reserved - -Permission to use, copy, modify, and distribute this software and its -documentation for any purpose and without fee is hereby granted, -provided that the above copyright notice appear in all copies and that -both that copyright notice and this permission notice appear in -supporting documentation, and that the name of Digital not be -used in advertising or publicity pertaining to distribution of the -software without specific, written prior permission. - -DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING -ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL -DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR -ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, -WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, -ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS -SOFTWARE. - -Copyright 1987, 1988, 1998 The Open Group - -Permission to use, copy, modify, distribute, and sell this software and its -documentation for any purpose is hereby granted without fee, provided that -the above copyright notice appear in all copies and that both that -copyright notice and this permission notice appear in supporting -documentation. - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN -AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN -CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -Except as contained in this notice, the name of The Open Group shall not be -used in advertising or otherwise to promote the sale, use or other dealings -in this Software without prior written authorization from The Open Group. - - -Copyright (c) 1993, 1994 X Consortium - -Permission is hereby granted, free of charge, to any person obtaining a -copy of this software and associated documentation files (the "Software"), -to deal in the Software without restriction, including without limitation -the rights to use, copy, modify, merge, publish, distribute, sublicense, -and/or sell copies of the Software, and to permit persons to whom the -Software furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL -THE X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, -WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF -OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - -Except as contained in this notice, the name of the X Consortium shall not -be used in advertising or otherwise to promote the sale, use or other -dealing in this Software without prior written authorization from the -X Consortium. - - ----------------------------------------- -libxtables12 version 1.8.2-4 - - -Copyright: - -Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ -Upstream-Name: iptables -Upstream-Contact: Netfilter Developer List -Source: https://www.netfilter.org/ - -Files: * -Copyright: 2000-2002, the netfilter coreteam - Paul 'Rusty' Russell - Marc Boucher - James Morris - Harald Welte - Jozsef Kadlecsik -License: GPL-2 - -Files: extensions/libebt_802_3.c -Copyright: 2003 Chris Vitale -License: GPL-2 - -Files: extensions/libebt_ip.c extensions/libebt_log.c extensions/libebt_mark*.c -Copyright: 2002 Bart De Schuymer -License: GPL-2 - -Files: extensions/libebt_limit.c -Copyright: 2003 Tom Marshall -License: GPL-2 - -Files: extensions/libebt_nflog.c -Copyright: 2008 Peter Warasin -License: GPL-2 - -Files: extensions/libip6t_DNAT.c -Copyright: 2011, Patrick McHardy -License: GPL-2 - -Files: extensions/libip6t_DNPT.c -Copyright: 2012-2013, Patrick McHardy -License: GPL-2 - -Files: extensions/libip6t_MASQUERADE.c -Copyright: 2011, Patrick McHardy -License: GPL-2 - -Files: extensions/libip6t_NETMAP.c -Copyright: 2011, Patrick McHardy -License: GPL-2 - -Files: extensions/libip6t_REDIRECT.c -Copyright: 2011, Patrick McHardy -License: GPL-2 - -Files: extensions/libip6t_REJECT.c -Copyright: 2000, Jozsef Kadlecsik -License: GPL-2 - -Files: extensions/libip6t_SNAT.c -Copyright: 2011, Patrick McHardy -License: GPL-2 - -Files: extensions/libip6t_SNPT.c -Copyright: 2012-2013, Patrick McHardy -License: GPL-2 - -Files: extensions/libip6t_mh.c -Copyright: 2006, USAGI/WIDE Project -License: GPL-2 - -Files: extensions/libipt_CLUSTERIP.c -Copyright: 2003, Harald Welte -License: GPL-2 - -Files: extensions/libipt_ECN.c -Copyright: 2002, by Harald Welte -License: GPL-2 - -Files: extensions/libipt_REJECT.c -Copyright: 2000, Jozsef Kadlecsik -License: GPL-2 - -Files: extensions/libipt_TTL.c -Copyright: 2000, Harald Welte -License: GPL-2 - -Files: extensions/libipt_ULOG.c -Copyright: 2000, Harald Welte -License: GPL-2 - -Files: extensions/libipt_ttl.c -Copyright: 2000, Harald Welte -License: GPL-2 - -Files: extensions/libxt_AUDIT.c -Copyright: 2010-2011, Thomas Graf - 2010-2011, Red Hat, Inc. -License: GPL-2 - -Files: extensions/libxt_CHECKSUM.c -Copyright: 2002, Harald Welte - 2010, Red Hat, Inc -License: GPL-2 - -Files: extensions/libxt_CLASSIFY.c -Copyright: 2003-2013, Patrick McHardy -License: GPL-2 - -Files: extensions/libxt_CONNMARK.c -Copyright: 2002, 2004, MARA Systems AB by Henrik Nordstrom -License: GPL-2 - -Files: extensions/libxt_CONNSECMARK.c -Copyright: 2006, Red Hat, Inc., James Morris -License: GPL-2 - -Files: extensions/libxt_CT.c -Copyright: 2010-2013, Patrick McHardy -License: GPL-2 - -Files: extensions/libxt_DSCP.c -Copyright: 2000-2002, Matthew G. Marsh - Harald Welte -License: GPL-2 - -Files: extensions/libxt_HMARK.c -Copyright: 2012, Hans Schillstrom - 2012, Pablo Neira Ayuso -License: GPL-2 - -Files: extensions/libxt_IDLETIMER.c -Copyright: 2010, Nokia Corporation -License: GPL-2 - -Files: extensions/libxt_LED.c -Copyright: 2008, Adam Nielsen -License: GPL-2 - -Files: extensions/libxt_NFQUEUE.c -Copyright: 2005, by Harald Welte -License: GPL-2 - -Files: extensions/libxt_RATEEST.c -Copyright: 2008-2013, Patrick McHardy -License: GPL-2 - -Files: extensions/libxt_SECMARK.c -Copyright: 2006, Red Hat, Inc., James Morris -License: GPL-2 - -Files: extensions/libxt_SET.c -Copyright: 2000-2002, Joakim Axelsson - Patrick Schaaf - Martin Josefsson - 2003-2010, Jozsef Kadlecsik -License: GPL-2 - -Files: extensions/libxt_SYNPROXY.c -Copyright: 2013, Patrick McHardy -License: GPL-2 - -Files: extensions/libxt_TCPMSS.c -Copyright: 2000, Marc Boucher -License: GPL-2 - -Files: extensions/libxt_TCPOPTSTRIP.c -Copyright: 2007, Sven Schnelle - 2007, CC Computer Consultants GmbH -License: GPL-2 - -Files: extensions/libxt_TEE.c -Copyright: 2007, Sebastian Claßen - 2007-2010, Jan Engelhardt -License: GPL-2 - -Files: extensions/libxt_TOS.c -Copyright: 2007, CC Computer Consultants GmbH -License: GPL-2 - -Files: extensions/libxt_TPROXY.c -Copyright: 2002-2008, BalaBit IT Ltd. -License: GPL-2 - -Files: extensions/libxt_addrtype.c -Copyright: 2003-2013, Patrick McHardy -License: GPL-2 - -Files: extensions/libxt_bpf.c -Copyright: 2013, Google, Inc. -License: GPL-2 - -Files: extensions/libxt_cluster.c -Copyright: 2009, Pablo Neira Ayuso -License: GPL-2 - -Files: extensions/libxt_connmark.c -Copyright: 2002, 2004, MARA Systems AB by Henrik Nordstrom -License: GPL-2 - -Files: extensions/libxt_conntrack.c -Copyright: 2001, Marc Boucher (marc@mbsi.ca). - 2007-2008, CC Computer Consultants GmbH -License: GPL-2 - -Files: extensions/libxt_dccp.c -Copyright: 2005, by Harald Welte -License: GPL-2 - -Files: extensions/libxt_devgroup.c -Copyright: 2011, Patrick McHardy -License: GPL-2 - -Files: extensions/libxt_dscp.c -Copyright: 2002, Harald Welte -License: GPL-2 - -Files: extensions/libxt_ecn.c -Copyright: 2002, Harald Welte - 2011, Patrick McHardy -License: GPL-2 - -Files: extensions/libxt_hashlimit.c -Copyright: 2003-2004, Harald Welte -License: GPL-2 - -Files: extensions/libxt_osf.c -Copyright: 2003+, Evgeniy Polyakov -License: GPL-2 - -Files: extensions/libxt_owner.c -Copyright: 2007-2008, CC Computer Consultants GmbH -License: GPL-2 - -Files: extensions/libxt_policy.c -Copyright: 2005-2013, Patrick McHardy -License: GPL-2 - -Files: extensions/libxt_rateest.c -Copyright: 2008-2013, Patrick McHardy -License: GPL-2 - -Files: extensions/libxt_sctp.c -Copyright: 2003, Harald Welte -License: GPL-2 - -Files: extensions/libxt_set.c -Copyright: 2000-2002, Joakim Axelsson - Patrick Schaaf - Martin Josefsson - 2003-2010, Jozsef Kadlecsik -License: GPL-2 - -Files: extensions/libxt_socket.c -Copyright: 2007, BalaBit IT Ltd. -License: GPL-2 - -Files: extensions/libxt_statistic.c -Copyright: 2006-2013, Patrick McHardy -License: GPL-2 - -Files: extensions/libxt_string.c -Copyright: 2000, Emmanuel Roger - 2005-08-05, Pablo Neira Ayuso -License: GPL-2 - -Files: extensions/libxt_time.c -Copyright: 2007, CC Computer Consultants GmbH -License: GPL-2 - -Files: extensions/libxt_tos.c -Copyright: 2007, CC Computer Consultants GmbH -License: GPL-2 - -Files: extensions/libxt_u32.c -Copyright: 2002, Don Cohen - 2007, CC Computer Consultants GmbH -License: GPL-2 - -Files: include/linux/netfilter/ipset/ip_set.h -Copyright: 2000-2002, Joakim Axelsson - Patrick Schaaf - Martin Josefsson - 2003-2011, Jozsef Kadlecsik -License: GPL-2 - -Files: include/linux/netfilter/xt_AUDIT.h -Copyright: 2010-2011, Thomas Graf - 2010-2011, Red Hat, Inc. -License: GPL-2 - -Files: include/linux/netfilter/xt_CHECKSUM.h -Copyright: 2002, Harald Welte - 2010, Red Hat Inc -License: GPL-2 - -Files: include/linux/netfilter/xt_DSCP.h -Copyright: 2002, Harald Welte -License: GPL-2 - -Files: include/linux/netfilter/xt_IDLETIMER.h -Copyright: 2004, 2010, Nokia Corporation -License: GPL-2 - -Files: include/linux/netfilter/xt_NFQUEUE.h -Copyright: 2005, Harald Welte -License: GPL-2 - -Files: include/linux/netfilter/xt_connmark.h -Copyright: 2002, 2004, MARA Systems AB by Henrik Nordstrom -License: GPL-2 - -Files: include/linux/netfilter/xt_conntrack.h -Copyright: 2001, Marc Boucher (marc@mbsi.ca) -License: GPL-2 - -Files: include/linux/netfilter/xt_dscp.h -Copyright: 2002, Harald Welte -License: GPL-2 - -Files: include/linux/netfilter/xt_ecn.h -Copyright: 2002, Harald Welte -License: GPL-2 - -Files: include/linux/netfilter/xt_osf.h -Copyright: 2003+, Evgeniy Polyakov -License: GPL-2 - -Files: include/linux/netfilter_ipv4.h -Copyright: 1998, Rusty Russell -License: GPL-2 - -Files: include/linux/netfilter_ipv4/ip_queue.h -Copyright: 2000, James Morris -License: GPL-2 - -Files: include/linux/netfilter_ipv4/ipt_ECN.h -Copyright: 2002, Harald Welte -License: GPL-2 - -Files: include/linux/netfilter_ipv4/ipt_TTL.h -Copyright: 2000, Harald Welte -License: GPL-2 - -Files: include/linux/netfilter_ipv4/ipt_ULOG.h -Copyright: 2000-2002, Harald Welte -License: GPL-2 - -Files: include/linux/netfilter_ipv4/ipt_ttl.h -Copyright: 2000, Harald Welte -License: GPL-2 - -Files: include/linux/netfilter_ipv6.h -Copyright: 1998, Rusty Russell - 1999, David Jeffery -License: GPL-2 - -Files: iptables/iptables-apply -Copyright: 2006, Martin F. Krafft - 2010, GW -License: Artistic-2 - -Files: iptables/iptables-save.c -Copyright: 1999, Paul 'Rusty' Russell - 2000-2002, Harald Welte -License: GPL-2 - -Files: iptables/iptables-xml.c -Copyright: 2006, Ufo Mechanic -License: GPL-2 - -Files: iptables/nft.c -Copyright: 2012 Pablo Neira Ayuso -License: GPL-2+ - -Files: iptables/nft-arp.c -Copyright: 2013 Pablo Neira Ayuso - 2013 Giuseppe Longo -License: GPL-2+ - -Files: iptables/nft-bridge.c -Copyright: 2014 Giuseppe Longo -License: GPL-2+ - -Files: iptables/nft-ipv4.c iptables/nft-ipv6.c iptables/nft-shared.c -Copyright: 2012-2013 Pablo Neira Ayuso - 2013 Tomasz Bursztyka -License: GPL-2+ - -Files: iptables/xtables-arp.c iptables/xtables-eb.c -Copyright: 2002 Bart De Schuymer -License: GPL-2+ - -Files: libiptc/libip4tc.c -Copyright: 1999, Paul ``Rusty'' Russell -License: GPL-2 - -Files: libiptc/libip6tc.c -Copyright: 1999, Paul ``Rusty'' Russell -License: GPL-2 - -Files: libiptc/libiptc.c -Copyright: 1999, Paul ``Rusty'' Russell - 2000-2004, by the Netfilter Core Team - 2003, 2004, Harald Welte - 2008, Jesper Dangaard Brouer -License: GPL-2 - -Files: libxtables/xtables.c -Copyright: 2000-2006, by the netfilter coreteam -License: GPL-2 - -Files: libxtables/xtoptions.c -Copyright: 2011, Jan Engelhardt -License: GPL-2 - -Files: utils/nfsynproxy.c -Copyright: 2013, Patrick McHardy -License: GPL-2 - -Files: utils/pf.os -Copyright: 2000-2003, Michal Zalewski - 2003, Mike Frantzen -License: custom - Permission to use, copy, modify, and distribute this software for any - purpose with or without fee is hereby granted, provided that the above - copyright notice and this permission notice appear in all copies. - . - THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES - WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF - MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR - ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES - WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN - ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF - -License: GPL-2 - 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. - . - 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. - . - You should have received a copy of the GNU General Public - License along with this package; if not, write to the Free - Software Foundation, Inc., 51 Franklin St, Fifth Floor, - Boston, MA 02110-1301 USA - . - On Debian systems, the full text of the GNU General Public - License version 2 can be found in the file - `/usr/share/common-licenses/GPL-2'. - -License: GPL-2+ - This package 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. - . - This package 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. - . - You should have received a copy of the GNU General Public License - along with this program. If not, see - . - On Debian systems, the complete text of the GNU General - Public License version 2 can be found in "/usr/share/common-licenses/GPL-2". - -License: Artistic-2 - The "Artistic License" - . - Preamble - . - The intent of this document is to state the conditions under which a - Package may be copied, such that the Copyright Holder maintains some - semblance of artistic control over the development of the package, - while giving the users of the package the right to use and distribute - the Package in a more-or-less customary fashion, plus the right to make - reasonable modifications. - . - Definitions: - . - "Package" refers to the collection of files distributed by the - Copyright Holder, and derivatives of that collection of files - created through textual modification. - . - "Standard Version" refers to such a Package if it has not been - modified, or has been modified in accordance with the wishes - of the Copyright Holder as specified below. - . - "Copyright Holder" is whoever is named in the copyright or - copyrights for the package. - . - "You" is you, if you're thinking about copying or distributing - this Package. - . - "Reasonable copying fee" is whatever you can justify on the - basis of media cost, duplication charges, time of people involved, - and so on. (You will not be required to justify it to the - Copyright Holder, but only to the computing community at large - as a market that must bear the fee.) - . - "Freely Available" means that no fee is charged for the item - itself, though there may be fees involved in handling the item. - It also means that recipients of the item may redistribute it - under the same conditions they received it. - . - 1. You may make and give away verbatim copies of the source form of the - Standard Version of this Package without restriction, provided that you - duplicate all of the original copyright notices and associated disclaimers. - . - 2. You may apply bug fixes, portability fixes and other modifications - derived from the Public Domain or from the Copyright Holder. A Package - modified in such a way shall still be considered the Standard Version. - . - 3. You may otherwise modify your copy of this Package in any way, provided - that you insert a prominent notice in each changed file stating how and - when you changed that file, and provided that you do at least ONE of the - following: - . - a) place your modifications in the Public Domain or otherwise make them - Freely Available, such as by posting said modifications to Usenet or - an equivalent medium, or placing the modifications on a major archive - site such as uunet.uu.net, or by allowing the Copyright Holder to include - your modifications in the Standard Version of the Package. - . - b) use the modified Package only within your corporation or organization. - . - c) rename any non-standard executables so the names do not conflict - with standard executables, which must also be provided, and provide - a separate manual page for each non-standard executable that clearly - documents how it differs from the Standard Version. - . - d) make other distribution arrangements with the Copyright Holder. - . - 4. You may distribute the programs of this Package in object code or - executable form, provided that you do at least ONE of the following: - . - a) distribute a Standard Version of the executables and library files, - together with instructions (in the manual page or equivalent) on where - to get the Standard Version. - . - b) accompany the distribution with the machine-readable source of - the Package with your modifications. - . - c) give non-standard executables non-standard names, and clearly - document the differences in manual pages (or equivalent), together - with instructions on where to get the Standard Version. - . - d) make other distribution arrangements with the Copyright Holder. - . - 5. You may charge a reasonable copying fee for any distribution of this - Package. You may charge any fee you choose for support of this - Package. You may not charge a fee for this Package itself. However, - you may distribute this Package in aggregate with other (possibly - commercial) programs as part of a larger (possibly commercial) software - distribution provided that you do not advertise this Package as a - product of your own. You may embed this Package's interpreter within - an executable of yours (by linking); this shall be construed as a mere - form of aggregation, provided that the complete Standard Version of the - interpreter is so embedded. - . - 6. The scripts and library files supplied as input to or produced as - output from the programs of this Package do not automatically fall - under the copyright of this Package, but belong to whoever generated - them, and may be sold commercially, and may be aggregated with this - Package. If such scripts or library files are aggregated with this - Package via the so-called "undump" or "unexec" methods of producing a - binary executable image, then distribution of such an image shall - neither be construed as a distribution of this Package nor shall it - fall under the restrictions of Paragraphs 3 and 4, provided that you do - not represent such an executable image as a Standard Version of this - Package. - . - 7. C subroutines (or comparably compiled subroutines in other - languages) supplied by you and linked into this Package in order to - emulate subroutines and variables of the language defined by this - Package shall not be considered part of this Package, but are the - equivalent of input as in Paragraph 6, provided these subroutines do - not change the language in any way that would cause it to fail the - regression tests for the language. - . - 8. Aggregation of this Package with a commercial distribution is always - permitted provided that the use of this Package is embedded; that is, - when no overt attempt is made to make this Package's interfaces visible - to the end user of the commercial distribution. Such use shall not be - construed as a distribution of this Package. - . - 9. The name of the Copyright Holder may not be used to endorse or promote - products derived from this software without specific prior written permission. - . - 10. THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR - IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED - WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. - . - The End - - ----------------------------------------- -moreutils version 0.62-1 - - -Copyright: - -Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ -Source: Contributed by many folks. - -Files: * -Copyright: 2006-2016 Joey Hess -License: GPL-2+ - -Files: is_utf8/* -Copyright: 2016 Julien Palard -License: BSD-2-Clause - -Files: sponge.* -Copyright: 2006 Tollef Fog Heen -License: GPL-2 - -Files: ifdata.c -Copyright: 2002 Benjamin BAYART -License: GPL-2+ - -Files: pee.c -Copyright: 2006 Miek Gieben -License: GPL-2+ - -Files: zrun -Copyright: 2006 Chung-chieh Shan -License: GPL-2+ - -Files: mispipe.c -Copyright: 2004 Nathanael Nerode -License: GPL-2+ or Expat - -Files: lckdo.c lckdo.docbook -Copyright: Michael Tokarev -License: other - Public domain - -Files: ifne.c ifne.docbook -Copyright: 2008 Javier Merino -License: GPL-2+ - -Files: parallel.c -Copyright: 2008 Tollef Fog Heen -License: GPL-2 - -Files: errno.c errno.docbook -Copyright: 2012 Lars Wirzenius -License: GPL-2+ - -Files: physmem.c -Copyright: 2000, 2001, 2003, 2005, 2006 Free Software Foundation, Inc. -License: GPL-2+ - -License: GPL-2 - The full text of the GPL is distributed as COPYING in moreutils's source, - and is distributed in /usr/share/common-licenses/GPL-2 on Debian systems. - -License: GPL-2+ - The full text of the GPL is distributed as COPYING in moreutils's source, - and is distributed in /usr/share/common-licenses/GPL-2 on Debian systems. - -License: Expat - * Permission is hereby granted, free of charge, to any person obtaining a - * copy of this software and associated documentation files (the "Software"), - * to deal in the Software without restriction, including without limitation - * the rights to use, copy, modify, merge, publish, distribute, sublicense, - * and/or sell copies of the Software, and to permit persons to whom the - * Software is furnished to do so, subject to the following conditions: - * - * The above copyright notice and this permission notice shall be included in - * all copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL - * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - * THE SOFTWARE. - -License: BSD-2-clause - # All rights reserved. - # - # Redistribution and use in source and binary forms, with or without - # modification, are permitted provided that the following conditions - # are met: - # 1. Redistributions of source code must retain the above copyright - # notice, this list of conditions and the following disclaimer. - # 2. Redistributions in binary form must reproduce the above copyright - # notice, this list of conditions and the following disclaimer in the - # documentation and/or other materials provided with the distribution. - # - # THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR - # IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - # OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - # IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, - # INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT - # NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - # THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - ----------------------------------------- -pax version 1:20190224-1 - - -Copyright: - -This package was debianised by Thorsten Glaser on -Mon, 26 Nov 2012 16:43:46 +0000. - -It was downloaded from: -https://www.mirbsd.org/MirOS/dist/mir/cpio/paxmirabilis-20190224.cpio.gz - -Licence: - - * Copyright (c) 2005, 2006, 2007, 2008, 2009, 2011, 2012, 2013, - * 2014, 2015, 2016, 2017, 2018, 2019 - * mirabilos - * Copyright (c) 2018 - * Jonathan de Boyne Pollard - * mirabilos - * Copyright (c) 2011 - * Svante Signell - * Guillem Jover - * Copyright (c) 1996, 1997 SigmaSoft, Th. Lockert - * Copyright (c) 1992 Keith Muller. - * Copyright (c) 1990, 1992, 1993 - * The Regents of the University of California. All rights reserved. - * - * This code is derived from software contributed to Berkeley by - * Keith Muller of the University of California, San Diego. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of the University nor the names of its contributors - * may be used to endorse or promote products derived from this software - * without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - - * Copyright © 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, - * 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, - * 2019 - * mirabilos - * Copyright © 2018 - * mirabilos - * Also contains material part of “jupp” (Joe’s Own Editor), © 2018 - * mirabilos - * Contains code from “mksh” (The MirBSD Korn Shell) © 2015 - * mirabilos - * KO Myung-Hun - * - * Provided that these terms and disclaimer and all copyright notices - * are retained or reproduced in an accompanying document, permission - * is granted to deal in this work without restriction, including un‐ - * limited rights to use, publicly perform, distribute, sell, modify, - * merge, give away, or sublicence. - * - * This work is provided “AS IS” and WITHOUT WARRANTY of any kind, to - * the utmost extent permitted by applicable law, neither express nor - * implied; without malicious intent or gross negligence. In no event - * may a licensor, author or contributor be held liable for indirect, - * direct, other damage, loss, or other issues arising in any way out - * of dealing in the work, even if advised of the possibility of such - * damage or existence of a defect, except proven that it results out - * of said person’s immediate fault when using the work as intended. - -getoldopt is: - * Written 25 August 1985 by John Gilmore (ihnp4!hoptoad!gnu) and - * placed in the Public Domain for your edification and enjoyment, - * https://creativecommons.org/publicdomain/zero/1.0/legalcode (CC0) - * being an alternative licence, confirmed by eMail on 2019-02-10. - -CC0 can be found in /usr/share/common-licenses/CC0-1.0 on a Debian system. - - * Copyright (c) 2008 Otto Moerbeek - * Copyright (c) 2004 Ted Unangst and Todd Miller - * Copyright (c) 1998 Todd C. Miller - * Optimisations by Bodo Eggert and mirabilos - * - * Permission to use, copy, modify, and distribute this software for any - * purpose with or without fee is hereby granted, provided that the above - * copyright notice and this permission notice appear in all copies. - * - * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES - * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF - * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR - * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES - * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN - * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF - * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - -Some of the early Debian patches were (c) 2011 - Bdale Garbee - - ----------------------------------------- -perl version 5.28.1-6+deb10u1 - - -Copyright: - -Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ -Files-Excluded-regen-configure: bin/* -Upstream-Name: perl -Source: http://www.perl.com/CPAN/src/5.0/ -Comment: - This package was debianized by Brendan O'Dea on - Thu, 17 Aug 2000 16:10:54 +1000. - . - Upstream Authors: - . - Larry Wall et. al. (see /usr/share/doc/perl/AUTHORS). - . - Last checked against: Perl 5.28.1 - -Files: * -Copyright: - Perl is Copyright (C) 1987-2018 by Larry Wall and others. All rights reserved. -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or modify - it under the terms of either: - . - a) the GNU General Public License as published by the Free Software - Foundation; either version 1, or (at your option) any later - version, or - . - b) the "Artistic License" which comes with Perl. - ---------------------------------------- - The directories ext/, dist/, and cpan/ contain separate distributions - that have been bundled with the Perl core. The copyright and license - status of these have been detailed separately below. - . - It is assumed that all the other files are part of Perl and share the - above copyright and license information unless explicitly specified - differently. Only the exceptions have been detailed below. - . - As a small portion of the files are indeed licensed differently from - the above, all the other licenses have been collected and/or duplicated - at the end of this file to facilitate review. - -Files: perlio.c -Copyright: - Copyright (c) 1996-2006, Nick Ing-Simmons - Copyright (c) 2006, 2007, 2008 Larry Wall and others -License: GPL-1+ or Artistic -Comment: - This file is a part of Perl itself, licensed as above. - -Files: malloc.c -Copyright: - Modifications Copyright Ilya Zakharevich 1996-99. -License: GPL-1+ or Artistic -Comment: - This file is a part of Perl itself, licensed as above. - -Files: pp_sort.c -Copyright: - Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, - 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 by Larry Wall and others - . - Copyright (C) Tom Horsley, 1997. All rights reserved. -License: GPL-1+ or Artistic -Comment: - This file is a part of Perl itself, licensed as above. - -Files: mro.c -Copyright: - Copyright (c) 2007 Brandon L Black - Copyright (c) 2007, 2008 Larry Wall and others -License: GPL-1+ or Artistic -Comment: - This file is a part of Perl itself, licensed as above. - -Files: perl.c -Copyright: - Copyright 1987-2018, Larry Wall - MS-DOS port Copyright (c) 1989, 1990, Diomidis Spinellis - OS/2 port Copyright (c) 1990, 1991, Raymond Chen, Kai Uwe Rommel - Version 5 port Copyright (c) 1994-2002, Andreas Kaiser, Ilya Zakharevich -License: GPL-1+ or Artistic -Comment: - This file is a part of Perl itself, licensed as above. - ---------------------------------------- - These copyright notices are embedded in the code, and possibly apply - to other files as well. - -Files: time64.c -Copyright: - Copyright (c) 2007-2008 Michael G Schwern - . - This software originally derived from Paul Sheer's pivotal_gmtime_r.c. -License: Expat - -Files: - regcomp.c - regexec.c -Copyright: - Copyright (c) 1986 by University of Toronto. - Written by Henry Spencer. Not derived from licensed software. - . - Alterations to Henry's code are... - Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, - 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 - by Larry Wall and others - . - NOTE: this is derived from Henry Spencer's regexp code, and should not - confused with the original package (see point 3 below). Thanks, Henry! -License: REGCOMP, and GPL-1+ or Artistic -Comment: - ---------------------------------------- - The "alterations to Henry's code" have the following license information: - . - You may distribute under the terms of either the GNU General Public - License or the Artistic License, as specified in the README file. - -Files: perly.h -Copyright: - Copyright (C) 1984, 1989-1990, 2000-2013 Free Software Foundation, Inc. -License: GPL-3+-WITH-BISON-EXCEPTION - -Files: mkppport -Copyright: - Copyright 2006 by Marcus Holland-Moritz . -License: GPL-1+ or Artistic -Comment: - This program is free software; you may redistribute it - and/or modify it under the same terms as Perl itself. - -Files: lib/unicore/*.txt -Copyright: - © 1991-2016 Unicode®, Inc. -License: Unicode -Comment: - The license is given as - . - For terms of use, see http://www.unicode.org/terms_of_use.html - . - See the end of this file for the full text of this license as downloaded - from the above URL on Tue, 26 Apr 2011 14:41:24 +0300. - -Files: lib/deprecate.pm -Copyright: - Copyright (C) 2009, 2011 -License: GPL-1+ or Artistic -Comment: - This library is free software; you can redistribute it and/or modify - it under the same terms as Perl itself, either Perl version 5.10.0 or, - at your option, any later version of Perl 5 you may have available. - -Files: lib/Exporter.pm -Copyright: unknown -License: GPL-1+ or Artistic -Comment: - This library is free software. You can redistribute it - and/or modify it under the same terms as Perl itself. - -Files: lib/FindBin.pm -Copyright: - Copyright (c) 1995 Graham Barr & Nick Ing-Simmons. All rights reserved. -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or modify it - under the same terms as Perl itself. - -Files: symbian/* -Copyright: - Copyright (c) Nokia 2004-2005. All rights reserved. -License: GPL-1+ or Artistic -Comment: - All files are licensed under the same terms as Perl itself. - -Files: symbian/PerlUiS90.rss -Copyright: - Copyright (c) 2006 Alexander Smishlajev. All rights reserved. -License: GPL-1+ or Artistic -Comment: - The PerlUi class is licensed under the same terms as Perl itself. - -Files: README.symbian -Copyright: - Copyright (c) 2004-2005 Nokia. All rights reserved. - Copyright (c) 2006-2007 Jarkko Hietaniemi. -License: GPL-1+ or Artistic -Comment: - The Symbian port is licensed under the same terms as Perl itself. - -Files: t/op/split_unicode.t -Copyright: - Copyright (c) 1991-2006 Unicode, Inc. -License: GPL-1+ or Artistic, and Unicode -Comment: - ---------------------------------------- - The test data was extracted from the Unicode Character Database. - . - It is assumed that the test code is licensed under the same terms - as Perl. - -Files: regen/reentr.pl -Copyright: Copyright (c) 2002,2003 Jarkko Hietaniemi -License: GPL-1+ or Artistic -Comment: - You may distribute under the terms of either the GNU General Public - License or the Artistic License, as specified in the README file. - -Files: - Porting/checkansi.pl - Porting/valgrindpp.pl -Copyright: - Copyright 2003, 2007 by Marcus Holland-Moritz . -License: GPL-1+ or Artistic -Comment: - This program is free software; you may redistribute it - and/or modify it under the same terms as Perl itself. - -Files: Porting/config_h.pl -Copyright: - Copyright (C) 2005-2012 by H.Merijn Brand (m)'12 [22-09-2012] -License: GPL-1+ or Artistic -Comment: - You may distribute under the terms of either the GNU General Public - License or the Artistic License, as specified in the README file. - -Files: Porting/git-deltatool -Copyright: - This software is copyright (c) 2010 by David Golden. -License: GPL-1+ or Artistic -Comment: - This is free software; you can redistribute it and/or modify it under the same - terms as the Perl 5 programming language system itself. - -Files: NetWare/* -Copyright: - Copyright (C) 2000-01, 2002 Novell, Inc. All Rights Reserved. -License: GPL-1+ or Artistic -Comment: - You may distribute under the terms of either the GNU General Public - License or the Artistic License, as specified in the README file. - -Files: - vms/vms.c - vms/vmsish.h -Copyright: - Copyright (C) 1993-2015 by Charles Bailey and others. -License: GPL-1+ or Artistic -Comment: - You may distribute under the terms of either the GNU General Public - License or the Artistic License, as specified in the README file. - -Files: x2p/s2p.PL -Copyright: unknown -License: S2P - -Files: win32/fcrypt.c -Copyright: - Copyright (C) 1993 Eric Young - see README for more details -License: GPL-1+ or Artistic -Comment: - This file is a part of Perl itself, licensed as above. - -Files: cpan/Archive-Tar/* -Copyright: 2002 - 2009 Jos Boumans . All rights reserved. -License: GPL-1+ or Artistic -Comment: - This library is free software; you may redistribute and/or modify - it under the same terms as Perl itself. - -Files: - cpan/AutoLoader/* - dist/SelfLoader/* -Copyright: This package has the same copyright and license as the perl core: - Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999, - 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2011, 2012 - by Larry Wall and others - . - All rights reserved. -License: GPL-1+ or Artistic -Comment: - This package has the same copyright and license as the perl core. - -Files: cpan/autodie/* -Copyright: 2008-2009, Paul Fenwick -License: GPL-1+ or Artistic -Comment: - This module is free software, you may distribute it under the - same terms as Perl itself. - -Files: - cpan/autodie/lib/autodie/exception/system.pm - cpan/autodie/lib/autodie/exception.pm -Copyright: 2008-2009, Paul Fenwick -License: GPL-1+ or Artistic -Comment: - This is free software. You may modify and/or redistribute this - code under the same terms as Perl 5.10 itself, or, at your option, - any later version of Perl 5. - -Files: - cpan/autodie/lib/autodie/Scope/GuardStack.pm - cpan/autodie/lib/autodie/Util.pm -Copyright: Copyright 2013-2014, Niels Thykier -License: GPL-1+ or Artistic -Comment: - This module is free software. You may distribute it under the - same terms as Perl itself. - -Files: cpan/B- -Copyright: - Copyright (c) 1996, 1997 Malcolm Beattie - Copyright (c) 2008, 2010, 2013, 2014 Reini Urban -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or modify - it under the terms of either: - . - a) the GNU General Public License as published by the Free - Software Foundation; either version 1, or (at your option) any - later version, or - . - b) the "Artistic License" which comes with this kit. - -Files: cpan/Compress-Raw-Bzip2/* -Copyright: Copyright (c) 2005-2017 Paul Marquess. All rights reserved. -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it - and/or modify it under the same terms as Perl itself. - -Files: cpan/Compress-Raw-Bzip2/bzip2-src/* -Copyright: Copyright(C) 1996-2010 Julian Seward. All rights reserved -Comment: - ---------------------------------------- - cpan/Compress-Raw-Bzip2/bzip2-src/README states: - Note that the files bzip2.c, bzip2recover.c, bzlib.c & decompress.c - have been modified to allow them to build with a C++ compiler. - The file bzip2-src/bzip2-cpp.patch contains the patch - that was used to modify the original source. - but the patch has apparently been filtered out when including the software - into the Perl core distribution. -License: BZIP - -Files: cpan/Compress-Raw-Zlib/* -Copyright: Copyright (c) 2005-2017 Paul Marquess. All rights reserved. -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it - and/or modify it under the same terms as Perl itself. - -Files: cpan/Compress-Raw-Zlib/zlib-src/* -Copyright: - Copyright (C) 1995-2017 Jean-loup Gailly and Mark Adler -License: ZLIB - -Files: cpan/Config-Perl-V/* -Copyright: - Copyright (C) 2009-2017 H.Merijn Brand -License: GPL-1+ or Artistic -Comment: - This library is free software; you can redistribute it and/or modify - it under the same terms as Perl itself. - -Files: cpan/CPAN/* -Copyright: unknown -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or - modify it under the same terms as Perl itself. - -Files: - cpan/CPAN/lib/App/Cpan.pm - cpan/CPAN/scripts/cpan -Copyright: (c) 2001-2015, brian d foy, All Rights Reserved. -License: GPL-1+ or Artistic -Comment: - You may redistribute this under the same terms as Perl itself. - -Files: cpan/CPAN-Meta/* -Copyright: - This software is copyright (c) 2010 by David Golden, Ricardo Signes, - Adam Kennedy and Contributors. -License: GPL-1+ or Artistic -Comment: - This is free software; you can redistribute it and/or modify it under - the same terms as the Perl 5 programming language system itself. - -Files: - cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_0.pod - cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_1.pod - cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_2.pod - cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_3.pod - cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_4.pod -Copyright: Ken Williams -License: GPL-1+ or Artistic -Comment: - This is free software; you can redistribute it and/or modify it under - the same terms as the Perl 5 programming language system itself. - -Files: cpan/CPAN-Meta-Requirements/* -Copyright: - This software is copyright (c) 2010 by David Golden and Ricardo Signes. -License: GPL-1+ or Artistic -Comment: - This is free software; you can redistribute it and/or modify it under - the same terms as the Perl 5 programming language system itself. - -Files: cpan/CPAN-Meta-YAML/* -Copyright: - This software is copyright (c) 2010 by Adam Kennedy. -License: GPL-1+ or Artistic -Comment: - This is free software; you can redistribute it and/or modify it under - the same terms as the Perl 5 programming language system itself. - -Files: cpan/DB_File/* -Copyright: Copyright (c) 1995-2016 Paul Marquess. All rights reserved. -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or modify - it under the same terms as Perl itself. - -Files: cpan/Devel-PPPort/* -Copyright: - Version 3.x, Copyright (C) 2004-2010, Marcus Holland-Moritz. - Version 2.x, Copyright (C) 2001, Paul Marquess. - Version 1.x, Copyright (C) 1999, Kenneth Albanowski. -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or - modify it under the same terms as Perl itself. - -Files: cpan/Devel-PPPort/parts/inc/mess -Copyright: - Copyright (C) 2017, Pali -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or - modify it under the same terms as Perl itself. - -Files: cpan/Digest/* -Copyright: - Copyright 1998-2006 Gisle Aas. - Copyright 1995,1996 Neil Winton. -License: GPL-1+ or Artistic -Comment: - This library is free software; you can redistribute it and/or - modify it under the same terms as Perl itself. - -Files: cpan/Digest-MD5/* -Copyright: - Copyright 1998-2003 Gisle Aas. - Copyright 1995-1996 Neil Winton. - Copyright 1990-1992 RSA Data Security, Inc. -License: GPL-1+ or Artistic -Comment: - This library is free software; you can redistribute it and/or - modify it under the same terms as Perl itself. - -Files: cpan/Digest-SHA/* -Copyright: - Copyright (C) 2003-2017 Mark Shelor, All Rights Reserved -License: GPL-1+ or Artistic -Comment: - This library is free software; you can redistribute it and/or modify - it under the same terms as Perl itself. - -Files: cpan/Encode/* -Copyright: Copyright 2002-2014 Dan Kogai -License: GPL-1+ or Artistic -Comment: - This library is free software; you can redistribute it and/or modify - it under the same terms as Perl itself. - -Files: cpan/Encode/bin/encguess -Copyright: 2015 Michael LaGrasta and Dan Kogai -License: Artistic -Comment: - This program is free software; you can redistribute it and/or modify it - under the terms of the the Artistic License (2.0). - -Files: cpan/encoding-warnings/* -Copyright: - Copyright 2004, 2005, 2006, 2007 by Audrey Tang . -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or modify it - under the same terms as Perl itself. - -Files: cpan/experimental/* -Copyright: - This software is copyright (c) 2013 by Leon Timmermans. -License: GPL-1+ or Artistic -Comment: - This is free software; you can redistribute it and/or modify it under - the same terms as the Perl 5 programming language system itself. - -Files: cpan/ExtUtils-Constant/* -Copyright: unknown -License: GPL-1+ or Artistic -Comment: - ---------------------------------------- - There are no copyright or license notices in this distribution. It - is assumed that the copyright and license of Perl itself applies here - as well. - . - This is supported by the README of the separate CPAN distribution at - , which states: - . - You may distribute this work under the terms of either the GNU General - Public License or the Artistic License, as specified in perl's README - file. - . - Copyright © 2001, 2002, 2005 Nicholas Clark - -Files: cpan/ExtUtils-MakeMaker/lib/ExtUtils/MakeMaker/Locale.pm -Copyright: 2010 Gisle Aas -License: GPL-1+ or Artistic -Comment: - This library is free software; you can redistribute it and/or modify it - under the same terms as Perl itself. - -Files: cpan/ExtUtils-Manifest/lib/ExtUtils/Manifest.pm -Copyright: 1996- by Andreas Koenig -License: GPL-1+ or Artistic -Comment: - This is free software; you can redistribute it and/or modify it - under the same terms as Perl itself. - -Files: - cpan/File-Fetch/* - cpan/IPC-Cmd/* - cpan/Module-Load/* - cpan/Module-Load-Conditional/* - cpan/Module-Loaded/* - cpan/Package-Constants/* - cpan/Params-Check/* -Copyright: - There are no copyright notices in these distributions. - Their author is Jos Boumans . -License: GPL-1+ or Artistic -Comment: - This library is free software; you may redistribute and/or modify it - under the same terms as Perl itself. - -Files: cpan/File-Path/* -Copyright: - This module is copyright (C) Charles Bailey, Tim Bunce, David Landgren, - James Keenan, and Richard Elberger 1995-2015. All rights reserved. -License: GPL-1+ or Artistic -Comment: - This library is free software; you can redistribute it and/or modify - it under the same terms as Perl itself. - -Files: cpan/File-Temp/* -Copyright: - This software is copyright (c) 2013 by Tim Jenness and the UK Particle - Physics and Astronomy Research Council. -License: GPL-1+ or Artistic -Comment: - This is free software; you can redistribute it and/or modify it under - the same terms as the Perl 5 programming language system itself. - -Files: cpan/Filter-Util-Call/* -Copyright: - Copyright (c) 1995-2011 Paul Marquess. All rights reserved. - Copyright (c) 2011-2014 Reini Urban. All rights reserved. - Copyright (c) 2014-2017 cPanel Inc. All rights reserved. -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or - modify it under the same terms as Perl itself. - -Files: cpan/Getopt-Long/* -Copyright: - Module Getopt::Long is Copyright 1990,2015 by Johan Vromans. -License: GPL-2+ or Artistic -Comment: - This program is free software; you can redistribute it and/or - modify it under the terms of the Perl Artistic License or 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. - -Files: cpan/HTTP-Tiny/* -Copyright: - This software is copyright (c) 2016 by Christian Hansen. -License: GPL-1+ or Artistic -Comment: - This is free software; you can redistribute it and/or modify it under - the same terms as the Perl 5 programming language system itself. - -Files: cpan/IO-Compress/* -Copyright: - Copyright (c) 1995-2017 Paul Marquess. All rights reserved. -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it - and/or modify it under the same terms as Perl itself. - -Files: cpan/IO-Zlib/* -Copyright: - Copyright (c) 1998-2004 Tom Hughes . All rights reserved. -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute - it and/or modify it under the same terms as Perl itself. - -Files: cpan/IPC-SysV/* -Copyright: - Version 2.x, Copyright (C) 2007-2010, Marcus Holland-Moritz. - Version 1.x, Copyright (c) 1997, Graham Barr. - Version 1.x, Copyright (c) 1999, Graham Barr. -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or - modify it under the same terms as Perl itself. - -Files: cpan/JSON-PP/* -Copyright: - Copyright 2007-2016 by Makamaka Hannyaharamitu -License: GPL-1+ or Artistic -Comment: - This library is free software; you can redistribute it and/or modify - it under the same terms as Perl itself. - -Files: cpan/libnet/* -Copyright: - (C) 1995-2006 Graham Barr. All rights reserved. - (C) 2013-2016 Steve Hay. All rights reserved. -License: GPL-1+ or Artistic -Comment: - This library is free software; you can redistribute it and/or modify - it under the same terms as Perl itself. - -Files: cpan/libnet/Makefile.PL -Copyright: - Copyright (C) 2014 Steve Hay. All rights reserved. -License: GPL-1+ or Artistic -Comment: - You may distribute under the terms of either the GNU General Public License - or the Artistic License, as specified in the LICENCE file. - -Files: cpan/List-Util/* -Copyright: - Copyright (c) 1997-2009 Graham Barr . All rights reserved. -License: GPL-1+ or Artistic -Comment: - This library is free software; you can redistribute it and/or - modify it under the same terms as Perl itself. - -Files: cpan/Scalar-List-Utils/lib/Scalar/Util.pm -Copyright: - Copyright (c) 1997-2007 Graham Barr . All rights reserved. - Copyright (c) 1999 Tuomas J. Lukka . All rights reserved. - Copyright (C) 2004, 2008 Matthijs van Duin. All rights reserved. - Copyright (C) 2014 cPanel Inc. All rights reserved. -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or modify it - under the same terms as Perl itself. - -Files: cpan/Scalar-List-Utils/lib/Sub/Util.pm -Copyright: (c) 2014 Paul Evans . All rights reserved -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or modify it - under the same terms as Perl itself. - - -Files: cpan/Locale-Codes/* -Copyright: - Copyright (C) 1997-2001 Canon Research Centre Europe (CRE). - Copyright (C) 2001-2010 Neil Bowers - Copyright (c) 1996-2018 Sullivan Beck - Copyright (c) 2001 Michael Hennecke -License: GPL-1+ or Artistic -Comment: - This module is free software; you can redistribute it and/or - modify it under the same terms as Perl itself. - -Files: cpan/Locale-Maketext-Simple/* -Copyright: - Copyright 2003, 2004, 2005, 2006 by Audrey Tang -License: Expat or GPL-1+ or Artistic -Comment: - This software is released under the MIT license cited below. Additionally, - when this software is distributed with Perl Kit, Version 5, you may also - redistribute it and/or modify it under the same terms as Perl itself. - -Files: - cpan/Locale-Maketext-Simple/t/po_with_i_default/i_default.po - cpan/Locale-Maketext-Simple/t/po_with_i_default/fr.po - cpan/Locale-Maketext-Simple/t/po_with_i_default/en.po - cpan/Locale-Maketext-Simple/t/po_without_i_default/en.po - cpan/Locale-Maketext-Simple/t/po_without_i_default/fr.po -Copyright: - Copyright (C) All Perl Hackers everywhere - Ton Voon , 2009. -License: Expat or GPL-1+ or Artistic -Comment: - ---------------------------------------- - It is assumed that these translations are licensed under the same terms as - the rest of the Locale-Maketext-Simple distribution. - -Files: cpan/Math-Complex/* -Copyright: unknown -License: GPL-1+ or Artistic -Comment: - This library is free software; you can redistribute it and/or modify - it under the same terms as Perl itself. - -Files: cpan/Memoize/* -Copyright: - Copyright 1998, 1999, 2000, 2001, 2012 M-J. Dominus. -License: GPL-1+ or Artistic -Comment: - This library is free software; you may redistribute it and/or modify - it under the same terms as Perl itself. - . - You may copy and distribute this program under the same terms as - Perl itself. If in doubt, write to mjd-perl-memoize+@plover.com for - a license. - -Files: cpan/MIME-Base64/* -Copyright: - Copyright 1995-2004,2010 Gisle Aas -License: GPL-1+ or Artistic -Comment: - This library is free software; you can redistribute it and/or - modify it under the same terms as Perl itself. - -Files: cpan/MIME-Base64/Base64.xs -Copyright: - Copyright 1997-2004 Gisle Aas - Copyright (c) 1991 Bell Communications Research, Inc. (Bellcore) -License: GPL-1+ or Artistic -Comment: - This library is free software; you can redistribute it and/or - modify it under the same terms as Perl itself. - . - The tables and some of the code that used to be here was borrowed from - metamail, which comes with this message: - . - Copyright (c) 1991 Bell Communications Research, Inc. (Bellcore) - . - Permission to use, copy, modify, and distribute this material - for any purpose and without fee is hereby granted, provided - that the above copyright notice and this permission notice - appear in all copies, and that the name of Bellcore not be - used in advertising or publicity pertaining to this - material without the specific, prior written permission - of an authorized representative of Bellcore. BELLCORE - MAKES NO REPRESENTATIONS ABOUT THE ACCURACY OR SUITABILITY - OF THIS MATERIAL FOR ANY PURPOSE. IT IS PROVIDED "AS IS", - WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES. - -Files: cpan/Module-Metadata/* -Copyright: - Copyright (c) 2001-2011 Ken Williams. All rights reserved. - Copyright (c) 2010-2011 Matt Trout and David Golden. All rights reserved. -License: GPL-1+ or Artistic -Comment: - This library is free software; you can redistribute it and/or - modify it under the same terms as Perl itself. - -Files: cpan/NEXT/* -Copyright: - Copyright (c) 2000-2001, Damian Conway. All Rights Reserved. -License: GPL-1+ or Artistic -Comment: - This module is free software. It may be used, redistributed - and/or modified under the same terms as Perl itself. - -Files: cpan/parent/* -Copyright: - Copyright (c) 2007-10 Max Maischein -License: GPL-1+ or Artistic -Comment: - This module is released under the same terms as Perl itself. - -Files: cpan/Parse-CPAN-Meta/* -Copyright: - This software is copyright (c) 2015 by Adam Kennedy and Contributors. -License: GPL-1+ or Artistic -Comment: - This is free software; you can redistribute it and/or modify it under - the same terms as the Perl 5 programming language system itself. - -Files: cpan/PerlIO-via-QuotedPrint/* -Copyright: - Copyright (c) 2002-2004,2012 Elizabeth Mattijsen. All rights reserved. -License: GPL-1+ or Artistic -Comment: - This library is free software; you can redistribute it and/or modify - it under the same terms as Perl itself. - -Files: cpan/Perl-OSType/* -Copyright: - This software is copyright (c) 2016 by David Golden. -License: GPL-1+ or Artistic -Comment: - This is free software; you can redistribute it and/or modify it under - the same terms as the Perl 5 programming language system itself. - -Files: cpan/Pod-Checker/* -Copyright: - Copyright (C) 1994-2000 by Bradford Appleton. All rights reserved. -License: GPL-1+ or Artistic -Comment: - This file is part of "PodParser". PodParser is free software; - you can redistribute it and/or modify it under the same terms - as Perl itself. - -Files: cpan/Pod-Escapes/* -Copyright: - Copyright (c) 2001-2004 Sean M. Burke. All rights reserved. -License: GPL-1+ or Artistic -Comment: - This library is free software; you can redistribute it and/or modify - it under the same terms as Perl itself. - -Files: cpan/podlators/* -Copyright: - Copyright 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, - 2010, 2012, 2013, 2014, 2015, 2016, 2017 Russ Allbery - Substantial contributions by Sean Burke -License: GPL-1+ or Artistic -Comment: - This program is free software; you may redistribute it and/or modify it - under the same terms as Perl itself. - -Files: cpan/podlators/lib/Pod/Text/Overstrike.pm -Copyright: - Copyright 2000 Joe Smith . - Copyright 2001, 2004, 2008 Russ Allbery . -License: GPL-1+ or Artistic -Comment: - This program is free software; you may redistribute it and/or modify it - under the same terms as Perl itself. - -Files: cpan/podlators/t/data/snippets/README -Copyright: - Copyright 2015 Russ Allbery -License: RRA-KEEP-THIS-NOTICE -Comment: - The license text can be found at the end of this file. - -Files: - cpan/podlators/t/docs/pod-spelling.t - cpan/podlators/t/docs/pod.t - cpan/podlators/t/docs/synopsis.t - cpan/podlators/t/lib/Test/RRA.pm - cpan/podlators/t/lib/Test/RRA/Config.pm - cpan/podlators/t/style/minimum-version.t - cpan/podlators/t/style/strict.t -Copyright: Copyright 2012, 2013, 2014 - The Board of Trustees of the Leland Stanford Junior University -License: Expat - -Files: cpan/podlators/t/lib/Test/RRA/ModuleVersion.pm -Copyright: Copyright 2016 Russ Allbery -License: Expat - -Files: cpan/podlators/t/man/no-encode.t -Copyright: - Copyright 2016 Niko Tyni - Copyright 2016 Russ Allbery -License: GPL-1+ or Artistic -Comment: - This program is free software; you may redistribute it and/or modify it - under the same terms as Perl itself. - -Files: cpan/podlators/t/style/module-version.t -Copyright: - Copyright 2014, 2015, 2016 Russ Allbery - Copyright 2012, 2013, 2014 The Board of Trustees of the Leland Stanford Junior University -License: Expat - -Files: cpan/Pod-Parser/* -Copyright: - Copyright (C) 1996-2000 by Bradford Appleton. All rights reserved. -License: GPL-1+ or Artistic -Comment: - PodParser is free software; you can redistribute it and/or modify it - under the same terms as Perl itself. - -Files: cpan/Pod-Parser/lib/Pod/PlainText.pm -Copyright: - Copyright 1999-2000 by Russ Allbery -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or modify it - under the same terms as Perl itself. - -Files: cpan/Pod-Parser/lib/Pod/ParseUtils.pm -Copyright: - Copyright (C) 1999-2000 by Marek Rouchal. All rights reserved. -License: GPL-1+ or Artistic -Comment: - This file is part of "PodParser". PodParser is free software; - you can redistribute it and/or modify it under the same terms - as Perl itself. - -Files: cpan/Pod-Parser/t/pod/contains_pod.t -Copyright: - Copyright (C) 2005 Joshua Hoblitt -License: GPL-1+ or Artistic -Comment: - ---------------------------------------- - This file has no explicit license notice, but it is assumed that it - is licensed under the same terms as the rest of the distribution. - -Files: cpan/Pod-Simple/* -Copyright: - Copyright (c) 2002-2004 Sean M. Burke. All rights reserved. -License: GPL-1+ or Artistic -Comment: - This library is free software; you can redistribute it and/or modify it - under the same terms as Perl itself. - -Files: cpan/Pod-Simple/lib/Pod/Simple/XHTML.pm -Copyright: - Copyright (c) 2003-2005 Allison Randal. -License: GPL-1+ or Artistic -Comment: - This library is free software; you can redistribute it and/or modify it - under the same terms as Perl itself. - -Files: - cpan/Pod-Simple/t/perlfaq.pod - cpan/Pod-Simple/t/perlfaqo.txt -Copyright: - Copyright (c) 1997-1999 Tom Christiansen and Nathan Torkington. - All rights reserved. -License: GPL-1+ or Artistic -Comment: - ---------------------------------------- - This document is part of the perlfaq distribution. A newer version - of it is also included in pod/perlfaq3.pod. - . - The license notice in the document is: - . - When included as an integrated part of the Standard Distribution - of Perl or of its documentation (printed or otherwise), this works is - covered under Perl's Artistic License. For separate distributions of - all or part of this FAQ outside of that, see L. - . - Irrespective of its distribution, all code examples here are in the public - domain. You are permitted and encouraged to use this code and any - derivatives thereof in your own programs for fun or for profit as you - see fit. A simple comment in the code giving credit to the FAQ would - be courteous but is not required. - . - The corresponding license in pod/perlfaq.pod is: - . - This document is available under the same terms as Perl itself. Code - examples in all the perlfaq documents are in the public domain. Use - them as you see fit (and at your own risk with no warranty from anyone). - -Files: cpan/Pod-Usage/* -Copyright: - Copyright (C) 1996-2000 by Bradford Appleton. All rights reserved. - Copyright (c) 2001-2016 by Marek Rouchal. -License: GPL-1+ or Artistic -Comment: - This file is part of "Pod-Usage". Pod-Usage is free software; - you can redistribute it and/or modify it under the same terms - as Perl itself. - -Files: cpan/Pod-Usage/t/inc/Pod/PlainText.pm -Copyright: - Copyright 1999-2000 by Russ Allbery -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or modify it - under the same terms as Perl itself. - -Files: cpan/Sys-Syslog/* -Copyright: - Copyright (C) 1990-2012 by Larry Wall and others. -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or modify it - under the same terms as Perl itself. - -Files: cpan/Sys-Syslog/fallback/syslog.h -Copyright: - Copyright (c) 1982, 1986, 1988, 1993 - The Regents of the University of California. All rights reserved. -License: BSD-3-clause-with-weird-numbering - -Files: cpan/Term-ANSIColor/* -Copyright: - Copyright 1996 Zenin - Copyright 1996, 1997, 1998, 2000, 2001, 2002, 2005, 2006, 2008, 2009, - 2010, 2011, 2012, 2013, 2014, 2015, 2016 Russ Allbery - Copyright 2012 Kurt Starsinic -License: GPL-1+ or Artistic -Comment: - This program is free software; you may redistribute it and/or modify - it under the same terms as Perl itself. - -Files: - cpan/Term-ANSIColor/t/lib/Test/RRA.pm -Copyright: 2013, 2014 The Board of Trustees of the Leland Stanford Junior University -License: Expat - -Files: - cpan/Term-ANSIColor/t/lib/Test/RRA/Config.pm -Copyright: - Copyright 2015, 2016 Russ Allbery - Copyright 2013, 2014 The Board of Trustees of the Leland Stanford Junior University -License: Expat - -Files: cpan/Term-Cap/* -Copyright: 1995-2015 (c) perl5 porters. -License: GPL-1+ or Artistic -Comment: - This software is free software and can be modified and distributed under - the same terms as Perl itself. - -Files: cpan/Test-Harness/* -Copyright: - Copyright (c) 2007-2011, Andy Armstrong . All rights reserved. -License: GPL-1+ or Artistic -Comment: - This module is free software; you can redistribute it and/or - modify it under the same terms as Perl itself. - -Files: cpan/Test-Harness/lib/TAP/Parser.pm -Copyright: - Copyright 2006-2008 Curtis "Ovid" Poe, all rights reserved. -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or modify it - under the same terms as Perl itself. - -Files: cpan/Test-Harness/lib/TAP/Parser/YAMLish/Reader.pm -Copyright: - Copyright 2007-2011 Andy Armstrong. - Portions copyright 2006-2008 Adam Kennedy. -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or modify it - under the same terms as Perl itself. - -Files: cpan/Test-Simple/* -Copyright: - Copyright 2001-2008 by Michael G Schwern . - Copyright 2018 Chad Granum . -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or - modify it under the same terms as Perl itself. - -Files: cpan/Test-Simple/lib/Test/Builder.pm -Copyright: - Copyright 2002-2008 by chromatic and - Michael G Schwern E. -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or - modify it under the same terms as Perl itself. - -Files: cpan/Test-Simple/lib/Test/Builder/Tester/Color.pm -Copyright: - Copyright Mark Fowler 2002. -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it - and/or modify it under the same terms as Perl itself. - -Files: cpan/Test-Simple/lib/Test/Builder/Tester.pm -Copyright: - Copyright Mark Fowler 2002, 2004. - . - Some code taken from Test::More and Test::Catch, written by by - Michael G Schwern . Hence, those parts - Copyright Michael G Schwern 2001. Used and distributed with - permission. - . - This module is copyright 2005 Fergal Daly , some parts - are based on other people's work. -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it - and/or modify it under the same terms as Perl itself. - -Files: cpan/Test-Simple/lib/Test/Tutorial.pod -Copyright: - Copyright 2001 by Michael G Schwern . -License: GPL-1+ or Artistic -Comment: - This documentation is free; you can redistribute it and/or modify it - under the same terms as Perl itself. - . - Irrespective of its distribution, all code examples in these files - are hereby placed into the public domain. You are permitted and - encouraged to use this code in your own programs for fun - or for profit as you see fit. A simple comment in the code giving - credit would be courteous but is not required. - -Files: cpan/Test-Simple/lib/Test/Builder/IO/Scalar.pm -Copyright: - Copyright (c) 1996 by Eryq. All rights reserved. - Copyright (c) 1999,2001 by ZeeGee Software Inc. All rights reserved. -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it - and/or modify it under the same terms as Perl itself. - -Files: cpan/Test-Simple/lib/Test/Tester/CaptureRunner.pm -Copyright: Copyright 2003 by Fergal Daly . -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it - and/or modify it under the same terms as Perl itself. - -Files: - cpan/Test-Simple/lib/Test/use/ok.pm - cpan/Test-Simple/lib/ok.pm -Copyright: none - To the extent possible under law, 唐鳳 has waived all copyright and related - or neighboring rights to L -License: CC0-1.0 -Comment: - ---------------------------------------- - The file links to http://creativecommons.org/publicdomain/zero/1.0/ - and the full license text as retrieved from there can be found at the - end of this file. - -Files: cpan/Text-Balanced/* -Copyright: - Copyright 1997 - 2001 Damian Conway. All Rights Reserved. - Some (minor) parts copyright 2009 Adam Kennedy. -License: GPL-1+ or Artistic -Comment: - This module is free software. It may be used, redistributed and/or - modified under the same terms as Perl itself. - -Files: cpan/Text-ParseWords/* -Copyright: unknown -License: GPL-1+ or Artistic -Comment: - ---------------------------------------- - There are no copyright notices this distribution. - . - This library is free software; you may redistribute and/or modify it - under the same terms as Perl itself. - -Files: cpan/Text-Tabs/* -Copyright: - Copyright (C) 1996-2009 David Muir Sharnoff. - Copyright (C) 2005 Aristotle Pagaltzis - Copyright (C) 2012-2013 Google, Inc. -License: TEXT-TABS - -Files: cpan/Tie-File/* -Copyright: - Tie::File version 0.97 is copyright (C) 2003 Mark Jason Dominus. -License: GPL-2+ or Artistic -Comment: - This library is free software; you may redistribute it and/or modify - it under the same terms as Perl itself. - . - These terms are your choice of any of (1) the Perl Artistic Licence, - or (2) version 2 of the GNU General Public License as published by the - Free Software Foundation, or (3) any later version of the GNU General - Public License. - -Files: - cpan/bignum/* - cpan/Tie-RefHash/* - cpan/Win32API-File/* - dist/ExtUtils-Install/* - dist/Math-BigInt/* - dist/Math-BigInt-FastCalc/* - dist/Math-BigRat/* - dist/Thread-Queue/* -Copyright: unknown -License: GPL-1+ or Artistic -Comment: - This program is free software; you may redistribute it and/or modify - it under the same terms as Perl itself. - ---------------------------------------- - These distributions include no copyright notices but have - the same explicit licensing information. - -Files: cpan/Time-Local/* -Copyright: - Copyright (c) 1997 - 2016 by Graham Barr & Dave Rolsky. -License: GPL-1+ or Artistic -Comment: - This is free software; you can redistribute it and/or modify it under - the same terms as the Perl 5 programming language system itself. - -Files: cpan/Time-Piece/* -Copyright: unknown -License: GPL-1+ or Artistic -Comment: - This module is free software, you may distribute it under the same - terms as Perl. - -Files: cpan/Time-Piece/Piece.xs -Copyright: - strptime copied from freebsd with the following copyright: - Copyright (c) 1994 Powerdog Industries. All rights reserved. -License: GPL-1+ or Artistic, and BSD-4-clause-POWERDOG -Comment: - ---------------------------------------- - The strptime function is licensed under the BSD-like license included - below. It is assumed that the other parts are licensed under the same - terms as the rest of the distribution. - -Files: cpan/Unicode-Collate/* -Copyright: - This module is Copyright(C) 2001-2017, SADAHIRO Tomoyuki. Japan. All - rights reserved. -License: GPL-1+ or Artistic -Comment: - This module is free software; you can redistribute it and/or - modify it under the same terms as Perl itself. - -Files: cpan/Unicode-Collate/Collate/allkeys.txt -Copyright: - Copyright (c) 2016 Unicode, Inc. -License: Unicode -Comment: - For terms of use, see http://www.unicode.org/terms_of_use.html - ---------------------------------------- - See below for the full text of this license as downloaded from the above URL - on Tue, 26 Apr 2011 14:41:24 +0300. - -Files: cpan/Unicode-Normalize/* -Copyright: - Copyright(C) 2001-2012, SADAHIRO Tomoyuki. Japan. All rights reserved. -License: GPL-1+ or Artistic -Comment: - This module is free software; you can redistribute it and/or - modify it under the same terms as Perl itself. - -Files: cpan/Win32/* -Copyright: (c) 1995 Microsoft Corporation. All rights reserved. -License: GPL-1+ or Artistic -Comment: - ---------------------------------------- - There are no copyright notices or license information in this distribution, - but the README file of the separate CPAN distribution at - states: - . - This module is free software; you may redistribute it and/or modify it - under the same terms as Perl itself. - . - The "Perl for Win32" source code was licensed under the same terms - as Perl itself and contained this copyright notice: - . - (c) 1995 Microsoft Corporation. All rights reserved. - Developed by ActiveWare Internet Corp. - -Files: dist/Attribute-Handlers/* -Copyright: - Copyright (c) 2001-2009, Damian Conway. All Rights Reserved. -License: GPL-1+ or Artistic -Comment: - This module is free software. It may be used, redistributed - and/or modified under the same terms as Perl itself. - -Files: - dist/autouse/* - dist/base/* - dist/constant/* - dist/Devel-SelfStubber/* - dist/Dumpvalue/* - dist/Env/* - dist/ExtUtils-Command/* - dist/ExtUtils-Manifest/* - dist/I18N-Collate/* - dist/Safe/* - ext/Fcntl/* - ext/FileCache/* - ext/GDBM_File/* - ext/IPC-Open2/* - ext/IPC-Open3/* - ext/NDBM_File/* - ext/ODBM_File/* - ext/Opcode/* - ext/PerlIO-encoding/* - ext/PerlIO-scalar/* - ext/PerlIO-via/* - ext/POSIX/* - ext/re/* - ext/Socket/* - ext/Sys-Hostname/* - ext/Tie-Hash-NamedCapture/* - ext/Tie-Memoize/* - ext/VMS-DCLsym/* - ext/VMS-Stdio/* -Copyright: unknown -License: GPL-1+ or Artistic -Comment: - ---------------------------------------- - There is no copyright or license information in these distributions. - It is assumed that they are licensed under the same terms as Perl itself. - -Files: dist/B-Deparse/* -Copyright: - Copyright (c) 1998-2000, 2002, 2003, 2004, 2005, 2006 Stephen McCamant. - All rights reserved. -License: GPL-1+ or Artistic -Comment: - This module is free software; you can redistribute and/or modify - it under the same terms as Perl itself. - -Files: dist/Carp/* -Copyright: - Copyright (c) 1994-2013 Larry Wall - Copyright (c) 2011, 2012, 2013 Andrew Main (Zefram) -License: GPL-1+ or Artistic -Comment: - This module is free software. It may be used, redistributed - and/or modified under the same terms as Perl itself. - -Files: dist/Data-Dumper/* -Copyright: - Copyright (c) 1996-2017 Gurusamy Sarathy. All rights reserved. -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or - modify it under the same terms as Perl itself. - -Files: dist/ExtUtils-CBuilder/* -Copyright: - Copyright (c) 2003-2005 Ken Williams. All rights reserved. - Copyright (c) 2012-2017 Ken Williams. All rights reserved. -License: GPL-1+ or Artistic -Comment: - This library is free software; you can redistribute it and/or - modify it under the same terms as Perl itself. - -Files: dist/ExtUtils-ParseXS/* -Copyright: - Copyright 2002-2012 by Ken Williams, David Golden and other contributors. - All rights reserved. -License: GPL-1+ or Artistic -Comment: - This library is free software; you can redistribute it and/or - modify it under the same terms as Perl itself. - . - Based on the ExtUtils::xsubpp code by Larry Wall and the Perl 5 - Porters, which was released under the same license terms. - -Files: dist/Filter-Simple/* -Copyright: - Copyright (c) 2000-2008, Damian Conway. All Rights Reserved. -License: GPL-1+ or Artistic -Comment: - This module is free software. It may be used, redistributed - and/or modified under the same terms as Perl itself. - -Files: dist/if/* -Copyright: This software is copyright (c) 2002 by Ilya Zakharevich. -License: GPL-1+ or Artistic -Comment: - This is free software; you can redistribute it and/or modify it under - the same terms as the Perl 5 programming language system itself. - -Files: dist/I18N-LangTags/* -Copyright: - Copyright 1998+, Sean M. Burke , all rights - reserved. -License: GPL-1+ or Artistic -Comment: - This library is free software; you can redistribute it and/or modify - it under the same terms as Perl itself. - -Files: dist/I18N-LangTags/lib/I18N/LangTags/List.pm -Copyright: - Copyright (c) 2001+ Sean M. Burke. All rights reserved. -License: GPL-1+ or Artistic -Comment: - You can redistribute and/or modify this document under the same terms - as Perl itself. - -Files: dist/IO/* -Copyright: - Copyright (c) 1996-2003 Graham Barr . All rights reserved. -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or - modify it under the same terms as Perl itself. - -Files: dist/IO/lib/IO/Socket.pm -Copyright: - Copyright (c) 1997-8 Graham Barr . All rights reserved. - Copyright 2001, Lincoln Stein . -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or - modify it under the same terms as Perl itself. - . - The atmark() implementation: Copyright 2001, Lincoln Stein . - This module is distributed under the same terms as Perl itself. - Feel free to use, modify and redistribute it as long as you retain - the correct attribution. - -Files: dist/lib/* -Copyright: as above for 'Files: *' -License: GPL-1+ or Artistic -Comment: - This package has the same copyright and license as the perl core. - -Files: dist/Locale-Maketext/* -Copyright: - Copyright 1999-2004, Sean M. Burke , all rights reserved. -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or modify - it under the same terms as Perl itself. - -Files: dist/Locale-Maketext/lib/Locale/Maketext/TPJ13.pod -Copyright: 1999 The Perl Journal. -License: GPL-1+ or Artistic -Comment: - This document may be distributed under the same terms as Perl itself. - -Files: dist/Module-CoreList/* -Copyright: - Copyright (C) 2002-2009 Richard Clamp. All Rights Reserved. -License: GPL-1+ or Artistic -Comment: - This program is free software; you may redistribute it and/or modify - it under the same terms as Perl itself. - -Files: dist/Module-CoreList/corelist -Copyright: - Copyright (c) 2002-2007 by D.H. aka PodMaster -License: GPL-1+ or Artistic -Comment: - This program is distributed under the same terms as perl itself. - -Files: dist/Module-CoreList/lib/Module/CoreList/Utils.pm -Copyright: - Copyright (C) 2013 Chris Williams. All Rights Reserved. -License: GPL-1+ or Artistic -Comment: - This module is free software; you can redistribute it and/or modify it - under the same terms as Perl itself. - -Files: dist/Net-Ping/* -Copyright: - Copyright (c) 2016, cPanel Inc. All rights reserved. - Copyright (c) 2012, Steve Peters. All rights reserved. - Copyright (c) 2002-2003, Rob Brown. All rights reserved. - Copyright (c) 2001, Colin McMillen. All rights reserved. -License: GPL-1+ or Artistic -Comment: - This program is free software; you may redistribute it and/or - modify it under the same terms as Perl itself. - -Files: dist/PathTools/* -Copyright: - Copyright (c) 2004 by the Perl 5 Porters. All rights reserved. -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or modify - it under the same terms as Perl itself. - -Files: dist/PathTools/Cwd.xs -Copyright: - Copyright (c) 2004 by the Perl 5 Porters. All rights reserved. - Copyright (c) 2003 Constantin S. Svintsoff -License: GPL-1+ or Artistic, and BSD-3-clause-GENERIC -Comment: - ---------------------------------------- - The main license applies to most of the code: - . - This program is free software; you can redistribute it and/or modify - it under the same terms as Perl itself. - . - but portions of it have been taken from a BSD variant and are licensed - under the terms of the "BSD-3-clause-GENERIC" license included in this file. - . - dist/PathTools/Cwd.pm states: - . - Portions of the C code in this library are copyright (c) 1994 by the - Regents of the University of California. All rights reserved. The - license on this code is compatible with the licensing of the rest of - the distribution - please see the source code in F for the - details. - . - but, as discussed in - http://rt.cpan.org/Public/Bug/Display.html?id=64116 - this is outdated and dist/PathTools/Cwd.xs itself contains the correct - information. - -Files: dist/Pod-Perldoc/* -Copyright: - Copyright (c) 2002-2007 Sean M. Burke. - Copyright (c) 2011 Mark Allen. All rights reserved. - Copyright (c) 2011 brian d foy. All rights reserved. - Copyright (c) 2017 Mark Allen. -License: GPL-1+ or Artistic -Comment: - This library is free software; you can redistribute it and/or modify it - under the same terms as Perl itself. - -Files: dist/Storable/* -Copyright: - Copyright (c) 1995-2001, Raphael Manfredi - Copyright (c) 2002-2014 by the Perl 5 Porters - Copyright (c) 2016,2017 cPanel Inc - Copyright (c) 2017, Reini Urban -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or modify - it under the same terms as Perl 5 itself. - -Files: dist/Storable/t/forgive.t -Copyright: - Copyright (c) 1995-2000, Raphael Manfredi - (C) Copyright 1997, Universitat Dortmund, all rights reserved. -License: GPL-1+ or Artistic -Comment: - You may redistribute only under the same terms as Perl 5, as specified - in the README file that comes with the distribution. - -Files: - dist/Storable/t/attach_errors.t - dist/Storable/t/attach_singleton.t - dist/Storable/t/circular_hook.t -Copyright: - Copyright 2005, Adam Kennedy. -License: GPL-1+ or Artistic -Comment: - You may redistribute only under the same terms as Perl 5, as specified - in the README file that comes with the distribution. - -Files: - dist/Storable/t/code.t - dist/Storable/t/sig_die.t -Copyright: - Copyright (c) 2002 Slaven Rezic -License: GPL-1+ or Artistic -Comment: - You may redistribute only under the same terms as Perl 5, as specified - in the README file that comes with the distribution. - -Files: dist/threads/* -Copyright: unknown -License: GPL-1+ or Artistic -Comment: - threads is released under the same license as Perl. - -Files: dist/threads-shared/* -Copyright: unknown -License: GPL-1+ or Artistic -Comment: - threads::shared is released under the same license as Perl. - -Files: dist/threads-shared/shared.xs -Copyright: - Copyright (c) 2001-2002, 2006 Larry Wall -License: GPL-1+ or Artistic -Comment: - You may distribute under the terms of either the GNU General Public - License or the Artistic License, as specified in the README file. - -Files: dist/Test/* -Copyright: - Copyright (c) 1998-2000 Joshua Nathaniel Pritikin. - Copyright (c) 2001-2002 Michael G. Schwern. - Copyright (c) 2002-2004 Sean M. Burke. -License: GPL-1+ or Artistic -Comment: - This package is free software and is provided "as is" without express - or implied warranty. It may be used, redistributed and/or modified - under the same terms as Perl itself. - -Files: dist/Time-HiRes/* -Copyright: - Copyright (c) 1996-2002 Douglas E. Wegscheid. All rights reserved. - Copyright (c) 2002-2010 Jarkko Hietaniemi. - Copyright (c) 2011, 2012, 2013 Andrew Main (Zefram) - All rights reserved. -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or modify - it under the same terms as Perl itself. - -Files: dist/XSLoader/* -Copyright: - Copyright (C) 1990-2011 by Larry Wall and others. -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or modify - it under the same terms as Perl itself. - -Files: ext/attributes/* -Copyright: - Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 - by Larry Wall and others -License: GPL-1+ or Artistic -Comment: - You may distribute under the terms of either the GNU General Public - License or the Artistic License, as specified in the README file. - -Files: - ext/Amiga-ARexx/* - ext/Amiga-Exec/* -Copyright: - Copyright (C) 2013 by Andy Broad. -License: GPL-1+ or Artistic -Comment: - There is no license information included. It is assumed that this - distribution is licensed under the same terms as Perl itself. - -Files: ext/B/* -Copyright: - Copyright (c) 1996, 1997, 1998 Malcolm Beattie -License: GPL-1+ or Artistic -Comment: - You may distribute under the terms of either the GNU General Public - License or the Artistic License, as specified in the README file. - -Files: ext/B/B/Concise.pm -Copyright: - Copyright (C) 2000-2003 Stephen McCamant. All rights reserved. -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute and/or modify it - under the same terms as Perl itself. - -Files: ext/Devel-Peek/* -Copyright: - Copyright (c) 1995-98 Ilya Zakharevich. All rights reserved. -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or - modify it under the same terms as Perl itself. - -Files: ext/DynaLoader/* -Copyright: unknown -License: GPL-1+ or Artistic -Comment: - ---------------------------------------- - There is no license information included that clearly applies to the - whole of this distribution. It is assumed that it is licensed under - the same terms as Perl itself. - -Files: ext/DynaLoader/dl_aix.xs -Copyright: - This is an unpublished work copyright (c) 1992 Helios Software GmbH - 3000 Hannover 1, Germany -License: GPL-1+ or Artistic -Comment: - ---------------------------------------- - It is assumed that this file is licensed under the same terms as Perl itself. - -Files: ext/DynaLoader/dl_dld.xs -Copyright: - based upon the file "dl.c", which is Copyright (c) 1994, Larry Wall -License: GPL-1+ or Artistic -Comment: - You may distribute under the terms of either the GNU General Public - License or the Artistic License, as specified in the README file. - -Files: ext/DynaLoader/dl_symbian.xs -Copyright: 2004, Nokia -License: GPL-1+ or Artistic -Comment: - ---------------------------------------- - The license in the file is specified as - . - License: Artistic/GPL - -Files: ext/Errno/* -Copyright: - Copyright (c) 1997-8 Graham Barr. All rights reserved. -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or modify - it under the same terms as Perl itself. - -Files: ext/File-Glob/* -Copyright: unknown -License: Artistic -Comment: - The Perl interface was written by Nathan Torkington , - and is released under the artistic license. Further modifications - were made by Greg Bacon , Gurusamy Sarathy - , and Thomas Wegner . - -Files: - ext/File-Glob/bsd_glob.c - ext/File-Glob/bsd_glob.h -Copyright: - Copyright (c) 1989, 1993 - The Regents of the University of California. All rights reserved. - . - This code is derived from software contributed to Berkeley by - Guido van Rossum. -License: BSD-3-clause - -Files: ext/Hash-Util/* -Copyright: unknown -License: GPL-1+ or Artistic -Comment: - ---------------------------------------- - There is no license information in this distribution. - It is assumed that it is licensed under the same terms as Perl itself. - -Files: ext/Hash-Util/lib/Hash/Util.pm -Copyright: - hv_store() is from Array::RefElem, Copyright 2000 Gisle Aas. -License: GPL-1+ or Artistic -Comment: - ---------------------------------------- - As above, it is assumed that this file is licensed under the same terms - as Perl itself. - . - The copyright and license information of Array::RefElem, as fetched from - , is as - follows: - . - Copyright 2000 Gisle Aas - . - This library is free software; you can redistribute it and/or - modify it under the same terms as Perl itself. - -Files: ext/Hash-Util-FieldHash/* -Copyright: - Copyright (C) 2006-2007 by (Anno Siegel) -License: GPL-1+ or Artistic -Comment: - This library is free software; you can redistribute it and/or modify - it under the same terms as Perl itself, either Perl version 5.8.7 or, - at your option, any later version of Perl 5 you may have available. - -Files: ext/I18N-Langinfo/* -Copyright: - Copyright 2001 by Jarkko Hietaniemi -License: GPL-1+ or Artistic -Comment: - This library is free software; you can redistribute it and/or modify - it under the same terms as Perl itself. - -Files: ext/mro/* -Copyright: - Copyright (c) 2007 Brandon L Black - Copyright (c) 2008,2009 Larry Wall and others -License: GPL-1+ or Artistic -Comment: - You may distribute under the terms of either the GNU General Public - License or the Artistic License, as specified in the README file. - -Files: ext/Pod-Html/* -Copyright: unknown -License: Artistic -Comment: - This program is distributed under the Artistic License. - -Files: ext/SDBM_File/* -Copyright: unknown -License: GPL-1+ or Artistic -Comment: - There is no copyright or license information in this distribution. - It is assumed that it is licensed under the same terms as Perl itself. - -Files: ext/SDBM_File/sdbm/* -Copyright: none -License: SDBM-PUBLIC-DOMAIN - -Files: ext/Win32CORE/* -Copyright: - Copyright (C) 2007 by Larry Wall and others -License: GPL-1+ or Artistic -Comment: - You may distribute under the terms of either the GNU General Public - License or the Artistic License, as specified in the README file. - -Files: ext/XS-APItest/* -Copyright: - Copyright (C) 2002,2004 Tim Jenness, Christian Soeller, Hugo van der Sanden. - All Rights Reserved. - . - Copyright (C) 2009 Andrew Main (Zefram) -License: GPL-1+ or Artistic -Comment: - This library is free software; you can redistribute it and/or modify - it under the same terms as Perl itself. - -Files: ext/XS-Typemap/* -Copyright: - Copyright (C) 2001 Tim Jenness All Rights Reserved. -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or modify - it under the same terms as Perl itself. - -Files: - pod/perldebtut.pod - pod/perlperf.pod -Copyright: - Richard Foley Copyright (c) 2000 -License: GPL-1+ or Artistic -Comment: - ---------------------------------------- - These files are a part of Perl itself, licensed as above. - -Files: pod/perlembed.pod -Copyright: - Copyright (C) 1995, 1996, 1997, 1998 Doug MacEachern and Jon Orwant. All - Rights Reserved. -License: GPL-1+ or Artistic -Comment: - This document may be distributed under the same terms as Perl itself. - -Files: pod/perlexperiment.pod -Copyright: - Copyright 2010, brian d foy -License: GPL-1+ or Artistic -Comment: - You can use and redistribute this document under the same terms as Perl - itself. - -Files: - pod/perlfaq*.pod - pod/perlopentut.pod - pod/perltooc.pod -Copyright: - Copyright (c) 1997-2010 Tom Christiansen, Nathan Torkington, and - other authors as noted. All rights reserved. -License: GPL-1+ or Artistic -Comment: - This documentation is free; you can redistribute it and/or modify it - under the same terms as Perl itself. - . - Irrespective of its distribution, all code examples here are in the public - domain. You are permitted and encouraged to use this code and any - derivatives thereof in your own programs for fun or for profit as you - see fit. A simple comment in the code giving credit to the FAQ would - be courteous but is not required. - -Files: pod/perlfaq.pod -Copyright: - Tom Christiansen wrote the original version of this document. - brian d foy wrote this version. See the - individual perlfaq documents for additional copyright information. -License: GPL-1+ or Artistic -Comment: - This document is available under the same terms as Perl itself. Code - examples in all the perlfaq documents are in the public domain. Use - them as you see fit (and at your own risk with no warranty from anyone). - -Files: - pod/perlfilter.pod - pod/perlthrtut.pod -Copyright: - copyright 1998 The Perl Journal -License: GPL-1+ or Artistic -Comment: - This document may be distributed under the same terms as Perl itself. - -Files: pod/perlglossary.pod -Copyright: - Based on the Glossary of I, Fourth Edition, - by Tom Christiansen, brian d foy, Larry Wall, & Jon Orwant. - Copyright (c) 2000, 1996, 1991, 2012 O'Reilly Media, Inc. -License: GPL-1+ or Artistic -Comment: - This document may be distributed under the same terms as Perl itself. - -Files: pod/perlmodinstall.pod -Copyright: - Copyright (C) 1998, 2002, 2003 Jon Orwant. All Rights Reserved. -License: GPL-1+ or Artistic -Comment: - This document may be distributed under the same terms as Perl itself. - -Files: - pod/perlopentut.pod - pod/perltooc.pod - pod/perltoot.pod -Copyright: - Copyright 1997-1999 Tom Christiansen. -License: GPL-1+ or Artistic -Comment: - This documentation is free; you can redistribute it and/or modify it - under the same terms as Perl itself. - . - Irrespective of its distribution, all code examples in these files are - hereby placed into the public domain. You are permitted and - encouraged to use this code in your own programs for fun or for profit - as you see fit. A simple comment in the code giving credit would be - courteous but is not required. - -Files: pod/perlpodstyle.pod -Copyright: - Copyright 1999, 2000, 2001, 2004, 2006, 2008, 2010, 2015 Russ Allbery - -License: RRA-KEEP-THIS-NOTICE -Comment: - The license text can be found at the end of this file. - -Files: pod/perlreapi.pod -Copyright: - Copyright 2006 Yves Orton and 2007 Ævar Arnfjörð Bjarmason. -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or modify it under - the same terms as Perl itself. - -Files: pod/perlreftut.pod -Copyright: - Copyright 1998 The Perl Journal. -License: GPL-1+ or Artistic -Comment: - This documentation is free; you can redistribute it and/or modify it - under the same terms as Perl itself. - . - Irrespective of its distribution, all code examples in these files are - hereby placed into the public domain. You are permitted and - encouraged to use this code in your own programs for fun or for profit - as you see fit. A simple comment in the code giving credit would be - courteous but is not required. - -Files: - pod/perlrequick.pod - pod/perlretut.pod -Copyright: - Copyright (c) 2000 Mark Kvale - All rights reserved. -License: GPL-1+ or Artistic -Comment: - This document may be distributed under the same terms as Perl itself. - -Files: pod/perlunicook.pod -Copyright: - Copyright (c) 2012 Tom Christiansen -License: GPL-1+ or Artistic -Comment: - This document may be distributed under the same terms as Perl itself. - -Files: pod/perluniintro.pod -Copyright: - Copyright 2001-2011 Jarkko Hietaniemi -License: GPL-1+ or Artistic -Comment: - This document may be distributed under the same terms as Perl itself. - -Files: - Copying - pod/perlgpl.pod -Copyright: - Copyright (C) 1989 Free Software Foundation, Inc. - 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -License: DONT-CHANGE-THE-GPL - -Files: t/io/shm.t -Copyright: - Copyright (C) 1999, Graham Barr . - Copyright (C) 2007-2010, Marcus Holland-Moritz . -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or - modify it under the same terms as Perl itself. - -Files: regen-configure/* -Copyright: - Copyright (c) 1996-1998, Andy Dougherty - Copyright (c) 1999-2011, H.Merijn Brand -License: GPL-1+ or Artistic or Artistic-dist -Comment: - This directory is a snapshot of the upstream metaconfig repository, - containing code originally forked from 'dist' upstream by Larry - Wall and Raphael Manfredi. The 'dist/' subdirectory is unmodified - upstream code, but the other subdirectories contain mixed code. - Some units are dual licensed and some are specifically Artistic-only. - . - The bin/ subdirectory is being filtered from the upstream snapshot - (with the Files-Excluded mechanism at the top of this copyright file) - because it contains files generated from dist sources. The Debian - package build uses the tools from the separate 'dist' package. - . - From regen-configure/U/README: - . - You may distribute the files contained in this distribution - under the terms of either - . - a) the "Artistic License" which comes with Perl, or - . - b) the "Artistic License" which comes with dist, or - . - c) the GNU General Public License as published by the Free - Software Foundation; either version 1, or (at your option) any - later version (see the file "Copying" that comes with the - Perl distribution). - . - The full text of the "Artistic License" which comes with dist - differs slightly from the one that is in /usr/share/common-licenses - on Debian systems, and can be found later in this file under the - "Artistic-dist" tag. - -Files: regen-configure/dist/* -Copyright: - Copyright (c) 1991-1997, 2004-2006, 2012 Raphael Manfredi - Copyright (c) 1996,1998 Andy Dougherty - Copyright (c) 1996, Cygnus Support - Copyright (c) 1996, Spider Boardman - Copyright (c) 1996, Sven Verdoolaege - Copyright (c) 1997, Chip Salzenberg - Copyright (c) 1998 Andy Dougherty - Copyright (c) 1999-2001 Jarkko Hietaniemi -License: Artistic-dist -Comment: - This subdirectory contains unmodified 'dist' code that is - licensed under the modified Artistic license detailed below - under the "Artistic-dist" tag. The different files have - separate copyright notices, collected above. - -Files: regen-configure/U/* -Copyright: - Copyright (c) 1991-1997, 2004-2006, Raphael Manfredi - Copyright (c) 1996-2010, Andy Dougherty - Copyright (c) 1996, Sven Verdoolaege - Copyright (c) 1998-2016 Jarkko Hietaniemi - Copyright (c) 2004-2018 H.Merijn Brand - Copyright (c) 2006-2006, H.Merijn Brand & Nicholas Clark - Copyright (c) 2011, H.Merijn Brand & Tony Cook - Copyright (c) 2014-2014, Karl Williamson & H.Merijn Brand - Copyright (c) 2016 H.Merijn Brand & Todd Rinaldo - Copyright (c) 2016 Tony Cook - Copyright (c) 2017, Lukas Mai - Copyright (c) 2017 Dagfinn Ilmari Mannsåker - Copyright (c) 2017, Karl Williamson -License: Artistic or GPL-1+ or Artistic-dist -Comment: - From regen-configure/U/README: - . - The units in the "modified" directory have been derived from units - associated with the metaconfig program of Raphael Manfredi's "dist" - distribution. These units list Raphael Manfredi as the Copyright holder. - dist is distributed under a modified version of the Perl Artistic License. - Clause 7 of this modified license as contained in dist-3.0-pl60 provides: - . - 7. You may reuse parts of this Package in your own programs, provided - that you explicitly state where you got them from, in the source code - (and, left to your courtesy, in the documentation), duplicating - all the associated copyright notices and disclaimers. Besides - your changes, if any, must be clearly marked as such. Parts reused - that way will no longer fall under this license if, and only if, - the name of your program(s) have no immediate connection with the - name of the Package itself or its associated programs. You may then - apply whatever restrictions you wish on the reused parts or choose - to place them in the Public Domain--this will apply only within the - context of your package. - . - In accordance with this clause, the versions of these units - contained here are made available under the same terms as the - rest of the units. - . - It is assumed that the above relicensing also applies to all files in - the other subdirectories that are declared to be licensed under the - same modified Artistic license. - . - The modified license can be found later in this file under the - "Artistic-dist" tag. - -Files: utf8.c -Copyright: - Portions Copyright (c) 2008-2009 Bjoern Hoehrmann -License: GPL-1+ or Artistic, and Expat -Comment: - This program is free software; you can redistribute it and/or modify - it under the terms of either: - . - a) the GNU General Public License as published by the Free Software - Foundation; either version 1, or (at your option) any later - version, or - . - b) the "Artistic License" which comes with Perl. - . - Additionally, the tables included this file come from - http://bjoern.hoehrmann.de/utf-8/decoder/dfa/, under the Expat license. - -Files: debian/* -Copyright: - Portions of the Debian packaging are - Copyright 2008-2011 Niko Tyni - Copyright 2011 Dominic Hargreaves - The other people listed in debian/changelog are most probably - copyright holders too, but they have not included explicit copyright - or licensing information. -License: GPL-1+ or Artistic -Comment: - ---------------------------------------- - The portions by Niko Tyni and Dominic Hargreaves may be redistributed - and/or modified under the same terms as Perl itself. It is assumed that - other contributors have placed their contributions under a compatible - license. - -License: LGPL-2.1 - On Debian GNU/Linux systems, the complete text of the LGPL 2.1 - license can be found in `/usr/share/common-licenses/LGPL-2.1'. - -License: GPL-1+ - On Debian GNU/Linux systems, the complete text of the GNU General - Public License can be found in `/usr/share/common-licenses/GPL-1'. - -License: GPL-2+ - On Debian GNU/Linux systems, the complete text of version 2 of - the GNU General Public License can be found in - `/usr/share/common-licenses/GPL-2'. - -License: Artistic - On Debian GNU/Linux systems, the complete text of the - Artistic Licence can be found in `/usr/share/common-licenses/Artistic'. - -License: Artistic-2 - Copyright (c) 2000-2006, The Perl Foundation. - . - Everyone is permitted to copy and distribute verbatim copies of this - license document, but changing it is not allowed. - . - Preamble - . - This license establishes the terms under which a given free software - Package may be copied, modified, distributed, and/or redistributed. - The intent is that the Copyright Holder maintains some artistic - control over the development of that Package while still keeping the - Package available as open source and free software. - . - You are always permitted to make arrangements wholly outside of this - license directly with the Copyright Holder of a given Package. If the - terms of this license do not permit the full use that you propose to - make of the Package, you should contact the Copyright Holder and seek - a different licensing arrangement. - . - Definitions - . - "Copyright Holder" means the individual(s) or organization(s) named in - the copyright notice for the entire Package. - . - "Contributor" means any party that has contributed code or other - material to the Package, in accordance with the Copyright Holder's - procedures. - . - "You" and "your" means any person who would like to copy, distribute, - or modify the Package. - . - "Package" means the collection of files distributed by the Copyright - Holder, and derivatives of that collection and/or of those files. A - given Package may consist of either the Standard Version, or a - Modified Version. - . - "Distribute" means providing a copy of the Package or making it - accessible to anyone else, or in the case of a company or - organization, to others outside of your company or organization. - . - "Distributor Fee" means any fee that you charge for Distributing this - Package or providing support for this Package to another party. It - does not mean licensing fees. - . - "Standard Version" refers to the Package if it has not been modified, - or has been modified only in ways explicitly requested by the - Copyright Holder. - . - "Modified Version" means the Package, if it has been changed, and such - changes were not explicitly requested by the Copyright Holder. - . - "Original License" means this Artistic License as Distributed with the - Standard Version of the Package, in its current version or as it may - be modified by The Perl Foundation in the future. - . - "Source" form means the source code, documentation source, and - configuration files for the Package. - . - "Compiled" form means the compiled bytecode, object code, binary, or - any other form resulting from mechanical transformation or translation - of the Source form. - . - Permission for Use and Modification Without Distribution - . - (1) You are permitted to use the Standard Version and create and use - Modified Versions for any purpose without restriction, provided that - you do not Distribute the Modified Version. - . - Permissions for Redistribution of the Standard Version - . - (2) You may Distribute verbatim copies of the Source form of the - Standard Version of this Package in any medium without restriction, - either gratis or for a Distributor Fee, provided that you duplicate - all of the original copyright notices and associated disclaimers. At - your discretion, such verbatim copies may or may not include a - Compiled form of the Package. - . - (3) You may apply any bug fixes, portability changes, and other - modifications made available from the Copyright Holder. The resulting - Package will still be considered the Standard Version, and as such - will be subject to the Original License. - . - Distribution of Modified Versions of the Package as Source - . - (4) You may Distribute your Modified Version as Source (either gratis - or for a Distributor Fee, and with or without a Compiled form of the - Modified Version) provided that you clearly document how it differs - from the Standard Version, including, but not limited to, documenting - any non-standard features, executables, or modules, and provided that - you do at least ONE of the following: - . - (a) make the Modified Version available to the Copyright Holder of the - Standard Version, under the Original License, so that the Copyright - Holder may include your modifications in the Standard Version. (b) - ensure that installation of your Modified Version does not prevent the - user installing or running the Standard Version. In addition, the - Modified Version must bear a name that is different from the name of - the Standard Version. (c) allow anyone who receives a copy of the - Modified Version to make the Source form of the Modified Version - available to others under (i) the Original License or (ii) a license - that permits the licensee to freely copy, modify and redistribute the - Modified Version using the same licensing terms that apply to the copy - that the licensee received, and requires that the Source form of the - Modified Version, and of any works derived from it, be made freely - available in that license fees are prohibited but Distributor Fees are - allowed. - . - Distribution of Compiled Forms of the Standard Version or Modified - Versions without the Source - . - (5) You may Distribute Compiled forms of the Standard Version without - the Source, provided that you include complete instructions on how to - get the Source of the Standard Version. Such instructions must be - valid at the time of your distribution. If these instructions, at any - time while you are carrying out such distribution, become invalid, you - must provide new instructions on demand or cease further distribution. - If you provide valid instructions or cease distribution within thirty - days after you become aware that the instructions are invalid, then - you do not forfeit any of your rights under this license. - . - (6) You may Distribute a Modified Version in Compiled form without the - Source, provided that you comply with Section 4 with respect to the - Source of the Modified Version. - . - Aggregating or Linking the Package - . - (7) You may aggregate the Package (either the Standard Version or - Modified Version) with other packages and Distribute the resulting - aggregation provided that you do not charge a licensing fee for the - Package. Distributor Fees are permitted, and licensing fees for other - components in the aggregation are permitted. The terms of this license - apply to the use and Distribution of the Standard or Modified Versions - as included in the aggregation. - . - (8) You are permitted to link Modified and Standard Versions with - other works, to embed the Package in a larger work of your own, or to - build stand-alone binary or bytecode versions of applications that - include the Package, and Distribute the result without restriction, - provided the result does not expose a direct interface to the Package. - . - Items That are Not Considered Part of a Modified Version - . - (9) Works (including, but not limited to, modules and scripts) that - merely extend or make use of the Package, do not, by themselves, cause - the Package to be a Modified Version. In addition, such works are not - considered parts of the Package itself, and are not subject to the - terms of this license. - . - General Provisions - . - (10) Any use, modification, and distribution of the Standard or - Modified Versions is governed by this Artistic License. By using, - modifying or distributing the Package, you accept this license. Do not - use, modify, or distribute the Package, if you do not accept this - license. - . - (11) If your Modified Version has been derived from a Modified Version - made by someone other than you, you are nevertheless required to - ensure that your Modified Version complies with the requirements of - this license. - . - (12) This license does not grant you the right to use any trademark, - service mark, tradename, or logo of the Copyright Holder. - . - (13) This license includes the non-exclusive, worldwide, - free-of-charge patent license to make, have made, use, offer to sell, - sell, import and otherwise transfer the Package with respect to any - patent claims licensable by the Copyright Holder that are necessarily - infringed by the Package. If you institute patent litigation - (including a cross-claim or counterclaim) against any party alleging - that the Package constitutes direct or contributory patent - infringement, then this Artistic License to you shall terminate on the - date that such litigation is filed. - . - (14) Disclaimer of Warranty: THE PACKAGE IS PROVIDED BY THE COPYRIGHT - HOLDER AND CONTRIBUTORS "AS IS' AND WITHOUT ANY EXPRESS OR IMPLIED - WARRANTIES. THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A - PARTICULAR PURPOSE, OR NON-INFRINGEMENT ARE DISCLAIMED TO THE EXTENT - PERMITTED BY YOUR LOCAL LAW. UNLESS REQUIRED BY LAW, NO COPYRIGHT - HOLDER OR CONTRIBUTOR WILL BE LIABLE FOR ANY DIRECT, INDIRECT, - INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING IN ANY WAY OUT OF THE USE - OF THE PACKAGE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -License: BZIP - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - . - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - . - 2. The origin of this software must not be misrepresented; you must - not claim that you wrote the original software. If you use this - software in a product, an acknowledgment in the product - documentation would be appreciated but is not required. - . - 3. Altered source versions must be plainly marked as such, and must - not be misrepresented as being the original software. - . - 4. The name of the author may not be used to endorse or promote - products derived from this software without specific prior written - permission. - . - THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS - OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY - DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, - WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING - NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS - SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - . - Julian Seward, jseward@bzip.org - bzip2/libbzip2 version 1.0.5 of 10 December 2007 - -License: ZLIB - This software is provided 'as-is', without any express or implied - warranty. In no event will the authors be held liable for any damages - arising from the use of this software. - . - Permission is granted to anyone to use this software for any purpose, - including commercial applications, and to alter it and redistribute it - freely, subject to the following restrictions: - . - 1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. - 2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. - 3. This notice may not be removed or altered from any source distribution. - -License: Expat - Permission is hereby granted, free of charge, to any person obtaining a copy - of this software and associated documentation files (the "Software"), to deal - in the Software without restriction, including without limitation the rights - to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - copies of the Software, and to permit persons to whom the Software is - furnished to do so, subject to the following conditions: - . - The above copyright notice and this permission notice shall be included in - all copies or substantial portions of the Software. - . - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS - OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL - THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING - FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER - DEALINGS IN THE SOFTWARE. - -License: BSD-3-clause-with-weird-numbering - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - 4. Neither the name of the University nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - . - THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND - ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -License: BSD-4-clause-POWERDOG - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer - in the documentation and/or other materials provided with the - distribution. - 3. All advertising materials mentioning features or use of this - software must display the following acknowledgement: - This product includes software developed by Powerdog Industries. - 4. The name of Powerdog Industries may not be used to endorse or - promote products derived from this software without specific prior - written permission. - . - THIS SOFTWARE IS PROVIDED BY POWERDOG INDUSTRIES ``AS IS'' AND ANY - EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE POWERDOG INDUSTRIES BE - LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR - BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, - WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE - OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, - EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -License: Unicode - EXHIBIT 1 - UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE - . - Unicode Data Files include all data files under the directories - http://www.unicode.org/Public/, http://www.unicode.org/reports/, - and http://www.unicode.org/cldr/data/ . Unicode Data Files - do not include PDF online code charts under the directory - http://www.unicode.org/Public/. Software includes any - source code published in the Unicode Standard or under the directories - http://www.unicode.org/Public/, http://www.unicode.org/reports/, - and http://www.unicode.org/cldr/data/. - . - NOTICE TO USER: Carefully read the following legal agreement. BY - DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING UNICODE - INC.'S DATA FILES ("DATA FILES"), AND/OR SOFTWARE ("SOFTWARE"), YOU - UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE TERMS AND - CONDITIONS OF THIS AGREEMENT. IF YOU DO NOT AGREE, DO NOT DOWNLOAD, - INSTALL, COPY, DISTRIBUTE OR USE THE DATA FILES OR SOFTWARE. - . - COPYRIGHT AND PERMISSION NOTICE - . - Copyright © 1991-2011 Unicode, Inc. All rights - reserved. Distributed under the Terms of Use in - http://www.unicode.org/copyright.html. - . - Permission is hereby granted, free of charge, to any person - obtaining a copy of the Unicode data files and any associated - documentation (the "Data Files") or Unicode software and any - associated documentation (the "Software") to deal in the Data Files - or Software without restriction, including without limitation - the rights to use, copy, modify, merge, publish, distribute, - and/or sell copies of the Data Files or Software, and to permit - persons to whom the Data Files or Software are furnished to do so, - provided that (a) the above copyright notice(s) and this permission - notice appear with all copies of the Data Files or Software, - (b) both the above copyright notice(s) and this permission notice - appear in associated documentation, and (c) there is clear notice - in each modified Data File or in the Software as well as in the - documentation associated with the Data File(s) or Software that - the data or software has been modified. - . - THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY - OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE - WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE - AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE - COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE LIABLE - FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, - OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR - PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER - TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR - PERFORMANCE OF THE DATA FILES OR SOFTWARE. - . - Except as contained in this notice, the name of a copyright holder - shall not be used in advertising or otherwise to promote the sale, - use or other dealings in these Data Files or Software without - prior written authorization of the copyright holder. - -License: BSD-3-clause-GENERIC - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - 3. The names of the authors may not be used to endorse or promote - products derived from this software without specific prior written - permission. - . - THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND - ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -License: BSD-3-clause - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - 3. Neither the name of the University nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - . - THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND - ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -License: REGCOMP - Permission is granted to anyone to use this software for any - purpose on any computer system, and to redistribute it freely, - subject to the following restrictions: - . - 1. The author is not responsible for the consequences of use of - this software, no matter how awful, even if they arise - from defects in it. - . - 2. The origin of this software must not be misrepresented, either - by explicit claim or by omission. - . - 3. Altered versions must be plainly marked as such, and must not - be misrepresented as being the original software. - -License: TEXT-TABS - This module may be modified, used, copied, and redistributed at your own risk. - . - Although allowed by the preceding license, please do not publicly - redistribute modified versions of this code with the name "Text::Tabs" - unless it passes the unmodified Text::Tabs test suite. - -License: S2P - This program is free and open software. You may use, modify, - distribute, and sell this program (and any modified variants) in any - way you wish, provided you do not restrict others from doing the same. - -License: DONT-CHANGE-THE-GPL - Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed. - -License: SDBM-PUBLIC-DOMAIN - From ext/SDBM_File/sdbm/README: - . - The entire sdbm library package, as authored by me, Ozan S. Yigit, - is hereby placed in the public domain. As such, the author is not - responsible for the consequences of use of this software, no - matter how awful, even if they arise from defects in it. There is no - expressed or implied warranty for the sdbm library. - . - Since the sdbm library package is in the public domain, this original - release or any additional public-domain releases of the modified - original cannot possibly (by definition) be withheld from you. Also - by definition, You (singular) have all the rights to this code - (including the right to sell without permission, the right to - hoard[3] and the right to do other icky things as you see fit) - but those rights are also granted to everyone else. - . - Please note that all previous distributions of this software - contained a copyright (which is now dropped) to protect its origins - and its current public domain status against any possible claims - and/or challenges. - -License: GPL-3+-WITH-BISON-EXCEPTION - 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 3 of the License, or - (at your option) any later version. - . - 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. - . - You should have received a copy of the GNU General Public License - along with this program. If not, see . - . - As a special exception, you may create a larger work that contains - part or all of the Bison parser skeleton and distribute that work - under terms of your choice, so long as that work isn't itself a - parser generator using the skeleton or a modified version thereof - as a parser skeleton. Alternatively, if you modify or redistribute - the parser skeleton itself, you may (at your option) remove this - special exception, which will cause the skeleton and the resulting - Bison output files to be licensed under the GNU General Public - License without this special exception. - . - This special exception was added by the Free Software Foundation in - version 2.2 of Bison. - -License: HSIEH-DERIVATIVE - The derivative content includes raw computer source code, ideas, - opinions, and excerpts whose original source is covered under another - license and transformations of such derivatives. Note that mere excerpts - by themselves (with the exception of raw source code) are not considered - derivative works under this license. Use and redistribution is limited - to the following conditions: - . - One may not create a derivative work which, in any way, violates the - Paul Hsieh exposition license described above on the original content. - . - One may not apply a license to a derivative work that precludes - anyone else from using and redistributing derivative content. - . - One may not attribute any derivative content to authors not involved - in the creation of the content, though an attribution to the author - is not necessary. - -License: HSIEH-BSD - Copyright (c) 2010, Paul Hsieh - All rights reserved. - . - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - . - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - . - Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - . - Neither my name, Paul Hsieh, nor the names of any other contributors - to the code use may not be used to endorse or promote products - derived from this software without specific prior written permission. - . - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT - OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -License: CC0-1.0 - Statatement of Purpose - . - 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"). - . - 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. - . - 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. - . - 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: - . - the right to reproduce, adapt, distribute, perform, display, - communicate, and translate a Work; - . - moral rights retained by the original author(s) and/or performer(s); - . - publicity and privacy rights pertaining to a person's image or - likeness depicted in a Work; - . - rights protecting against unfair competition in regards to a Work, - subject to the limitations in paragraph 4(a), below; - . - rights protecting the extraction, dissemination, use and reuse of data in a Work; - . - 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 - . - other similar, equivalent or corresponding rights throughout the world - based on applicable law or treaty, and any national implementations - thereof. - . - 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. - . - 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. - . - 4. Limitations and Disclaimers. - . - No trademark or patent rights held by Affirmer are waived, - abandoned, surrendered, licensed or otherwise affected by this - document. - . - 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. - . - 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. - . - 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. -Comment: - This license text was retrieved from - - on Fri, 05 Feb 2016 20:30:28 +0200 - -License: RRA-KEEP-THIS-NOTICE - Copying and distribution of this file, with or without modification, are - permitted in any medium without royalty provided the copyright notice and - this notice are preserved. This file is offered as-is, without any - warranty. - -License: Artistic-dist - The "Artistic License" - . - Preamble - . - The intent of this document is to state the conditions under which a - Package may be copied, such that the Copyright Holder maintains some - semblance of artistic control over the development of the Package, - while giving the users of the package the right to use and distribute - the Package in a more-or-less customary fashion, plus the right to make - reasonable modifications. - . - It also grants you the rights to reuse parts of a Package in your own - programs without transferring this License to those programs, provided - that you meet some reasonable requirements. - . - Definitions: - . - "Package" refers to the collection of files distributed by the - Copyright Holder, and derivatives of that collection of files - created through textual modification. - . - "Standard Version" refers to such a Package if it has not been - modified, or has been modified in accordance with the wishes - of the Copyright Holder as specified below. - . - "Copyright Holder" is whoever is named in the copyright or - copyrights for the package. - . - "You" is you, if you're thinking about copying or distributing - this Package. - . - "Reasonable copying fee" is whatever you can justify on the - basis of media cost, duplication charges, time of people involved, - and so on. (You will not be required to justify it to the - Copyright Holder, but only to the computing community at large - as a market that must bear the fee.) - . - "Freely Available" means that no fee is charged for the item - itself, though there may be fees involved in handling the item. - It also means that recipients of the item may redistribute it - under the same conditions they received it. - . - 1. You may make and give away verbatim copies of the source form of the - Standard Version of this Package without restriction, provided that you - duplicate all of the original copyright notices and associated disclaimers. - . - 2. You may apply bug fixes, portability fixes and other modifications - derived from the Public Domain or from the Copyright Holder. A Package - modified in such a way shall still be considered the Standard Version. - . - 3. You may otherwise modify your copy of this Package in any way, provided - that you insert a prominent notice in each changed file stating how and - when you changed that file, and provided that you do at least ONE of the - following: - . - a) place your modifications in the Public Domain or otherwise make them - Freely Available, such as by posting said modifications to Usenet or - an equivalent medium, or placing the modifications on a major archive - site such as uunet.uu.net, or by allowing the Copyright Holder to include - your modifications in the Standard Version of the Package. - . - b) use the modified Package only within your corporation or organization. - . - c) rename any non-standard executables so the names do not conflict - with standard executables, which must also be provided, and provide - a separate manual page for each non-standard executable that clearly - documents how it differs from the Standard Version. - . - d) make other distribution arrangements with the Copyright Holder. - . - 4. You may distribute the programs of this Package in object code or - executable form, provided that you do at least ONE of the following: - . - a) distribute a Standard Version of the executables and library files, - together with instructions (in the manual page or equivalent) on where - to get the Standard Version. - . - b) accompany the distribution with the machine-readable source of - the Package with your modifications. - . - c) give non-standard executables non-standard names, and clearly - document the differences in manual pages (or equivalent), together - with instructions on where to get the Standard Version. - . - d) make other distribution arrangements with the Copyright Holder. - . - 5. You may charge a reasonable copying fee for any distribution of this - Package. You may charge any fee you choose for support of this - Package. You may not charge a fee for this Package itself. However, - you may distribute this Package in aggregate with other (possibly - commercial) programs as part of a larger (possibly commercial) software - distribution provided that you do not advertise this Package as a - product of your own. - . - 6. The scripts and library files supplied as input to or produced as - output from the programs of this Package do not automatically fall - under the copyright of this Package, but belong to whoever generated - them, and may be sold commercially, and may be aggregated with this - Package. If such scripts or library files are aggregated with this - Package via the so-called "undump" or "unexec" methods of producing a - binary executable image, then distribution of such an image shall - neither be construed as a distribution of this Package nor shall it - fall under the restrictions of Paragraphs 3 and 4, provided that you do - not represent such an executable image as a Standard Version of this - Package. - . - 7. You may reuse parts of this Package in your own programs, provided that - you explicitly state where you got them from, in the source code (and, left - to your courtesy, in the documentation), duplicating all the associated - copyright notices and disclaimers. Besides your changes, if any, must be - clearly marked as such. Parts reused that way will no longer fall under this - license if, and only if, the name of your program(s) have no immediate - connection with the name of the Package itself or its associated programs. - You may then apply whatever restrictions you wish on the reused parts or - choose to place them in the Public Domain--this will apply only within the - context of your package. - . - 8. The name of the Copyright Holder may not be used to endorse or promote - products derived from this software without specific prior written permission. - . - 9. THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR - IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED - WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. - . - The End -Comment: - This license was copied from the upstream 'dist' repository, - https://github.com/rmanfredi/dist.git - at Sun, 15 Oct 2017 13:07:36 +0300. - - ----------------------------------------- -perl-modules-5.28 version 5.28.1-6+deb10u1 - - -Copyright: - -Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ -Files-Excluded-regen-configure: bin/* -Upstream-Name: perl -Source: http://www.perl.com/CPAN/src/5.0/ -Comment: - This package was debianized by Brendan O'Dea on - Thu, 17 Aug 2000 16:10:54 +1000. - . - Upstream Authors: - . - Larry Wall et. al. (see /usr/share/doc/perl/AUTHORS). - . - Last checked against: Perl 5.28.1 - -Files: * -Copyright: - Perl is Copyright (C) 1987-2018 by Larry Wall and others. All rights reserved. -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or modify - it under the terms of either: - . - a) the GNU General Public License as published by the Free Software - Foundation; either version 1, or (at your option) any later - version, or - . - b) the "Artistic License" which comes with Perl. - ---------------------------------------- - The directories ext/, dist/, and cpan/ contain separate distributions - that have been bundled with the Perl core. The copyright and license - status of these have been detailed separately below. - . - It is assumed that all the other files are part of Perl and share the - above copyright and license information unless explicitly specified - differently. Only the exceptions have been detailed below. - . - As a small portion of the files are indeed licensed differently from - the above, all the other licenses have been collected and/or duplicated - at the end of this file to facilitate review. - -Files: perlio.c -Copyright: - Copyright (c) 1996-2006, Nick Ing-Simmons - Copyright (c) 2006, 2007, 2008 Larry Wall and others -License: GPL-1+ or Artistic -Comment: - This file is a part of Perl itself, licensed as above. - -Files: malloc.c -Copyright: - Modifications Copyright Ilya Zakharevich 1996-99. -License: GPL-1+ or Artistic -Comment: - This file is a part of Perl itself, licensed as above. - -Files: pp_sort.c -Copyright: - Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, - 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 by Larry Wall and others - . - Copyright (C) Tom Horsley, 1997. All rights reserved. -License: GPL-1+ or Artistic -Comment: - This file is a part of Perl itself, licensed as above. - -Files: mro.c -Copyright: - Copyright (c) 2007 Brandon L Black - Copyright (c) 2007, 2008 Larry Wall and others -License: GPL-1+ or Artistic -Comment: - This file is a part of Perl itself, licensed as above. - -Files: perl.c -Copyright: - Copyright 1987-2018, Larry Wall - MS-DOS port Copyright (c) 1989, 1990, Diomidis Spinellis - OS/2 port Copyright (c) 1990, 1991, Raymond Chen, Kai Uwe Rommel - Version 5 port Copyright (c) 1994-2002, Andreas Kaiser, Ilya Zakharevich -License: GPL-1+ or Artistic -Comment: - This file is a part of Perl itself, licensed as above. - ---------------------------------------- - These copyright notices are embedded in the code, and possibly apply - to other files as well. - -Files: time64.c -Copyright: - Copyright (c) 2007-2008 Michael G Schwern - . - This software originally derived from Paul Sheer's pivotal_gmtime_r.c. -License: Expat - -Files: - regcomp.c - regexec.c -Copyright: - Copyright (c) 1986 by University of Toronto. - Written by Henry Spencer. Not derived from licensed software. - . - Alterations to Henry's code are... - Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, - 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 - by Larry Wall and others - . - NOTE: this is derived from Henry Spencer's regexp code, and should not - confused with the original package (see point 3 below). Thanks, Henry! -License: REGCOMP, and GPL-1+ or Artistic -Comment: - ---------------------------------------- - The "alterations to Henry's code" have the following license information: - . - You may distribute under the terms of either the GNU General Public - License or the Artistic License, as specified in the README file. - -Files: perly.h -Copyright: - Copyright (C) 1984, 1989-1990, 2000-2013 Free Software Foundation, Inc. -License: GPL-3+-WITH-BISON-EXCEPTION - -Files: mkppport -Copyright: - Copyright 2006 by Marcus Holland-Moritz . -License: GPL-1+ or Artistic -Comment: - This program is free software; you may redistribute it - and/or modify it under the same terms as Perl itself. - -Files: lib/unicore/*.txt -Copyright: - © 1991-2016 Unicode®, Inc. -License: Unicode -Comment: - The license is given as - . - For terms of use, see http://www.unicode.org/terms_of_use.html - . - See the end of this file for the full text of this license as downloaded - from the above URL on Tue, 26 Apr 2011 14:41:24 +0300. - -Files: lib/deprecate.pm -Copyright: - Copyright (C) 2009, 2011 -License: GPL-1+ or Artistic -Comment: - This library is free software; you can redistribute it and/or modify - it under the same terms as Perl itself, either Perl version 5.10.0 or, - at your option, any later version of Perl 5 you may have available. - -Files: lib/Exporter.pm -Copyright: unknown -License: GPL-1+ or Artistic -Comment: - This library is free software. You can redistribute it - and/or modify it under the same terms as Perl itself. - -Files: lib/FindBin.pm -Copyright: - Copyright (c) 1995 Graham Barr & Nick Ing-Simmons. All rights reserved. -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or modify it - under the same terms as Perl itself. - -Files: symbian/* -Copyright: - Copyright (c) Nokia 2004-2005. All rights reserved. -License: GPL-1+ or Artistic -Comment: - All files are licensed under the same terms as Perl itself. - -Files: symbian/PerlUiS90.rss -Copyright: - Copyright (c) 2006 Alexander Smishlajev. All rights reserved. -License: GPL-1+ or Artistic -Comment: - The PerlUi class is licensed under the same terms as Perl itself. - -Files: README.symbian -Copyright: - Copyright (c) 2004-2005 Nokia. All rights reserved. - Copyright (c) 2006-2007 Jarkko Hietaniemi. -License: GPL-1+ or Artistic -Comment: - The Symbian port is licensed under the same terms as Perl itself. - -Files: t/op/split_unicode.t -Copyright: - Copyright (c) 1991-2006 Unicode, Inc. -License: GPL-1+ or Artistic, and Unicode -Comment: - ---------------------------------------- - The test data was extracted from the Unicode Character Database. - . - It is assumed that the test code is licensed under the same terms - as Perl. - -Files: regen/reentr.pl -Copyright: Copyright (c) 2002,2003 Jarkko Hietaniemi -License: GPL-1+ or Artistic -Comment: - You may distribute under the terms of either the GNU General Public - License or the Artistic License, as specified in the README file. - -Files: - Porting/checkansi.pl - Porting/valgrindpp.pl -Copyright: - Copyright 2003, 2007 by Marcus Holland-Moritz . -License: GPL-1+ or Artistic -Comment: - This program is free software; you may redistribute it - and/or modify it under the same terms as Perl itself. - -Files: Porting/config_h.pl -Copyright: - Copyright (C) 2005-2012 by H.Merijn Brand (m)'12 [22-09-2012] -License: GPL-1+ or Artistic -Comment: - You may distribute under the terms of either the GNU General Public - License or the Artistic License, as specified in the README file. - -Files: Porting/git-deltatool -Copyright: - This software is copyright (c) 2010 by David Golden. -License: GPL-1+ or Artistic -Comment: - This is free software; you can redistribute it and/or modify it under the same - terms as the Perl 5 programming language system itself. - -Files: NetWare/* -Copyright: - Copyright (C) 2000-01, 2002 Novell, Inc. All Rights Reserved. -License: GPL-1+ or Artistic -Comment: - You may distribute under the terms of either the GNU General Public - License or the Artistic License, as specified in the README file. - -Files: - vms/vms.c - vms/vmsish.h -Copyright: - Copyright (C) 1993-2015 by Charles Bailey and others. -License: GPL-1+ or Artistic -Comment: - You may distribute under the terms of either the GNU General Public - License or the Artistic License, as specified in the README file. - -Files: x2p/s2p.PL -Copyright: unknown -License: S2P - -Files: win32/fcrypt.c -Copyright: - Copyright (C) 1993 Eric Young - see README for more details -License: GPL-1+ or Artistic -Comment: - This file is a part of Perl itself, licensed as above. - -Files: cpan/Archive-Tar/* -Copyright: 2002 - 2009 Jos Boumans . All rights reserved. -License: GPL-1+ or Artistic -Comment: - This library is free software; you may redistribute and/or modify - it under the same terms as Perl itself. - -Files: - cpan/AutoLoader/* - dist/SelfLoader/* -Copyright: This package has the same copyright and license as the perl core: - Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999, - 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2011, 2012 - by Larry Wall and others - . - All rights reserved. -License: GPL-1+ or Artistic -Comment: - This package has the same copyright and license as the perl core. - -Files: cpan/autodie/* -Copyright: 2008-2009, Paul Fenwick -License: GPL-1+ or Artistic -Comment: - This module is free software, you may distribute it under the - same terms as Perl itself. - -Files: - cpan/autodie/lib/autodie/exception/system.pm - cpan/autodie/lib/autodie/exception.pm -Copyright: 2008-2009, Paul Fenwick -License: GPL-1+ or Artistic -Comment: - This is free software. You may modify and/or redistribute this - code under the same terms as Perl 5.10 itself, or, at your option, - any later version of Perl 5. - -Files: - cpan/autodie/lib/autodie/Scope/GuardStack.pm - cpan/autodie/lib/autodie/Util.pm -Copyright: Copyright 2013-2014, Niels Thykier -License: GPL-1+ or Artistic -Comment: - This module is free software. You may distribute it under the - same terms as Perl itself. - -Files: cpan/B- -Copyright: - Copyright (c) 1996, 1997 Malcolm Beattie - Copyright (c) 2008, 2010, 2013, 2014 Reini Urban -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or modify - it under the terms of either: - . - a) the GNU General Public License as published by the Free - Software Foundation; either version 1, or (at your option) any - later version, or - . - b) the "Artistic License" which comes with this kit. - -Files: cpan/Compress-Raw-Bzip2/* -Copyright: Copyright (c) 2005-2017 Paul Marquess. All rights reserved. -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it - and/or modify it under the same terms as Perl itself. - -Files: cpan/Compress-Raw-Bzip2/bzip2-src/* -Copyright: Copyright(C) 1996-2010 Julian Seward. All rights reserved -Comment: - ---------------------------------------- - cpan/Compress-Raw-Bzip2/bzip2-src/README states: - Note that the files bzip2.c, bzip2recover.c, bzlib.c & decompress.c - have been modified to allow them to build with a C++ compiler. - The file bzip2-src/bzip2-cpp.patch contains the patch - that was used to modify the original source. - but the patch has apparently been filtered out when including the software - into the Perl core distribution. -License: BZIP - -Files: cpan/Compress-Raw-Zlib/* -Copyright: Copyright (c) 2005-2017 Paul Marquess. All rights reserved. -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it - and/or modify it under the same terms as Perl itself. - -Files: cpan/Compress-Raw-Zlib/zlib-src/* -Copyright: - Copyright (C) 1995-2017 Jean-loup Gailly and Mark Adler -License: ZLIB - -Files: cpan/Config-Perl-V/* -Copyright: - Copyright (C) 2009-2017 H.Merijn Brand -License: GPL-1+ or Artistic -Comment: - This library is free software; you can redistribute it and/or modify - it under the same terms as Perl itself. - -Files: cpan/CPAN/* -Copyright: unknown -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or - modify it under the same terms as Perl itself. - -Files: - cpan/CPAN/lib/App/Cpan.pm - cpan/CPAN/scripts/cpan -Copyright: (c) 2001-2015, brian d foy, All Rights Reserved. -License: GPL-1+ or Artistic -Comment: - You may redistribute this under the same terms as Perl itself. - -Files: cpan/CPAN-Meta/* -Copyright: - This software is copyright (c) 2010 by David Golden, Ricardo Signes, - Adam Kennedy and Contributors. -License: GPL-1+ or Artistic -Comment: - This is free software; you can redistribute it and/or modify it under - the same terms as the Perl 5 programming language system itself. - -Files: - cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_0.pod - cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_1.pod - cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_2.pod - cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_3.pod - cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_4.pod -Copyright: Ken Williams -License: GPL-1+ or Artistic -Comment: - This is free software; you can redistribute it and/or modify it under - the same terms as the Perl 5 programming language system itself. - -Files: cpan/CPAN-Meta-Requirements/* -Copyright: - This software is copyright (c) 2010 by David Golden and Ricardo Signes. -License: GPL-1+ or Artistic -Comment: - This is free software; you can redistribute it and/or modify it under - the same terms as the Perl 5 programming language system itself. - -Files: cpan/CPAN-Meta-YAML/* -Copyright: - This software is copyright (c) 2010 by Adam Kennedy. -License: GPL-1+ or Artistic -Comment: - This is free software; you can redistribute it and/or modify it under - the same terms as the Perl 5 programming language system itself. - -Files: cpan/DB_File/* -Copyright: Copyright (c) 1995-2016 Paul Marquess. All rights reserved. -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or modify - it under the same terms as Perl itself. - -Files: cpan/Devel-PPPort/* -Copyright: - Version 3.x, Copyright (C) 2004-2010, Marcus Holland-Moritz. - Version 2.x, Copyright (C) 2001, Paul Marquess. - Version 1.x, Copyright (C) 1999, Kenneth Albanowski. -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or - modify it under the same terms as Perl itself. - -Files: cpan/Devel-PPPort/parts/inc/mess -Copyright: - Copyright (C) 2017, Pali -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or - modify it under the same terms as Perl itself. - -Files: cpan/Digest/* -Copyright: - Copyright 1998-2006 Gisle Aas. - Copyright 1995,1996 Neil Winton. -License: GPL-1+ or Artistic -Comment: - This library is free software; you can redistribute it and/or - modify it under the same terms as Perl itself. - -Files: cpan/Digest-MD5/* -Copyright: - Copyright 1998-2003 Gisle Aas. - Copyright 1995-1996 Neil Winton. - Copyright 1990-1992 RSA Data Security, Inc. -License: GPL-1+ or Artistic -Comment: - This library is free software; you can redistribute it and/or - modify it under the same terms as Perl itself. - -Files: cpan/Digest-SHA/* -Copyright: - Copyright (C) 2003-2017 Mark Shelor, All Rights Reserved -License: GPL-1+ or Artistic -Comment: - This library is free software; you can redistribute it and/or modify - it under the same terms as Perl itself. - -Files: cpan/Encode/* -Copyright: Copyright 2002-2014 Dan Kogai -License: GPL-1+ or Artistic -Comment: - This library is free software; you can redistribute it and/or modify - it under the same terms as Perl itself. - -Files: cpan/Encode/bin/encguess -Copyright: 2015 Michael LaGrasta and Dan Kogai -License: Artistic -Comment: - This program is free software; you can redistribute it and/or modify it - under the terms of the the Artistic License (2.0). - -Files: cpan/encoding-warnings/* -Copyright: - Copyright 2004, 2005, 2006, 2007 by Audrey Tang . -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or modify it - under the same terms as Perl itself. - -Files: cpan/experimental/* -Copyright: - This software is copyright (c) 2013 by Leon Timmermans. -License: GPL-1+ or Artistic -Comment: - This is free software; you can redistribute it and/or modify it under - the same terms as the Perl 5 programming language system itself. - -Files: cpan/ExtUtils-Constant/* -Copyright: unknown -License: GPL-1+ or Artistic -Comment: - ---------------------------------------- - There are no copyright or license notices in this distribution. It - is assumed that the copyright and license of Perl itself applies here - as well. - . - This is supported by the README of the separate CPAN distribution at - , which states: - . - You may distribute this work under the terms of either the GNU General - Public License or the Artistic License, as specified in perl's README - file. - . - Copyright © 2001, 2002, 2005 Nicholas Clark - -Files: cpan/ExtUtils-MakeMaker/lib/ExtUtils/MakeMaker/Locale.pm -Copyright: 2010 Gisle Aas -License: GPL-1+ or Artistic -Comment: - This library is free software; you can redistribute it and/or modify it - under the same terms as Perl itself. - -Files: cpan/ExtUtils-Manifest/lib/ExtUtils/Manifest.pm -Copyright: 1996- by Andreas Koenig -License: GPL-1+ or Artistic -Comment: - This is free software; you can redistribute it and/or modify it - under the same terms as Perl itself. - -Files: - cpan/File-Fetch/* - cpan/IPC-Cmd/* - cpan/Module-Load/* - cpan/Module-Load-Conditional/* - cpan/Module-Loaded/* - cpan/Package-Constants/* - cpan/Params-Check/* -Copyright: - There are no copyright notices in these distributions. - Their author is Jos Boumans . -License: GPL-1+ or Artistic -Comment: - This library is free software; you may redistribute and/or modify it - under the same terms as Perl itself. - -Files: cpan/File-Path/* -Copyright: - This module is copyright (C) Charles Bailey, Tim Bunce, David Landgren, - James Keenan, and Richard Elberger 1995-2015. All rights reserved. -License: GPL-1+ or Artistic -Comment: - This library is free software; you can redistribute it and/or modify - it under the same terms as Perl itself. - -Files: cpan/File-Temp/* -Copyright: - This software is copyright (c) 2013 by Tim Jenness and the UK Particle - Physics and Astronomy Research Council. -License: GPL-1+ or Artistic -Comment: - This is free software; you can redistribute it and/or modify it under - the same terms as the Perl 5 programming language system itself. - -Files: cpan/Filter-Util-Call/* -Copyright: - Copyright (c) 1995-2011 Paul Marquess. All rights reserved. - Copyright (c) 2011-2014 Reini Urban. All rights reserved. - Copyright (c) 2014-2017 cPanel Inc. All rights reserved. -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or - modify it under the same terms as Perl itself. - -Files: cpan/Getopt-Long/* -Copyright: - Module Getopt::Long is Copyright 1990,2015 by Johan Vromans. -License: GPL-2+ or Artistic -Comment: - This program is free software; you can redistribute it and/or - modify it under the terms of the Perl Artistic License or 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. - -Files: cpan/HTTP-Tiny/* -Copyright: - This software is copyright (c) 2016 by Christian Hansen. -License: GPL-1+ or Artistic -Comment: - This is free software; you can redistribute it and/or modify it under - the same terms as the Perl 5 programming language system itself. - -Files: cpan/IO-Compress/* -Copyright: - Copyright (c) 1995-2017 Paul Marquess. All rights reserved. -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it - and/or modify it under the same terms as Perl itself. - -Files: cpan/IO-Zlib/* -Copyright: - Copyright (c) 1998-2004 Tom Hughes . All rights reserved. -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute - it and/or modify it under the same terms as Perl itself. - -Files: cpan/IPC-SysV/* -Copyright: - Version 2.x, Copyright (C) 2007-2010, Marcus Holland-Moritz. - Version 1.x, Copyright (c) 1997, Graham Barr. - Version 1.x, Copyright (c) 1999, Graham Barr. -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or - modify it under the same terms as Perl itself. - -Files: cpan/JSON-PP/* -Copyright: - Copyright 2007-2016 by Makamaka Hannyaharamitu -License: GPL-1+ or Artistic -Comment: - This library is free software; you can redistribute it and/or modify - it under the same terms as Perl itself. - -Files: cpan/libnet/* -Copyright: - (C) 1995-2006 Graham Barr. All rights reserved. - (C) 2013-2016 Steve Hay. All rights reserved. -License: GPL-1+ or Artistic -Comment: - This library is free software; you can redistribute it and/or modify - it under the same terms as Perl itself. - -Files: cpan/libnet/Makefile.PL -Copyright: - Copyright (C) 2014 Steve Hay. All rights reserved. -License: GPL-1+ or Artistic -Comment: - You may distribute under the terms of either the GNU General Public License - or the Artistic License, as specified in the LICENCE file. - -Files: cpan/List-Util/* -Copyright: - Copyright (c) 1997-2009 Graham Barr . All rights reserved. -License: GPL-1+ or Artistic -Comment: - This library is free software; you can redistribute it and/or - modify it under the same terms as Perl itself. - -Files: cpan/Scalar-List-Utils/lib/Scalar/Util.pm -Copyright: - Copyright (c) 1997-2007 Graham Barr . All rights reserved. - Copyright (c) 1999 Tuomas J. Lukka . All rights reserved. - Copyright (C) 2004, 2008 Matthijs van Duin. All rights reserved. - Copyright (C) 2014 cPanel Inc. All rights reserved. -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or modify it - under the same terms as Perl itself. - -Files: cpan/Scalar-List-Utils/lib/Sub/Util.pm -Copyright: (c) 2014 Paul Evans . All rights reserved -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or modify it - under the same terms as Perl itself. - - -Files: cpan/Locale-Codes/* -Copyright: - Copyright (C) 1997-2001 Canon Research Centre Europe (CRE). - Copyright (C) 2001-2010 Neil Bowers - Copyright (c) 1996-2018 Sullivan Beck - Copyright (c) 2001 Michael Hennecke -License: GPL-1+ or Artistic -Comment: - This module is free software; you can redistribute it and/or - modify it under the same terms as Perl itself. - -Files: cpan/Locale-Maketext-Simple/* -Copyright: - Copyright 2003, 2004, 2005, 2006 by Audrey Tang -License: Expat or GPL-1+ or Artistic -Comment: - This software is released under the MIT license cited below. Additionally, - when this software is distributed with Perl Kit, Version 5, you may also - redistribute it and/or modify it under the same terms as Perl itself. - -Files: - cpan/Locale-Maketext-Simple/t/po_with_i_default/i_default.po - cpan/Locale-Maketext-Simple/t/po_with_i_default/fr.po - cpan/Locale-Maketext-Simple/t/po_with_i_default/en.po - cpan/Locale-Maketext-Simple/t/po_without_i_default/en.po - cpan/Locale-Maketext-Simple/t/po_without_i_default/fr.po -Copyright: - Copyright (C) All Perl Hackers everywhere - Ton Voon , 2009. -License: Expat or GPL-1+ or Artistic -Comment: - ---------------------------------------- - It is assumed that these translations are licensed under the same terms as - the rest of the Locale-Maketext-Simple distribution. - -Files: cpan/Math-Complex/* -Copyright: unknown -License: GPL-1+ or Artistic -Comment: - This library is free software; you can redistribute it and/or modify - it under the same terms as Perl itself. - -Files: cpan/Memoize/* -Copyright: - Copyright 1998, 1999, 2000, 2001, 2012 M-J. Dominus. -License: GPL-1+ or Artistic -Comment: - This library is free software; you may redistribute it and/or modify - it under the same terms as Perl itself. - . - You may copy and distribute this program under the same terms as - Perl itself. If in doubt, write to mjd-perl-memoize+@plover.com for - a license. - -Files: cpan/MIME-Base64/* -Copyright: - Copyright 1995-2004,2010 Gisle Aas -License: GPL-1+ or Artistic -Comment: - This library is free software; you can redistribute it and/or - modify it under the same terms as Perl itself. - -Files: cpan/MIME-Base64/Base64.xs -Copyright: - Copyright 1997-2004 Gisle Aas - Copyright (c) 1991 Bell Communications Research, Inc. (Bellcore) -License: GPL-1+ or Artistic -Comment: - This library is free software; you can redistribute it and/or - modify it under the same terms as Perl itself. - . - The tables and some of the code that used to be here was borrowed from - metamail, which comes with this message: - . - Copyright (c) 1991 Bell Communications Research, Inc. (Bellcore) - . - Permission to use, copy, modify, and distribute this material - for any purpose and without fee is hereby granted, provided - that the above copyright notice and this permission notice - appear in all copies, and that the name of Bellcore not be - used in advertising or publicity pertaining to this - material without the specific, prior written permission - of an authorized representative of Bellcore. BELLCORE - MAKES NO REPRESENTATIONS ABOUT THE ACCURACY OR SUITABILITY - OF THIS MATERIAL FOR ANY PURPOSE. IT IS PROVIDED "AS IS", - WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES. - -Files: cpan/Module-Metadata/* -Copyright: - Copyright (c) 2001-2011 Ken Williams. All rights reserved. - Copyright (c) 2010-2011 Matt Trout and David Golden. All rights reserved. -License: GPL-1+ or Artistic -Comment: - This library is free software; you can redistribute it and/or - modify it under the same terms as Perl itself. - -Files: cpan/NEXT/* -Copyright: - Copyright (c) 2000-2001, Damian Conway. All Rights Reserved. -License: GPL-1+ or Artistic -Comment: - This module is free software. It may be used, redistributed - and/or modified under the same terms as Perl itself. - -Files: cpan/parent/* -Copyright: - Copyright (c) 2007-10 Max Maischein -License: GPL-1+ or Artistic -Comment: - This module is released under the same terms as Perl itself. - -Files: cpan/Parse-CPAN-Meta/* -Copyright: - This software is copyright (c) 2015 by Adam Kennedy and Contributors. -License: GPL-1+ or Artistic -Comment: - This is free software; you can redistribute it and/or modify it under - the same terms as the Perl 5 programming language system itself. - -Files: cpan/PerlIO-via-QuotedPrint/* -Copyright: - Copyright (c) 2002-2004,2012 Elizabeth Mattijsen. All rights reserved. -License: GPL-1+ or Artistic -Comment: - This library is free software; you can redistribute it and/or modify - it under the same terms as Perl itself. - -Files: cpan/Perl-OSType/* -Copyright: - This software is copyright (c) 2016 by David Golden. -License: GPL-1+ or Artistic -Comment: - This is free software; you can redistribute it and/or modify it under - the same terms as the Perl 5 programming language system itself. - -Files: cpan/Pod-Checker/* -Copyright: - Copyright (C) 1994-2000 by Bradford Appleton. All rights reserved. -License: GPL-1+ or Artistic -Comment: - This file is part of "PodParser". PodParser is free software; - you can redistribute it and/or modify it under the same terms - as Perl itself. - -Files: cpan/Pod-Escapes/* -Copyright: - Copyright (c) 2001-2004 Sean M. Burke. All rights reserved. -License: GPL-1+ or Artistic -Comment: - This library is free software; you can redistribute it and/or modify - it under the same terms as Perl itself. - -Files: cpan/podlators/* -Copyright: - Copyright 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, - 2010, 2012, 2013, 2014, 2015, 2016, 2017 Russ Allbery - Substantial contributions by Sean Burke -License: GPL-1+ or Artistic -Comment: - This program is free software; you may redistribute it and/or modify it - under the same terms as Perl itself. - -Files: cpan/podlators/lib/Pod/Text/Overstrike.pm -Copyright: - Copyright 2000 Joe Smith . - Copyright 2001, 2004, 2008 Russ Allbery . -License: GPL-1+ or Artistic -Comment: - This program is free software; you may redistribute it and/or modify it - under the same terms as Perl itself. - -Files: cpan/podlators/t/data/snippets/README -Copyright: - Copyright 2015 Russ Allbery -License: RRA-KEEP-THIS-NOTICE -Comment: - The license text can be found at the end of this file. - -Files: - cpan/podlators/t/docs/pod-spelling.t - cpan/podlators/t/docs/pod.t - cpan/podlators/t/docs/synopsis.t - cpan/podlators/t/lib/Test/RRA.pm - cpan/podlators/t/lib/Test/RRA/Config.pm - cpan/podlators/t/style/minimum-version.t - cpan/podlators/t/style/strict.t -Copyright: Copyright 2012, 2013, 2014 - The Board of Trustees of the Leland Stanford Junior University -License: Expat - -Files: cpan/podlators/t/lib/Test/RRA/ModuleVersion.pm -Copyright: Copyright 2016 Russ Allbery -License: Expat - -Files: cpan/podlators/t/man/no-encode.t -Copyright: - Copyright 2016 Niko Tyni - Copyright 2016 Russ Allbery -License: GPL-1+ or Artistic -Comment: - This program is free software; you may redistribute it and/or modify it - under the same terms as Perl itself. - -Files: cpan/podlators/t/style/module-version.t -Copyright: - Copyright 2014, 2015, 2016 Russ Allbery - Copyright 2012, 2013, 2014 The Board of Trustees of the Leland Stanford Junior University -License: Expat - -Files: cpan/Pod-Parser/* -Copyright: - Copyright (C) 1996-2000 by Bradford Appleton. All rights reserved. -License: GPL-1+ or Artistic -Comment: - PodParser is free software; you can redistribute it and/or modify it - under the same terms as Perl itself. - -Files: cpan/Pod-Parser/lib/Pod/PlainText.pm -Copyright: - Copyright 1999-2000 by Russ Allbery -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or modify it - under the same terms as Perl itself. - -Files: cpan/Pod-Parser/lib/Pod/ParseUtils.pm -Copyright: - Copyright (C) 1999-2000 by Marek Rouchal. All rights reserved. -License: GPL-1+ or Artistic -Comment: - This file is part of "PodParser". PodParser is free software; - you can redistribute it and/or modify it under the same terms - as Perl itself. - -Files: cpan/Pod-Parser/t/pod/contains_pod.t -Copyright: - Copyright (C) 2005 Joshua Hoblitt -License: GPL-1+ or Artistic -Comment: - ---------------------------------------- - This file has no explicit license notice, but it is assumed that it - is licensed under the same terms as the rest of the distribution. - -Files: cpan/Pod-Simple/* -Copyright: - Copyright (c) 2002-2004 Sean M. Burke. All rights reserved. -License: GPL-1+ or Artistic -Comment: - This library is free software; you can redistribute it and/or modify it - under the same terms as Perl itself. - -Files: cpan/Pod-Simple/lib/Pod/Simple/XHTML.pm -Copyright: - Copyright (c) 2003-2005 Allison Randal. -License: GPL-1+ or Artistic -Comment: - This library is free software; you can redistribute it and/or modify it - under the same terms as Perl itself. - -Files: - cpan/Pod-Simple/t/perlfaq.pod - cpan/Pod-Simple/t/perlfaqo.txt -Copyright: - Copyright (c) 1997-1999 Tom Christiansen and Nathan Torkington. - All rights reserved. -License: GPL-1+ or Artistic -Comment: - ---------------------------------------- - This document is part of the perlfaq distribution. A newer version - of it is also included in pod/perlfaq3.pod. - . - The license notice in the document is: - . - When included as an integrated part of the Standard Distribution - of Perl or of its documentation (printed or otherwise), this works is - covered under Perl's Artistic License. For separate distributions of - all or part of this FAQ outside of that, see L. - . - Irrespective of its distribution, all code examples here are in the public - domain. You are permitted and encouraged to use this code and any - derivatives thereof in your own programs for fun or for profit as you - see fit. A simple comment in the code giving credit to the FAQ would - be courteous but is not required. - . - The corresponding license in pod/perlfaq.pod is: - . - This document is available under the same terms as Perl itself. Code - examples in all the perlfaq documents are in the public domain. Use - them as you see fit (and at your own risk with no warranty from anyone). - -Files: cpan/Pod-Usage/* -Copyright: - Copyright (C) 1996-2000 by Bradford Appleton. All rights reserved. - Copyright (c) 2001-2016 by Marek Rouchal. -License: GPL-1+ or Artistic -Comment: - This file is part of "Pod-Usage". Pod-Usage is free software; - you can redistribute it and/or modify it under the same terms - as Perl itself. - -Files: cpan/Pod-Usage/t/inc/Pod/PlainText.pm -Copyright: - Copyright 1999-2000 by Russ Allbery -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or modify it - under the same terms as Perl itself. - -Files: cpan/Sys-Syslog/* -Copyright: - Copyright (C) 1990-2012 by Larry Wall and others. -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or modify it - under the same terms as Perl itself. - -Files: cpan/Sys-Syslog/fallback/syslog.h -Copyright: - Copyright (c) 1982, 1986, 1988, 1993 - The Regents of the University of California. All rights reserved. -License: BSD-3-clause-with-weird-numbering - -Files: cpan/Term-ANSIColor/* -Copyright: - Copyright 1996 Zenin - Copyright 1996, 1997, 1998, 2000, 2001, 2002, 2005, 2006, 2008, 2009, - 2010, 2011, 2012, 2013, 2014, 2015, 2016 Russ Allbery - Copyright 2012 Kurt Starsinic -License: GPL-1+ or Artistic -Comment: - This program is free software; you may redistribute it and/or modify - it under the same terms as Perl itself. - -Files: - cpan/Term-ANSIColor/t/lib/Test/RRA.pm -Copyright: 2013, 2014 The Board of Trustees of the Leland Stanford Junior University -License: Expat - -Files: - cpan/Term-ANSIColor/t/lib/Test/RRA/Config.pm -Copyright: - Copyright 2015, 2016 Russ Allbery - Copyright 2013, 2014 The Board of Trustees of the Leland Stanford Junior University -License: Expat - -Files: cpan/Term-Cap/* -Copyright: 1995-2015 (c) perl5 porters. -License: GPL-1+ or Artistic -Comment: - This software is free software and can be modified and distributed under - the same terms as Perl itself. - -Files: cpan/Test-Harness/* -Copyright: - Copyright (c) 2007-2011, Andy Armstrong . All rights reserved. -License: GPL-1+ or Artistic -Comment: - This module is free software; you can redistribute it and/or - modify it under the same terms as Perl itself. - -Files: cpan/Test-Harness/lib/TAP/Parser.pm -Copyright: - Copyright 2006-2008 Curtis "Ovid" Poe, all rights reserved. -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or modify it - under the same terms as Perl itself. - -Files: cpan/Test-Harness/lib/TAP/Parser/YAMLish/Reader.pm -Copyright: - Copyright 2007-2011 Andy Armstrong. - Portions copyright 2006-2008 Adam Kennedy. -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or modify it - under the same terms as Perl itself. - -Files: cpan/Test-Simple/* -Copyright: - Copyright 2001-2008 by Michael G Schwern . - Copyright 2018 Chad Granum . -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or - modify it under the same terms as Perl itself. - -Files: cpan/Test-Simple/lib/Test/Builder.pm -Copyright: - Copyright 2002-2008 by chromatic and - Michael G Schwern E. -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or - modify it under the same terms as Perl itself. - -Files: cpan/Test-Simple/lib/Test/Builder/Tester/Color.pm -Copyright: - Copyright Mark Fowler 2002. -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it - and/or modify it under the same terms as Perl itself. - -Files: cpan/Test-Simple/lib/Test/Builder/Tester.pm -Copyright: - Copyright Mark Fowler 2002, 2004. - . - Some code taken from Test::More and Test::Catch, written by by - Michael G Schwern . Hence, those parts - Copyright Michael G Schwern 2001. Used and distributed with - permission. - . - This module is copyright 2005 Fergal Daly , some parts - are based on other people's work. -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it - and/or modify it under the same terms as Perl itself. - -Files: cpan/Test-Simple/lib/Test/Tutorial.pod -Copyright: - Copyright 2001 by Michael G Schwern . -License: GPL-1+ or Artistic -Comment: - This documentation is free; you can redistribute it and/or modify it - under the same terms as Perl itself. - . - Irrespective of its distribution, all code examples in these files - are hereby placed into the public domain. You are permitted and - encouraged to use this code in your own programs for fun - or for profit as you see fit. A simple comment in the code giving - credit would be courteous but is not required. - -Files: cpan/Test-Simple/lib/Test/Builder/IO/Scalar.pm -Copyright: - Copyright (c) 1996 by Eryq. All rights reserved. - Copyright (c) 1999,2001 by ZeeGee Software Inc. All rights reserved. -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it - and/or modify it under the same terms as Perl itself. - -Files: cpan/Test-Simple/lib/Test/Tester/CaptureRunner.pm -Copyright: Copyright 2003 by Fergal Daly . -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it - and/or modify it under the same terms as Perl itself. - -Files: - cpan/Test-Simple/lib/Test/use/ok.pm - cpan/Test-Simple/lib/ok.pm -Copyright: none - To the extent possible under law, 唐鳳 has waived all copyright and related - or neighboring rights to L -License: CC0-1.0 -Comment: - ---------------------------------------- - The file links to http://creativecommons.org/publicdomain/zero/1.0/ - and the full license text as retrieved from there can be found at the - end of this file. - -Files: cpan/Text-Balanced/* -Copyright: - Copyright 1997 - 2001 Damian Conway. All Rights Reserved. - Some (minor) parts copyright 2009 Adam Kennedy. -License: GPL-1+ or Artistic -Comment: - This module is free software. It may be used, redistributed and/or - modified under the same terms as Perl itself. - -Files: cpan/Text-ParseWords/* -Copyright: unknown -License: GPL-1+ or Artistic -Comment: - ---------------------------------------- - There are no copyright notices this distribution. - . - This library is free software; you may redistribute and/or modify it - under the same terms as Perl itself. - -Files: cpan/Text-Tabs/* -Copyright: - Copyright (C) 1996-2009 David Muir Sharnoff. - Copyright (C) 2005 Aristotle Pagaltzis - Copyright (C) 2012-2013 Google, Inc. -License: TEXT-TABS - -Files: cpan/Tie-File/* -Copyright: - Tie::File version 0.97 is copyright (C) 2003 Mark Jason Dominus. -License: GPL-2+ or Artistic -Comment: - This library is free software; you may redistribute it and/or modify - it under the same terms as Perl itself. - . - These terms are your choice of any of (1) the Perl Artistic Licence, - or (2) version 2 of the GNU General Public License as published by the - Free Software Foundation, or (3) any later version of the GNU General - Public License. - -Files: - cpan/bignum/* - cpan/Tie-RefHash/* - cpan/Win32API-File/* - dist/ExtUtils-Install/* - dist/Math-BigInt/* - dist/Math-BigInt-FastCalc/* - dist/Math-BigRat/* - dist/Thread-Queue/* -Copyright: unknown -License: GPL-1+ or Artistic -Comment: - This program is free software; you may redistribute it and/or modify - it under the same terms as Perl itself. - ---------------------------------------- - These distributions include no copyright notices but have - the same explicit licensing information. - -Files: cpan/Time-Local/* -Copyright: - Copyright (c) 1997 - 2016 by Graham Barr & Dave Rolsky. -License: GPL-1+ or Artistic -Comment: - This is free software; you can redistribute it and/or modify it under - the same terms as the Perl 5 programming language system itself. - -Files: cpan/Time-Piece/* -Copyright: unknown -License: GPL-1+ or Artistic -Comment: - This module is free software, you may distribute it under the same - terms as Perl. - -Files: cpan/Time-Piece/Piece.xs -Copyright: - strptime copied from freebsd with the following copyright: - Copyright (c) 1994 Powerdog Industries. All rights reserved. -License: GPL-1+ or Artistic, and BSD-4-clause-POWERDOG -Comment: - ---------------------------------------- - The strptime function is licensed under the BSD-like license included - below. It is assumed that the other parts are licensed under the same - terms as the rest of the distribution. - -Files: cpan/Unicode-Collate/* -Copyright: - This module is Copyright(C) 2001-2017, SADAHIRO Tomoyuki. Japan. All - rights reserved. -License: GPL-1+ or Artistic -Comment: - This module is free software; you can redistribute it and/or - modify it under the same terms as Perl itself. - -Files: cpan/Unicode-Collate/Collate/allkeys.txt -Copyright: - Copyright (c) 2016 Unicode, Inc. -License: Unicode -Comment: - For terms of use, see http://www.unicode.org/terms_of_use.html - ---------------------------------------- - See below for the full text of this license as downloaded from the above URL - on Tue, 26 Apr 2011 14:41:24 +0300. - -Files: cpan/Unicode-Normalize/* -Copyright: - Copyright(C) 2001-2012, SADAHIRO Tomoyuki. Japan. All rights reserved. -License: GPL-1+ or Artistic -Comment: - This module is free software; you can redistribute it and/or - modify it under the same terms as Perl itself. - -Files: cpan/Win32/* -Copyright: (c) 1995 Microsoft Corporation. All rights reserved. -License: GPL-1+ or Artistic -Comment: - ---------------------------------------- - There are no copyright notices or license information in this distribution, - but the README file of the separate CPAN distribution at - states: - . - This module is free software; you may redistribute it and/or modify it - under the same terms as Perl itself. - . - The "Perl for Win32" source code was licensed under the same terms - as Perl itself and contained this copyright notice: - . - (c) 1995 Microsoft Corporation. All rights reserved. - Developed by ActiveWare Internet Corp. - -Files: dist/Attribute-Handlers/* -Copyright: - Copyright (c) 2001-2009, Damian Conway. All Rights Reserved. -License: GPL-1+ or Artistic -Comment: - This module is free software. It may be used, redistributed - and/or modified under the same terms as Perl itself. - -Files: - dist/autouse/* - dist/base/* - dist/constant/* - dist/Devel-SelfStubber/* - dist/Dumpvalue/* - dist/Env/* - dist/ExtUtils-Command/* - dist/ExtUtils-Manifest/* - dist/I18N-Collate/* - dist/Safe/* - ext/Fcntl/* - ext/FileCache/* - ext/GDBM_File/* - ext/IPC-Open2/* - ext/IPC-Open3/* - ext/NDBM_File/* - ext/ODBM_File/* - ext/Opcode/* - ext/PerlIO-encoding/* - ext/PerlIO-scalar/* - ext/PerlIO-via/* - ext/POSIX/* - ext/re/* - ext/Socket/* - ext/Sys-Hostname/* - ext/Tie-Hash-NamedCapture/* - ext/Tie-Memoize/* - ext/VMS-DCLsym/* - ext/VMS-Stdio/* -Copyright: unknown -License: GPL-1+ or Artistic -Comment: - ---------------------------------------- - There is no copyright or license information in these distributions. - It is assumed that they are licensed under the same terms as Perl itself. - -Files: dist/B-Deparse/* -Copyright: - Copyright (c) 1998-2000, 2002, 2003, 2004, 2005, 2006 Stephen McCamant. - All rights reserved. -License: GPL-1+ or Artistic -Comment: - This module is free software; you can redistribute and/or modify - it under the same terms as Perl itself. - -Files: dist/Carp/* -Copyright: - Copyright (c) 1994-2013 Larry Wall - Copyright (c) 2011, 2012, 2013 Andrew Main (Zefram) -License: GPL-1+ or Artistic -Comment: - This module is free software. It may be used, redistributed - and/or modified under the same terms as Perl itself. - -Files: dist/Data-Dumper/* -Copyright: - Copyright (c) 1996-2017 Gurusamy Sarathy. All rights reserved. -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or - modify it under the same terms as Perl itself. - -Files: dist/ExtUtils-CBuilder/* -Copyright: - Copyright (c) 2003-2005 Ken Williams. All rights reserved. - Copyright (c) 2012-2017 Ken Williams. All rights reserved. -License: GPL-1+ or Artistic -Comment: - This library is free software; you can redistribute it and/or - modify it under the same terms as Perl itself. - -Files: dist/ExtUtils-ParseXS/* -Copyright: - Copyright 2002-2012 by Ken Williams, David Golden and other contributors. - All rights reserved. -License: GPL-1+ or Artistic -Comment: - This library is free software; you can redistribute it and/or - modify it under the same terms as Perl itself. - . - Based on the ExtUtils::xsubpp code by Larry Wall and the Perl 5 - Porters, which was released under the same license terms. - -Files: dist/Filter-Simple/* -Copyright: - Copyright (c) 2000-2008, Damian Conway. All Rights Reserved. -License: GPL-1+ or Artistic -Comment: - This module is free software. It may be used, redistributed - and/or modified under the same terms as Perl itself. - -Files: dist/if/* -Copyright: This software is copyright (c) 2002 by Ilya Zakharevich. -License: GPL-1+ or Artistic -Comment: - This is free software; you can redistribute it and/or modify it under - the same terms as the Perl 5 programming language system itself. - -Files: dist/I18N-LangTags/* -Copyright: - Copyright 1998+, Sean M. Burke , all rights - reserved. -License: GPL-1+ or Artistic -Comment: - This library is free software; you can redistribute it and/or modify - it under the same terms as Perl itself. - -Files: dist/I18N-LangTags/lib/I18N/LangTags/List.pm -Copyright: - Copyright (c) 2001+ Sean M. Burke. All rights reserved. -License: GPL-1+ or Artistic -Comment: - You can redistribute and/or modify this document under the same terms - as Perl itself. - -Files: dist/IO/* -Copyright: - Copyright (c) 1996-2003 Graham Barr . All rights reserved. -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or - modify it under the same terms as Perl itself. - -Files: dist/IO/lib/IO/Socket.pm -Copyright: - Copyright (c) 1997-8 Graham Barr . All rights reserved. - Copyright 2001, Lincoln Stein . -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or - modify it under the same terms as Perl itself. - . - The atmark() implementation: Copyright 2001, Lincoln Stein . - This module is distributed under the same terms as Perl itself. - Feel free to use, modify and redistribute it as long as you retain - the correct attribution. - -Files: dist/lib/* -Copyright: as above for 'Files: *' -License: GPL-1+ or Artistic -Comment: - This package has the same copyright and license as the perl core. - -Files: dist/Locale-Maketext/* -Copyright: - Copyright 1999-2004, Sean M. Burke , all rights reserved. -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or modify - it under the same terms as Perl itself. - -Files: dist/Locale-Maketext/lib/Locale/Maketext/TPJ13.pod -Copyright: 1999 The Perl Journal. -License: GPL-1+ or Artistic -Comment: - This document may be distributed under the same terms as Perl itself. - -Files: dist/Module-CoreList/* -Copyright: - Copyright (C) 2002-2009 Richard Clamp. All Rights Reserved. -License: GPL-1+ or Artistic -Comment: - This program is free software; you may redistribute it and/or modify - it under the same terms as Perl itself. - -Files: dist/Module-CoreList/corelist -Copyright: - Copyright (c) 2002-2007 by D.H. aka PodMaster -License: GPL-1+ or Artistic -Comment: - This program is distributed under the same terms as perl itself. - -Files: dist/Module-CoreList/lib/Module/CoreList/Utils.pm -Copyright: - Copyright (C) 2013 Chris Williams. All Rights Reserved. -License: GPL-1+ or Artistic -Comment: - This module is free software; you can redistribute it and/or modify it - under the same terms as Perl itself. - -Files: dist/Net-Ping/* -Copyright: - Copyright (c) 2016, cPanel Inc. All rights reserved. - Copyright (c) 2012, Steve Peters. All rights reserved. - Copyright (c) 2002-2003, Rob Brown. All rights reserved. - Copyright (c) 2001, Colin McMillen. All rights reserved. -License: GPL-1+ or Artistic -Comment: - This program is free software; you may redistribute it and/or - modify it under the same terms as Perl itself. - -Files: dist/PathTools/* -Copyright: - Copyright (c) 2004 by the Perl 5 Porters. All rights reserved. -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or modify - it under the same terms as Perl itself. - -Files: dist/PathTools/Cwd.xs -Copyright: - Copyright (c) 2004 by the Perl 5 Porters. All rights reserved. - Copyright (c) 2003 Constantin S. Svintsoff -License: GPL-1+ or Artistic, and BSD-3-clause-GENERIC -Comment: - ---------------------------------------- - The main license applies to most of the code: - . - This program is free software; you can redistribute it and/or modify - it under the same terms as Perl itself. - . - but portions of it have been taken from a BSD variant and are licensed - under the terms of the "BSD-3-clause-GENERIC" license included in this file. - . - dist/PathTools/Cwd.pm states: - . - Portions of the C code in this library are copyright (c) 1994 by the - Regents of the University of California. All rights reserved. The - license on this code is compatible with the licensing of the rest of - the distribution - please see the source code in F for the - details. - . - but, as discussed in - http://rt.cpan.org/Public/Bug/Display.html?id=64116 - this is outdated and dist/PathTools/Cwd.xs itself contains the correct - information. - -Files: dist/Pod-Perldoc/* -Copyright: - Copyright (c) 2002-2007 Sean M. Burke. - Copyright (c) 2011 Mark Allen. All rights reserved. - Copyright (c) 2011 brian d foy. All rights reserved. - Copyright (c) 2017 Mark Allen. -License: GPL-1+ or Artistic -Comment: - This library is free software; you can redistribute it and/or modify it - under the same terms as Perl itself. - -Files: dist/Storable/* -Copyright: - Copyright (c) 1995-2001, Raphael Manfredi - Copyright (c) 2002-2014 by the Perl 5 Porters - Copyright (c) 2016,2017 cPanel Inc - Copyright (c) 2017, Reini Urban -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or modify - it under the same terms as Perl 5 itself. - -Files: dist/Storable/t/forgive.t -Copyright: - Copyright (c) 1995-2000, Raphael Manfredi - (C) Copyright 1997, Universitat Dortmund, all rights reserved. -License: GPL-1+ or Artistic -Comment: - You may redistribute only under the same terms as Perl 5, as specified - in the README file that comes with the distribution. - -Files: - dist/Storable/t/attach_errors.t - dist/Storable/t/attach_singleton.t - dist/Storable/t/circular_hook.t -Copyright: - Copyright 2005, Adam Kennedy. -License: GPL-1+ or Artistic -Comment: - You may redistribute only under the same terms as Perl 5, as specified - in the README file that comes with the distribution. - -Files: - dist/Storable/t/code.t - dist/Storable/t/sig_die.t -Copyright: - Copyright (c) 2002 Slaven Rezic -License: GPL-1+ or Artistic -Comment: - You may redistribute only under the same terms as Perl 5, as specified - in the README file that comes with the distribution. - -Files: dist/threads/* -Copyright: unknown -License: GPL-1+ or Artistic -Comment: - threads is released under the same license as Perl. - -Files: dist/threads-shared/* -Copyright: unknown -License: GPL-1+ or Artistic -Comment: - threads::shared is released under the same license as Perl. - -Files: dist/threads-shared/shared.xs -Copyright: - Copyright (c) 2001-2002, 2006 Larry Wall -License: GPL-1+ or Artistic -Comment: - You may distribute under the terms of either the GNU General Public - License or the Artistic License, as specified in the README file. - -Files: dist/Test/* -Copyright: - Copyright (c) 1998-2000 Joshua Nathaniel Pritikin. - Copyright (c) 2001-2002 Michael G. Schwern. - Copyright (c) 2002-2004 Sean M. Burke. -License: GPL-1+ or Artistic -Comment: - This package is free software and is provided "as is" without express - or implied warranty. It may be used, redistributed and/or modified - under the same terms as Perl itself. - -Files: dist/Time-HiRes/* -Copyright: - Copyright (c) 1996-2002 Douglas E. Wegscheid. All rights reserved. - Copyright (c) 2002-2010 Jarkko Hietaniemi. - Copyright (c) 2011, 2012, 2013 Andrew Main (Zefram) - All rights reserved. -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or modify - it under the same terms as Perl itself. - -Files: dist/XSLoader/* -Copyright: - Copyright (C) 1990-2011 by Larry Wall and others. -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or modify - it under the same terms as Perl itself. - -Files: ext/attributes/* -Copyright: - Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 - by Larry Wall and others -License: GPL-1+ or Artistic -Comment: - You may distribute under the terms of either the GNU General Public - License or the Artistic License, as specified in the README file. - -Files: - ext/Amiga-ARexx/* - ext/Amiga-Exec/* -Copyright: - Copyright (C) 2013 by Andy Broad. -License: GPL-1+ or Artistic -Comment: - There is no license information included. It is assumed that this - distribution is licensed under the same terms as Perl itself. - -Files: ext/B/* -Copyright: - Copyright (c) 1996, 1997, 1998 Malcolm Beattie -License: GPL-1+ or Artistic -Comment: - You may distribute under the terms of either the GNU General Public - License or the Artistic License, as specified in the README file. - -Files: ext/B/B/Concise.pm -Copyright: - Copyright (C) 2000-2003 Stephen McCamant. All rights reserved. -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute and/or modify it - under the same terms as Perl itself. - -Files: ext/Devel-Peek/* -Copyright: - Copyright (c) 1995-98 Ilya Zakharevich. All rights reserved. -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or - modify it under the same terms as Perl itself. - -Files: ext/DynaLoader/* -Copyright: unknown -License: GPL-1+ or Artistic -Comment: - ---------------------------------------- - There is no license information included that clearly applies to the - whole of this distribution. It is assumed that it is licensed under - the same terms as Perl itself. - -Files: ext/DynaLoader/dl_aix.xs -Copyright: - This is an unpublished work copyright (c) 1992 Helios Software GmbH - 3000 Hannover 1, Germany -License: GPL-1+ or Artistic -Comment: - ---------------------------------------- - It is assumed that this file is licensed under the same terms as Perl itself. - -Files: ext/DynaLoader/dl_dld.xs -Copyright: - based upon the file "dl.c", which is Copyright (c) 1994, Larry Wall -License: GPL-1+ or Artistic -Comment: - You may distribute under the terms of either the GNU General Public - License or the Artistic License, as specified in the README file. - -Files: ext/DynaLoader/dl_symbian.xs -Copyright: 2004, Nokia -License: GPL-1+ or Artistic -Comment: - ---------------------------------------- - The license in the file is specified as - . - License: Artistic/GPL - -Files: ext/Errno/* -Copyright: - Copyright (c) 1997-8 Graham Barr. All rights reserved. -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or modify - it under the same terms as Perl itself. - -Files: ext/File-Glob/* -Copyright: unknown -License: Artistic -Comment: - The Perl interface was written by Nathan Torkington , - and is released under the artistic license. Further modifications - were made by Greg Bacon , Gurusamy Sarathy - , and Thomas Wegner . - -Files: - ext/File-Glob/bsd_glob.c - ext/File-Glob/bsd_glob.h -Copyright: - Copyright (c) 1989, 1993 - The Regents of the University of California. All rights reserved. - . - This code is derived from software contributed to Berkeley by - Guido van Rossum. -License: BSD-3-clause - -Files: ext/Hash-Util/* -Copyright: unknown -License: GPL-1+ or Artistic -Comment: - ---------------------------------------- - There is no license information in this distribution. - It is assumed that it is licensed under the same terms as Perl itself. - -Files: ext/Hash-Util/lib/Hash/Util.pm -Copyright: - hv_store() is from Array::RefElem, Copyright 2000 Gisle Aas. -License: GPL-1+ or Artistic -Comment: - ---------------------------------------- - As above, it is assumed that this file is licensed under the same terms - as Perl itself. - . - The copyright and license information of Array::RefElem, as fetched from - , is as - follows: - . - Copyright 2000 Gisle Aas - . - This library is free software; you can redistribute it and/or - modify it under the same terms as Perl itself. - -Files: ext/Hash-Util-FieldHash/* -Copyright: - Copyright (C) 2006-2007 by (Anno Siegel) -License: GPL-1+ or Artistic -Comment: - This library is free software; you can redistribute it and/or modify - it under the same terms as Perl itself, either Perl version 5.8.7 or, - at your option, any later version of Perl 5 you may have available. - -Files: ext/I18N-Langinfo/* -Copyright: - Copyright 2001 by Jarkko Hietaniemi -License: GPL-1+ or Artistic -Comment: - This library is free software; you can redistribute it and/or modify - it under the same terms as Perl itself. - -Files: ext/mro/* -Copyright: - Copyright (c) 2007 Brandon L Black - Copyright (c) 2008,2009 Larry Wall and others -License: GPL-1+ or Artistic -Comment: - You may distribute under the terms of either the GNU General Public - License or the Artistic License, as specified in the README file. - -Files: ext/Pod-Html/* -Copyright: unknown -License: Artistic -Comment: - This program is distributed under the Artistic License. - -Files: ext/SDBM_File/* -Copyright: unknown -License: GPL-1+ or Artistic -Comment: - There is no copyright or license information in this distribution. - It is assumed that it is licensed under the same terms as Perl itself. - -Files: ext/SDBM_File/sdbm/* -Copyright: none -License: SDBM-PUBLIC-DOMAIN - -Files: ext/Win32CORE/* -Copyright: - Copyright (C) 2007 by Larry Wall and others -License: GPL-1+ or Artistic -Comment: - You may distribute under the terms of either the GNU General Public - License or the Artistic License, as specified in the README file. - -Files: ext/XS-APItest/* -Copyright: - Copyright (C) 2002,2004 Tim Jenness, Christian Soeller, Hugo van der Sanden. - All Rights Reserved. - . - Copyright (C) 2009 Andrew Main (Zefram) -License: GPL-1+ or Artistic -Comment: - This library is free software; you can redistribute it and/or modify - it under the same terms as Perl itself. - -Files: ext/XS-Typemap/* -Copyright: - Copyright (C) 2001 Tim Jenness All Rights Reserved. -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or modify - it under the same terms as Perl itself. - -Files: - pod/perldebtut.pod - pod/perlperf.pod -Copyright: - Richard Foley Copyright (c) 2000 -License: GPL-1+ or Artistic -Comment: - ---------------------------------------- - These files are a part of Perl itself, licensed as above. - -Files: pod/perlembed.pod -Copyright: - Copyright (C) 1995, 1996, 1997, 1998 Doug MacEachern and Jon Orwant. All - Rights Reserved. -License: GPL-1+ or Artistic -Comment: - This document may be distributed under the same terms as Perl itself. - -Files: pod/perlexperiment.pod -Copyright: - Copyright 2010, brian d foy -License: GPL-1+ or Artistic -Comment: - You can use and redistribute this document under the same terms as Perl - itself. - -Files: - pod/perlfaq*.pod - pod/perlopentut.pod - pod/perltooc.pod -Copyright: - Copyright (c) 1997-2010 Tom Christiansen, Nathan Torkington, and - other authors as noted. All rights reserved. -License: GPL-1+ or Artistic -Comment: - This documentation is free; you can redistribute it and/or modify it - under the same terms as Perl itself. - . - Irrespective of its distribution, all code examples here are in the public - domain. You are permitted and encouraged to use this code and any - derivatives thereof in your own programs for fun or for profit as you - see fit. A simple comment in the code giving credit to the FAQ would - be courteous but is not required. - -Files: pod/perlfaq.pod -Copyright: - Tom Christiansen wrote the original version of this document. - brian d foy wrote this version. See the - individual perlfaq documents for additional copyright information. -License: GPL-1+ or Artistic -Comment: - This document is available under the same terms as Perl itself. Code - examples in all the perlfaq documents are in the public domain. Use - them as you see fit (and at your own risk with no warranty from anyone). - -Files: - pod/perlfilter.pod - pod/perlthrtut.pod -Copyright: - copyright 1998 The Perl Journal -License: GPL-1+ or Artistic -Comment: - This document may be distributed under the same terms as Perl itself. - -Files: pod/perlglossary.pod -Copyright: - Based on the Glossary of I, Fourth Edition, - by Tom Christiansen, brian d foy, Larry Wall, & Jon Orwant. - Copyright (c) 2000, 1996, 1991, 2012 O'Reilly Media, Inc. -License: GPL-1+ or Artistic -Comment: - This document may be distributed under the same terms as Perl itself. - -Files: pod/perlmodinstall.pod -Copyright: - Copyright (C) 1998, 2002, 2003 Jon Orwant. All Rights Reserved. -License: GPL-1+ or Artistic -Comment: - This document may be distributed under the same terms as Perl itself. - -Files: - pod/perlopentut.pod - pod/perltooc.pod - pod/perltoot.pod -Copyright: - Copyright 1997-1999 Tom Christiansen. -License: GPL-1+ or Artistic -Comment: - This documentation is free; you can redistribute it and/or modify it - under the same terms as Perl itself. - . - Irrespective of its distribution, all code examples in these files are - hereby placed into the public domain. You are permitted and - encouraged to use this code in your own programs for fun or for profit - as you see fit. A simple comment in the code giving credit would be - courteous but is not required. - -Files: pod/perlpodstyle.pod -Copyright: - Copyright 1999, 2000, 2001, 2004, 2006, 2008, 2010, 2015 Russ Allbery - -License: RRA-KEEP-THIS-NOTICE -Comment: - The license text can be found at the end of this file. - -Files: pod/perlreapi.pod -Copyright: - Copyright 2006 Yves Orton and 2007 Ævar Arnfjörð Bjarmason. -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or modify it under - the same terms as Perl itself. - -Files: pod/perlreftut.pod -Copyright: - Copyright 1998 The Perl Journal. -License: GPL-1+ or Artistic -Comment: - This documentation is free; you can redistribute it and/or modify it - under the same terms as Perl itself. - . - Irrespective of its distribution, all code examples in these files are - hereby placed into the public domain. You are permitted and - encouraged to use this code in your own programs for fun or for profit - as you see fit. A simple comment in the code giving credit would be - courteous but is not required. - -Files: - pod/perlrequick.pod - pod/perlretut.pod -Copyright: - Copyright (c) 2000 Mark Kvale - All rights reserved. -License: GPL-1+ or Artistic -Comment: - This document may be distributed under the same terms as Perl itself. - -Files: pod/perlunicook.pod -Copyright: - Copyright (c) 2012 Tom Christiansen -License: GPL-1+ or Artistic -Comment: - This document may be distributed under the same terms as Perl itself. - -Files: pod/perluniintro.pod -Copyright: - Copyright 2001-2011 Jarkko Hietaniemi -License: GPL-1+ or Artistic -Comment: - This document may be distributed under the same terms as Perl itself. - -Files: - Copying - pod/perlgpl.pod -Copyright: - Copyright (C) 1989 Free Software Foundation, Inc. - 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -License: DONT-CHANGE-THE-GPL - -Files: t/io/shm.t -Copyright: - Copyright (C) 1999, Graham Barr . - Copyright (C) 2007-2010, Marcus Holland-Moritz . -License: GPL-1+ or Artistic -Comment: - This program is free software; you can redistribute it and/or - modify it under the same terms as Perl itself. - -Files: regen-configure/* -Copyright: - Copyright (c) 1996-1998, Andy Dougherty - Copyright (c) 1999-2011, H.Merijn Brand -License: GPL-1+ or Artistic or Artistic-dist -Comment: - This directory is a snapshot of the upstream metaconfig repository, - containing code originally forked from 'dist' upstream by Larry - Wall and Raphael Manfredi. The 'dist/' subdirectory is unmodified - upstream code, but the other subdirectories contain mixed code. - Some units are dual licensed and some are specifically Artistic-only. - . - The bin/ subdirectory is being filtered from the upstream snapshot - (with the Files-Excluded mechanism at the top of this copyright file) - because it contains files generated from dist sources. The Debian - package build uses the tools from the separate 'dist' package. - . - From regen-configure/U/README: - . - You may distribute the files contained in this distribution - under the terms of either - . - a) the "Artistic License" which comes with Perl, or - . - b) the "Artistic License" which comes with dist, or - . - c) the GNU General Public License as published by the Free - Software Foundation; either version 1, or (at your option) any - later version (see the file "Copying" that comes with the - Perl distribution). - . - The full text of the "Artistic License" which comes with dist - differs slightly from the one that is in /usr/share/common-licenses - on Debian systems, and can be found later in this file under the - "Artistic-dist" tag. - -Files: regen-configure/dist/* -Copyright: - Copyright (c) 1991-1997, 2004-2006, 2012 Raphael Manfredi - Copyright (c) 1996,1998 Andy Dougherty - Copyright (c) 1996, Cygnus Support - Copyright (c) 1996, Spider Boardman - Copyright (c) 1996, Sven Verdoolaege - Copyright (c) 1997, Chip Salzenberg - Copyright (c) 1998 Andy Dougherty - Copyright (c) 1999-2001 Jarkko Hietaniemi -License: Artistic-dist -Comment: - This subdirectory contains unmodified 'dist' code that is - licensed under the modified Artistic license detailed below - under the "Artistic-dist" tag. The different files have - separate copyright notices, collected above. - -Files: regen-configure/U/* -Copyright: - Copyright (c) 1991-1997, 2004-2006, Raphael Manfredi - Copyright (c) 1996-2010, Andy Dougherty - Copyright (c) 1996, Sven Verdoolaege - Copyright (c) 1998-2016 Jarkko Hietaniemi - Copyright (c) 2004-2018 H.Merijn Brand - Copyright (c) 2006-2006, H.Merijn Brand & Nicholas Clark - Copyright (c) 2011, H.Merijn Brand & Tony Cook - Copyright (c) 2014-2014, Karl Williamson & H.Merijn Brand - Copyright (c) 2016 H.Merijn Brand & Todd Rinaldo - Copyright (c) 2016 Tony Cook - Copyright (c) 2017, Lukas Mai - Copyright (c) 2017 Dagfinn Ilmari Mannsåker - Copyright (c) 2017, Karl Williamson -License: Artistic or GPL-1+ or Artistic-dist -Comment: - From regen-configure/U/README: - . - The units in the "modified" directory have been derived from units - associated with the metaconfig program of Raphael Manfredi's "dist" - distribution. These units list Raphael Manfredi as the Copyright holder. - dist is distributed under a modified version of the Perl Artistic License. - Clause 7 of this modified license as contained in dist-3.0-pl60 provides: - . - 7. You may reuse parts of this Package in your own programs, provided - that you explicitly state where you got them from, in the source code - (and, left to your courtesy, in the documentation), duplicating - all the associated copyright notices and disclaimers. Besides - your changes, if any, must be clearly marked as such. Parts reused - that way will no longer fall under this license if, and only if, - the name of your program(s) have no immediate connection with the - name of the Package itself or its associated programs. You may then - apply whatever restrictions you wish on the reused parts or choose - to place them in the Public Domain--this will apply only within the - context of your package. - . - In accordance with this clause, the versions of these units - contained here are made available under the same terms as the - rest of the units. - . - It is assumed that the above relicensing also applies to all files in - the other subdirectories that are declared to be licensed under the - same modified Artistic license. - . - The modified license can be found later in this file under the - "Artistic-dist" tag. - -Files: utf8.c -Copyright: - Portions Copyright (c) 2008-2009 Bjoern Hoehrmann -License: GPL-1+ or Artistic, and Expat -Comment: - This program is free software; you can redistribute it and/or modify - it under the terms of either: - . - a) the GNU General Public License as published by the Free Software - Foundation; either version 1, or (at your option) any later - version, or - . - b) the "Artistic License" which comes with Perl. - . - Additionally, the tables included this file come from - http://bjoern.hoehrmann.de/utf-8/decoder/dfa/, under the Expat license. - -Files: debian/* -Copyright: - Portions of the Debian packaging are - Copyright 2008-2011 Niko Tyni - Copyright 2011 Dominic Hargreaves - The other people listed in debian/changelog are most probably - copyright holders too, but they have not included explicit copyright - or licensing information. -License: GPL-1+ or Artistic -Comment: - ---------------------------------------- - The portions by Niko Tyni and Dominic Hargreaves may be redistributed - and/or modified under the same terms as Perl itself. It is assumed that - other contributors have placed their contributions under a compatible - license. - -License: LGPL-2.1 - On Debian GNU/Linux systems, the complete text of the LGPL 2.1 - license can be found in `/usr/share/common-licenses/LGPL-2.1'. - -License: GPL-1+ - On Debian GNU/Linux systems, the complete text of the GNU General - Public License can be found in `/usr/share/common-licenses/GPL-1'. - -License: GPL-2+ - On Debian GNU/Linux systems, the complete text of version 2 of - the GNU General Public License can be found in - `/usr/share/common-licenses/GPL-2'. - -License: Artistic - On Debian GNU/Linux systems, the complete text of the - Artistic Licence can be found in `/usr/share/common-licenses/Artistic'. - -License: Artistic-2 - Copyright (c) 2000-2006, The Perl Foundation. - . - Everyone is permitted to copy and distribute verbatim copies of this - license document, but changing it is not allowed. - . - Preamble - . - This license establishes the terms under which a given free software - Package may be copied, modified, distributed, and/or redistributed. - The intent is that the Copyright Holder maintains some artistic - control over the development of that Package while still keeping the - Package available as open source and free software. - . - You are always permitted to make arrangements wholly outside of this - license directly with the Copyright Holder of a given Package. If the - terms of this license do not permit the full use that you propose to - make of the Package, you should contact the Copyright Holder and seek - a different licensing arrangement. - . - Definitions - . - "Copyright Holder" means the individual(s) or organization(s) named in - the copyright notice for the entire Package. - . - "Contributor" means any party that has contributed code or other - material to the Package, in accordance with the Copyright Holder's - procedures. - . - "You" and "your" means any person who would like to copy, distribute, - or modify the Package. - . - "Package" means the collection of files distributed by the Copyright - Holder, and derivatives of that collection and/or of those files. A - given Package may consist of either the Standard Version, or a - Modified Version. - . - "Distribute" means providing a copy of the Package or making it - accessible to anyone else, or in the case of a company or - organization, to others outside of your company or organization. - . - "Distributor Fee" means any fee that you charge for Distributing this - Package or providing support for this Package to another party. It - does not mean licensing fees. - . - "Standard Version" refers to the Package if it has not been modified, - or has been modified only in ways explicitly requested by the - Copyright Holder. - . - "Modified Version" means the Package, if it has been changed, and such - changes were not explicitly requested by the Copyright Holder. - . - "Original License" means this Artistic License as Distributed with the - Standard Version of the Package, in its current version or as it may - be modified by The Perl Foundation in the future. - . - "Source" form means the source code, documentation source, and - configuration files for the Package. - . - "Compiled" form means the compiled bytecode, object code, binary, or - any other form resulting from mechanical transformation or translation - of the Source form. - . - Permission for Use and Modification Without Distribution - . - (1) You are permitted to use the Standard Version and create and use - Modified Versions for any purpose without restriction, provided that - you do not Distribute the Modified Version. - . - Permissions for Redistribution of the Standard Version - . - (2) You may Distribute verbatim copies of the Source form of the - Standard Version of this Package in any medium without restriction, - either gratis or for a Distributor Fee, provided that you duplicate - all of the original copyright notices and associated disclaimers. At - your discretion, such verbatim copies may or may not include a - Compiled form of the Package. - . - (3) You may apply any bug fixes, portability changes, and other - modifications made available from the Copyright Holder. The resulting - Package will still be considered the Standard Version, and as such - will be subject to the Original License. - . - Distribution of Modified Versions of the Package as Source - . - (4) You may Distribute your Modified Version as Source (either gratis - or for a Distributor Fee, and with or without a Compiled form of the - Modified Version) provided that you clearly document how it differs - from the Standard Version, including, but not limited to, documenting - any non-standard features, executables, or modules, and provided that - you do at least ONE of the following: - . - (a) make the Modified Version available to the Copyright Holder of the - Standard Version, under the Original License, so that the Copyright - Holder may include your modifications in the Standard Version. (b) - ensure that installation of your Modified Version does not prevent the - user installing or running the Standard Version. In addition, the - Modified Version must bear a name that is different from the name of - the Standard Version. (c) allow anyone who receives a copy of the - Modified Version to make the Source form of the Modified Version - available to others under (i) the Original License or (ii) a license - that permits the licensee to freely copy, modify and redistribute the - Modified Version using the same licensing terms that apply to the copy - that the licensee received, and requires that the Source form of the - Modified Version, and of any works derived from it, be made freely - available in that license fees are prohibited but Distributor Fees are - allowed. - . - Distribution of Compiled Forms of the Standard Version or Modified - Versions without the Source - . - (5) You may Distribute Compiled forms of the Standard Version without - the Source, provided that you include complete instructions on how to - get the Source of the Standard Version. Such instructions must be - valid at the time of your distribution. If these instructions, at any - time while you are carrying out such distribution, become invalid, you - must provide new instructions on demand or cease further distribution. - If you provide valid instructions or cease distribution within thirty - days after you become aware that the instructions are invalid, then - you do not forfeit any of your rights under this license. - . - (6) You may Distribute a Modified Version in Compiled form without the - Source, provided that you comply with Section 4 with respect to the - Source of the Modified Version. - . - Aggregating or Linking the Package - . - (7) You may aggregate the Package (either the Standard Version or - Modified Version) with other packages and Distribute the resulting - aggregation provided that you do not charge a licensing fee for the - Package. Distributor Fees are permitted, and licensing fees for other - components in the aggregation are permitted. The terms of this license - apply to the use and Distribution of the Standard or Modified Versions - as included in the aggregation. - . - (8) You are permitted to link Modified and Standard Versions with - other works, to embed the Package in a larger work of your own, or to - build stand-alone binary or bytecode versions of applications that - include the Package, and Distribute the result without restriction, - provided the result does not expose a direct interface to the Package. - . - Items That are Not Considered Part of a Modified Version - . - (9) Works (including, but not limited to, modules and scripts) that - merely extend or make use of the Package, do not, by themselves, cause - the Package to be a Modified Version. In addition, such works are not - considered parts of the Package itself, and are not subject to the - terms of this license. - . - General Provisions - . - (10) Any use, modification, and distribution of the Standard or - Modified Versions is governed by this Artistic License. By using, - modifying or distributing the Package, you accept this license. Do not - use, modify, or distribute the Package, if you do not accept this - license. - . - (11) If your Modified Version has been derived from a Modified Version - made by someone other than you, you are nevertheless required to - ensure that your Modified Version complies with the requirements of - this license. - . - (12) This license does not grant you the right to use any trademark, - service mark, tradename, or logo of the Copyright Holder. - . - (13) This license includes the non-exclusive, worldwide, - free-of-charge patent license to make, have made, use, offer to sell, - sell, import and otherwise transfer the Package with respect to any - patent claims licensable by the Copyright Holder that are necessarily - infringed by the Package. If you institute patent litigation - (including a cross-claim or counterclaim) against any party alleging - that the Package constitutes direct or contributory patent - infringement, then this Artistic License to you shall terminate on the - date that such litigation is filed. - . - (14) Disclaimer of Warranty: THE PACKAGE IS PROVIDED BY THE COPYRIGHT - HOLDER AND CONTRIBUTORS "AS IS' AND WITHOUT ANY EXPRESS OR IMPLIED - WARRANTIES. THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A - PARTICULAR PURPOSE, OR NON-INFRINGEMENT ARE DISCLAIMED TO THE EXTENT - PERMITTED BY YOUR LOCAL LAW. UNLESS REQUIRED BY LAW, NO COPYRIGHT - HOLDER OR CONTRIBUTOR WILL BE LIABLE FOR ANY DIRECT, INDIRECT, - INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING IN ANY WAY OUT OF THE USE - OF THE PACKAGE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -License: BZIP - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - . - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - . - 2. The origin of this software must not be misrepresented; you must - not claim that you wrote the original software. If you use this - software in a product, an acknowledgment in the product - documentation would be appreciated but is not required. - . - 3. Altered source versions must be plainly marked as such, and must - not be misrepresented as being the original software. - . - 4. The name of the author may not be used to endorse or promote - products derived from this software without specific prior written - permission. - . - THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS - OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY - DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, - WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING - NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS - SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - . - Julian Seward, jseward@bzip.org - bzip2/libbzip2 version 1.0.5 of 10 December 2007 - -License: ZLIB - This software is provided 'as-is', without any express or implied - warranty. In no event will the authors be held liable for any damages - arising from the use of this software. - . - Permission is granted to anyone to use this software for any purpose, - including commercial applications, and to alter it and redistribute it - freely, subject to the following restrictions: - . - 1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. - 2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. - 3. This notice may not be removed or altered from any source distribution. - -License: Expat - Permission is hereby granted, free of charge, to any person obtaining a copy - of this software and associated documentation files (the "Software"), to deal - in the Software without restriction, including without limitation the rights - to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - copies of the Software, and to permit persons to whom the Software is - furnished to do so, subject to the following conditions: - . - The above copyright notice and this permission notice shall be included in - all copies or substantial portions of the Software. - . - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS - OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL - THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING - FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER - DEALINGS IN THE SOFTWARE. - -License: BSD-3-clause-with-weird-numbering - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - 4. Neither the name of the University nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - . - THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND - ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -License: BSD-4-clause-POWERDOG - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer - in the documentation and/or other materials provided with the - distribution. - 3. All advertising materials mentioning features or use of this - software must display the following acknowledgement: - This product includes software developed by Powerdog Industries. - 4. The name of Powerdog Industries may not be used to endorse or - promote products derived from this software without specific prior - written permission. - . - THIS SOFTWARE IS PROVIDED BY POWERDOG INDUSTRIES ``AS IS'' AND ANY - EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE POWERDOG INDUSTRIES BE - LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR - BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, - WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE - OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, - EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -License: Unicode - EXHIBIT 1 - UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE - . - Unicode Data Files include all data files under the directories - http://www.unicode.org/Public/, http://www.unicode.org/reports/, - and http://www.unicode.org/cldr/data/ . Unicode Data Files - do not include PDF online code charts under the directory - http://www.unicode.org/Public/. Software includes any - source code published in the Unicode Standard or under the directories - http://www.unicode.org/Public/, http://www.unicode.org/reports/, - and http://www.unicode.org/cldr/data/. - . - NOTICE TO USER: Carefully read the following legal agreement. BY - DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING UNICODE - INC.'S DATA FILES ("DATA FILES"), AND/OR SOFTWARE ("SOFTWARE"), YOU - UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE TERMS AND - CONDITIONS OF THIS AGREEMENT. IF YOU DO NOT AGREE, DO NOT DOWNLOAD, - INSTALL, COPY, DISTRIBUTE OR USE THE DATA FILES OR SOFTWARE. - . - COPYRIGHT AND PERMISSION NOTICE - . - Copyright © 1991-2011 Unicode, Inc. All rights - reserved. Distributed under the Terms of Use in - http://www.unicode.org/copyright.html. - . - Permission is hereby granted, free of charge, to any person - obtaining a copy of the Unicode data files and any associated - documentation (the "Data Files") or Unicode software and any - associated documentation (the "Software") to deal in the Data Files - or Software without restriction, including without limitation - the rights to use, copy, modify, merge, publish, distribute, - and/or sell copies of the Data Files or Software, and to permit - persons to whom the Data Files or Software are furnished to do so, - provided that (a) the above copyright notice(s) and this permission - notice appear with all copies of the Data Files or Software, - (b) both the above copyright notice(s) and this permission notice - appear in associated documentation, and (c) there is clear notice - in each modified Data File or in the Software as well as in the - documentation associated with the Data File(s) or Software that - the data or software has been modified. - . - THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY - OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE - WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE - AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE - COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE LIABLE - FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, - OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR - PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER - TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR - PERFORMANCE OF THE DATA FILES OR SOFTWARE. - . - Except as contained in this notice, the name of a copyright holder - shall not be used in advertising or otherwise to promote the sale, - use or other dealings in these Data Files or Software without - prior written authorization of the copyright holder. - -License: BSD-3-clause-GENERIC - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - 3. The names of the authors may not be used to endorse or promote - products derived from this software without specific prior written - permission. - . - THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND - ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -License: BSD-3-clause - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - 3. Neither the name of the University nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - . - THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND - ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -License: REGCOMP - Permission is granted to anyone to use this software for any - purpose on any computer system, and to redistribute it freely, - subject to the following restrictions: - . - 1. The author is not responsible for the consequences of use of - this software, no matter how awful, even if they arise - from defects in it. - . - 2. The origin of this software must not be misrepresented, either - by explicit claim or by omission. - . - 3. Altered versions must be plainly marked as such, and must not - be misrepresented as being the original software. - -License: TEXT-TABS - This module may be modified, used, copied, and redistributed at your own risk. - . - Although allowed by the preceding license, please do not publicly - redistribute modified versions of this code with the name "Text::Tabs" - unless it passes the unmodified Text::Tabs test suite. - -License: S2P - This program is free and open software. You may use, modify, - distribute, and sell this program (and any modified variants) in any - way you wish, provided you do not restrict others from doing the same. - -License: DONT-CHANGE-THE-GPL - Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed. - -License: SDBM-PUBLIC-DOMAIN - From ext/SDBM_File/sdbm/README: - . - The entire sdbm library package, as authored by me, Ozan S. Yigit, - is hereby placed in the public domain. As such, the author is not - responsible for the consequences of use of this software, no - matter how awful, even if they arise from defects in it. There is no - expressed or implied warranty for the sdbm library. - . - Since the sdbm library package is in the public domain, this original - release or any additional public-domain releases of the modified - original cannot possibly (by definition) be withheld from you. Also - by definition, You (singular) have all the rights to this code - (including the right to sell without permission, the right to - hoard[3] and the right to do other icky things as you see fit) - but those rights are also granted to everyone else. - . - Please note that all previous distributions of this software - contained a copyright (which is now dropped) to protect its origins - and its current public domain status against any possible claims - and/or challenges. - -License: GPL-3+-WITH-BISON-EXCEPTION - 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 3 of the License, or - (at your option) any later version. - . - 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. - . - You should have received a copy of the GNU General Public License - along with this program. If not, see . - . - As a special exception, you may create a larger work that contains - part or all of the Bison parser skeleton and distribute that work - under terms of your choice, so long as that work isn't itself a - parser generator using the skeleton or a modified version thereof - as a parser skeleton. Alternatively, if you modify or redistribute - the parser skeleton itself, you may (at your option) remove this - special exception, which will cause the skeleton and the resulting - Bison output files to be licensed under the GNU General Public - License without this special exception. - . - This special exception was added by the Free Software Foundation in - version 2.2 of Bison. - -License: HSIEH-DERIVATIVE - The derivative content includes raw computer source code, ideas, - opinions, and excerpts whose original source is covered under another - license and transformations of such derivatives. Note that mere excerpts - by themselves (with the exception of raw source code) are not considered - derivative works under this license. Use and redistribution is limited - to the following conditions: - . - One may not create a derivative work which, in any way, violates the - Paul Hsieh exposition license described above on the original content. - . - One may not apply a license to a derivative work that precludes - anyone else from using and redistributing derivative content. - . - One may not attribute any derivative content to authors not involved - in the creation of the content, though an attribution to the author - is not necessary. - -License: HSIEH-BSD - Copyright (c) 2010, Paul Hsieh - All rights reserved. - . - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - . - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - . - Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - . - Neither my name, Paul Hsieh, nor the names of any other contributors - to the code use may not be used to endorse or promote products - derived from this software without specific prior written permission. - . - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT - OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -License: CC0-1.0 - Statatement of Purpose - . - 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"). - . - 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. - . - 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. - . - 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: - . - the right to reproduce, adapt, distribute, perform, display, - communicate, and translate a Work; - . - moral rights retained by the original author(s) and/or performer(s); - . - publicity and privacy rights pertaining to a person's image or - likeness depicted in a Work; - . - rights protecting against unfair competition in regards to a Work, - subject to the limitations in paragraph 4(a), below; - . - rights protecting the extraction, dissemination, use and reuse of data in a Work; - . - 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 - . - other similar, equivalent or corresponding rights throughout the world - based on applicable law or treaty, and any national implementations - thereof. - . - 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. - . - 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. - . - 4. Limitations and Disclaimers. - . - No trademark or patent rights held by Affirmer are waived, - abandoned, surrendered, licensed or otherwise affected by this - document. - . - 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. - . - 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. - . - 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. -Comment: - This license text was retrieved from - - on Fri, 05 Feb 2016 20:30:28 +0200 - -License: RRA-KEEP-THIS-NOTICE - Copying and distribution of this file, with or without modification, are - permitted in any medium without royalty provided the copyright notice and - this notice are preserved. This file is offered as-is, without any - warranty. - -License: Artistic-dist - The "Artistic License" - . - Preamble - . - The intent of this document is to state the conditions under which a - Package may be copied, such that the Copyright Holder maintains some - semblance of artistic control over the development of the Package, - while giving the users of the package the right to use and distribute - the Package in a more-or-less customary fashion, plus the right to make - reasonable modifications. - . - It also grants you the rights to reuse parts of a Package in your own - programs without transferring this License to those programs, provided - that you meet some reasonable requirements. - . - Definitions: - . - "Package" refers to the collection of files distributed by the - Copyright Holder, and derivatives of that collection of files - created through textual modification. - . - "Standard Version" refers to such a Package if it has not been - modified, or has been modified in accordance with the wishes - of the Copyright Holder as specified below. - . - "Copyright Holder" is whoever is named in the copyright or - copyrights for the package. - . - "You" is you, if you're thinking about copying or distributing - this Package. - . - "Reasonable copying fee" is whatever you can justify on the - basis of media cost, duplication charges, time of people involved, - and so on. (You will not be required to justify it to the - Copyright Holder, but only to the computing community at large - as a market that must bear the fee.) - . - "Freely Available" means that no fee is charged for the item - itself, though there may be fees involved in handling the item. - It also means that recipients of the item may redistribute it - under the same conditions they received it. - . - 1. You may make and give away verbatim copies of the source form of the - Standard Version of this Package without restriction, provided that you - duplicate all of the original copyright notices and associated disclaimers. - . - 2. You may apply bug fixes, portability fixes and other modifications - derived from the Public Domain or from the Copyright Holder. A Package - modified in such a way shall still be considered the Standard Version. - . - 3. You may otherwise modify your copy of this Package in any way, provided - that you insert a prominent notice in each changed file stating how and - when you changed that file, and provided that you do at least ONE of the - following: - . - a) place your modifications in the Public Domain or otherwise make them - Freely Available, such as by posting said modifications to Usenet or - an equivalent medium, or placing the modifications on a major archive - site such as uunet.uu.net, or by allowing the Copyright Holder to include - your modifications in the Standard Version of the Package. - . - b) use the modified Package only within your corporation or organization. - . - c) rename any non-standard executables so the names do not conflict - with standard executables, which must also be provided, and provide - a separate manual page for each non-standard executable that clearly - documents how it differs from the Standard Version. - . - d) make other distribution arrangements with the Copyright Holder. - . - 4. You may distribute the programs of this Package in object code or - executable form, provided that you do at least ONE of the following: - . - a) distribute a Standard Version of the executables and library files, - together with instructions (in the manual page or equivalent) on where - to get the Standard Version. - . - b) accompany the distribution with the machine-readable source of - the Package with your modifications. - . - c) give non-standard executables non-standard names, and clearly - document the differences in manual pages (or equivalent), together - with instructions on where to get the Standard Version. - . - d) make other distribution arrangements with the Copyright Holder. - . - 5. You may charge a reasonable copying fee for any distribution of this - Package. You may charge any fee you choose for support of this - Package. You may not charge a fee for this Package itself. However, - you may distribute this Package in aggregate with other (possibly - commercial) programs as part of a larger (possibly commercial) software - distribution provided that you do not advertise this Package as a - product of your own. - . - 6. The scripts and library files supplied as input to or produced as - output from the programs of this Package do not automatically fall - under the copyright of this Package, but belong to whoever generated - them, and may be sold commercially, and may be aggregated with this - Package. If such scripts or library files are aggregated with this - Package via the so-called "undump" or "unexec" methods of producing a - binary executable image, then distribution of such an image shall - neither be construed as a distribution of this Package nor shall it - fall under the restrictions of Paragraphs 3 and 4, provided that you do - not represent such an executable image as a Standard Version of this - Package. - . - 7. You may reuse parts of this Package in your own programs, provided that - you explicitly state where you got them from, in the source code (and, left - to your courtesy, in the documentation), duplicating all the associated - copyright notices and disclaimers. Besides your changes, if any, must be - clearly marked as such. Parts reused that way will no longer fall under this - license if, and only if, the name of your program(s) have no immediate - connection with the name of the Package itself or its associated programs. - You may then apply whatever restrictions you wish on the reused parts or - choose to place them in the Public Domain--this will apply only within the - context of your package. - . - 8. The name of the Copyright Holder may not be used to endorse or promote - products derived from this software without specific prior written permission. - . - 9. THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR - IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED - WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. - . - The End -Comment: - This license was copied from the upstream 'dist' repository, - https://github.com/rmanfredi/dist.git - at Sun, 15 Oct 2017 13:07:36 +0300. - - ----------------------------------------- -wget version 1.20.1-1.1 - - -Copyright: - -This package was debianized by -Christian Schwarz on Mon, 18 Nov 1996 00:59:57 +0100 -J. Ramos Goncalves on Thu, 13 Feb 1997 23:15:18 +0000 -Nicolás Lichtmaier on Sat, 18 Oct 1997 21:23:12 -0300 -Noël Köthe on Mon, 18 Feb 2002 09:53:00 +0100 - -It was downloaded from ftp://ftp.gnu.org/gnu/wget/ - Homepage: http://www.gnu.org/directory/wget.html - http://www.gnu.org/software/wget/wget.html - -Upstream Author: Giuseppe Scrivano - -Copyright: (C) 2007 Free Software Foundation, Inc. - -Released under the terms of the GPL; see -/usr/share/common-licenses/GPL-3. - -"In addition, as a special exception, the Free Software Foundation -gives permission to link the code of its release of Wget with the -OpenSSL project's "OpenSSL" library (or with modified versions of it -that use the same license as the "OpenSSL" library), and distribute -the linked executables. You must obey the GNU General Public License -in all respects for all of the code used other than "OpenSSL". If you -modify this file, you may extend this exception to your version of the -file, but you are not obligated to do so. If you do not wish to do -so, delete this exception statement from your version." - -The wget(1) manpage and the wget info page are distributed under the -terms of the GNU Free Documentation License ; see -/usr/share/common-licenses/GFDL-1.2 - - - ----------------------------------------- -x11-common version 1:7.7+19 - - -Copyright: - -Source Package: xorg -Debian/Ubuntu package authors: Branden Robinson, Fabio M. Di Nitto, Daniel - Stone and others - -Copyright 2004-2005 Canonical Ltd. - -Permission is hereby granted, free of charge, to any person obtaining a -copy of this software and associated documentation files (the "Software"), -to deal in the Software without restriction, including without limitation -the rights to use, copy, modify, merge, publish, distribute, sublicense, -and/or sell copies of the Software, and to permit persons to whom the -Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL -SOFTWARE IN THE PUBLIC INTEREST, INC. BE LIABLE FOR ANY CLAIM, DAMAGES OR -OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, -ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -DEALINGS IN THE SOFTWARE. - -Except as contained in this notice, the name of Canoncial Ltd. shall not be -used in advertising or otherwise to promote the sale, use or other dealings -in this Software without prior written authorization from Canonical Ltd. - -------------------------------------------------------------------------------- -Copyright 1996-2002 Software in the Public Interest, Inc. - -Permission is hereby granted, free of charge, to any person obtaining a -copy of this software and associated documentation files (the "Software"), -to deal in the Software without restriction, including without limitation -the rights to use, copy, modify, merge, publish, distribute, sublicense, -and/or sell copies of the Software, and to permit persons to whom the -Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL -SOFTWARE IN THE PUBLIC INTEREST, INC. BE LIABLE FOR ANY CLAIM, DAMAGES OR -OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, -ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -DEALINGS IN THE SOFTWARE. - -Except as contained in this notice, the name of Software in the Public -Interest, Inc. shall not be used in advertising or otherwise to promote the -sale, use or other dealings in this Software without prior written -authorization from Software in the Public Interest, Inc. - --------------------------------------------------------------------------------- -Copyright 1998-2007 Branden Robinson . -Copyright 2000, 2003, 2004 Progeny Linux Systems, Inc. -Copyright 1996 Stephen Early -Copyright 1997 Mark Eichin -Copyright 2005 David Nusinow - -This is free software; you may redistribute it and/or modify -it under the terms of the GNU General Public License as -published by the Free Software Foundation; either version 2, -or (at your option) any later version. - -This 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. - -You should have received a copy of the GNU General Public License with -the Debian operating system, in /usr/share/common-licenses/GPL; if -not, write to the Free Software Foundation, Inc., 51 Franklin St, -Fifth Floor, Boston, MA 02110-1301, USA. - --------------------------------------------------------------------------------- -© 2010-2011 Cyril Brulebois - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - - - ----------------------------------------- -dirmngr version 2.2.12-1+deb10u1 - - -Copyright: - -Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ -Upstream-Name: GnuPG - The GNU Privacy Guard (modern version) -Upstream-Contact: GnuPG development mailing list -Source: https://gnupg.org/download/ - -Files: * -Copyright: 1992, 1995-2016, Free Software Foundation, Inc -License: GPL-3+ - -Files: agent/command.c - agent/command-ssh.c - agent/gpg-agent.c - common/homedir.c - common/sysutils.c - g10/mainproc.c -Copyright: 1998-2007, 2009, 2012, Free Software Foundation, Inc - 2013, Werner Koch -License: GPL-3+ - -Files: autogen.sh -Copyright: 2003, g10 Code GmbH -License: permissive - -Files: common/gc-opt-flags.h - common/i18n.h - tools/clean-sat.c - tools/no-libgcrypt.c -Copyright: 1998-2001, 2003, 2004, 2006, 2007 Free Software Foundation, Inc -License: permissive - -Files: common/localename.c -Copyright: 1985, 1989-1993, 1995-2003, 2007, 2008 Free Software Foundation, Inc. -License: LGPL-2.1+ - -Files: dirmngr/dns.c - dirmngr/dns.h -Copyright: 2008-2010, 2012-2016 William Ahern -License: Expat - -Files: doc/yat2m.c - scd/app-geldkarte.c -Copyright: 2004, 2005, g10 Code GmbH - 2006, 2008, 2009, 2011, Free Software Foundation, Inc -License: GPL-3+ - -Files: scd/ccid-driver.h - scd/ccid-driver.c -Copyright: 2003-2007, Free Software Foundation, Inc -License: GPL-3+ or BSD-3-clause - -Files: tools/rfc822parse.c - tools/rfc822parse.h -Copyright: 1999-2000, Werner Koch, Duesseldorf - 2003-2004, g10 Code GmbH -License: LGPL-3+ - -Files: tools/sockprox.c -Copyright: 2007, g10 Code GmbH -License: GPL-3+ - -Files: doc/OpenPGP -Copyright: 1998-2013 Free Software Foundation, Inc. - 1997, 1998, 2013 Werner Koch - 1998 The Internet Society -License: RFC-Reference - -Files: tests/gpgscm/* -Copyright: 2000, Dimitrios Souflis - 2016, Justus Winter, Werner Koch -License: TinySCHEME - -Files: debian/* -Copyright: 1998-2018 Debian GnuPG packagers, including - Eric Dorland - Daniel Kahn Gillmor - NIIBE Yutaka -License: GPL-3+ - -Files: debian/org.gnupg.scdaemon.metainfo.xml -Copyright: 2017 Daniel Kahn Gillmor -Comment: This file is licensed permissively for the sake of AppStream -License: CC0-1.0 - -License: TinySCHEME - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are - met: - . - Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. - . - Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - . - Neither the name of Dimitrios Souflis nor the names of the - contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - . - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR - CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, - PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR - PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF - LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING - NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS - SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - -License: permissive - This file is free software; as a special exception the author gives - unlimited permission to copy and/or distribute it, with or without - modifications, as long as this notice is preserved. - . - This file is distributed in the hope that it will be useful, but - WITHOUT ANY WARRANTY, to the extent permitted by law; without even - the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR - PURPOSE. - -License: RFC-Reference - doc/OpenPGP merely cites and references IETF Draft - draft-ietf-openpgp-formats-07.txt. This is believed to be fair use; - but if not, it's covered by the source document's license under - the 'comment on' clause. The license statement follows. - . - This document and translations of it may be copied and furnished to - others, and derivative works that comment on or otherwise explain it - or assist in its implementation may be prepared, copied, published - and distributed, in whole or in part, without restriction of any - kind, provided that the above copyright notice and this paragraph - are included on all such copies and derivative works. However, this - document itself may not be modified in any way, such as by removing - the copyright notice or references to the Internet Society or other - Internet organizations, except as needed for the purpose of - developing Internet standards in which case the procedures for - copyrights defined in the Internet Standards process must be - followed, or as required to translate it into languages other than - English. - . - The limited permissions granted above are perpetual and will not be - revoked by the Internet Society or its successors or assigns. - - -License: GPL-3+ - GnuPG 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 3 of the License, or - (at your option) any later version. - . - GnuPG 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. - . - You should have received a copy of the GNU General Public License - along with this program; if not, see . - . - On Debian systems, the full text of the GNU General Public - License version 3 can be found in the file - `/usr/share/common-licenses/GPL-3'. - -License: LGPL-3+ - This program is free software; you can redistribute it and/or modify it - under the terms of the GNU Lesser General Public License as - published by the Free Software Foundation; either version 3 of - the License, or (at your option) any later version. - . - 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 - Lesser General Public License for more details. - . - You should have received a copy of the GNU Lesser General Public - License along with this program; if not, see . - . - On Debian systems, the full text of the GNU Lesser General Public - License version 3 can be found in the file - `/usr/share/common-licenses/LGPL-3'. - -License: LGPL-2.1+ - This program is free software; you can redistribute it and/or modify it - under the terms of the GNU Lesser General Public License as - published by the Free Software Foundation; either version 2.1 of - the License, or (at your option) any later version. - . - 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 - Lesser General Public License for more details. - . - You should have received a copy of the GNU Lesser General Public - License along with this program; if not, see . - . - On Debian systems, the full text of the GNU Lesser General Public - License version 2.1 can be found in the file - `/usr/share/common-licenses/LGPL-2.1'. - -License: BSD-3-clause - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - 1. Redistributions of source code must retain the above copyright - notice, and the entire permission notice in its entirety, - including the disclaimer of warranties. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - 3. The name of the author may not be used to endorse or promote - products derived from this software without specific prior - written permission. - . - THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, - INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR - SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, - STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED - OF THE POSSIBILITY OF SUCH DAMAGE. - -License: Expat - Permission is hereby granted, free of charge, to any person obtaining a - copy of this software and associated documentation files (the - "Software"), to deal in the Software without restriction, including - without limitation the rights to use, copy, modify, merge, publish, - distribute, sublicense, and/or sell copies of the Software, and to permit - persons to whom the Software is furnished to do so, subject to the - following conditions: - . - The above copyright notice and this permission notice shall be included - in all copies or substantial portions of the Software. - . - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS - OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN - NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, - DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR - OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE - USE OR OTHER DEALINGS IN THE SOFTWARE. - -License: CC0-1.0 - To the extent possible under law, the author(s) have dedicated all - copyright and related and neighboring rights to this software to the public - domain worldwide. This software is distributed without any warranty. - . - On Debian systems, the complete text of the CC0 license, version 1.0, - can be found in /usr/share/common-licenses/CC0-1.0. - - ----------------------------------------- -gnupg version 2.2.12-1+deb10u1 - - -Copyright: - -Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ -Upstream-Name: GnuPG - The GNU Privacy Guard (modern version) -Upstream-Contact: GnuPG development mailing list -Source: https://gnupg.org/download/ - -Files: * -Copyright: 1992, 1995-2016, Free Software Foundation, Inc -License: GPL-3+ - -Files: agent/command.c - agent/command-ssh.c - agent/gpg-agent.c - common/homedir.c - common/sysutils.c - g10/mainproc.c -Copyright: 1998-2007, 2009, 2012, Free Software Foundation, Inc - 2013, Werner Koch -License: GPL-3+ - -Files: autogen.sh -Copyright: 2003, g10 Code GmbH -License: permissive - -Files: common/gc-opt-flags.h - common/i18n.h - tools/clean-sat.c - tools/no-libgcrypt.c -Copyright: 1998-2001, 2003, 2004, 2006, 2007 Free Software Foundation, Inc -License: permissive - -Files: common/localename.c -Copyright: 1985, 1989-1993, 1995-2003, 2007, 2008 Free Software Foundation, Inc. -License: LGPL-2.1+ - -Files: dirmngr/dns.c - dirmngr/dns.h -Copyright: 2008-2010, 2012-2016 William Ahern -License: Expat - -Files: doc/yat2m.c - scd/app-geldkarte.c -Copyright: 2004, 2005, g10 Code GmbH - 2006, 2008, 2009, 2011, Free Software Foundation, Inc -License: GPL-3+ - -Files: scd/ccid-driver.h - scd/ccid-driver.c -Copyright: 2003-2007, Free Software Foundation, Inc -License: GPL-3+ or BSD-3-clause - -Files: tools/rfc822parse.c - tools/rfc822parse.h -Copyright: 1999-2000, Werner Koch, Duesseldorf - 2003-2004, g10 Code GmbH -License: LGPL-3+ - -Files: tools/sockprox.c -Copyright: 2007, g10 Code GmbH -License: GPL-3+ - -Files: doc/OpenPGP -Copyright: 1998-2013 Free Software Foundation, Inc. - 1997, 1998, 2013 Werner Koch - 1998 The Internet Society -License: RFC-Reference - -Files: tests/gpgscm/* -Copyright: 2000, Dimitrios Souflis - 2016, Justus Winter, Werner Koch -License: TinySCHEME - -Files: debian/* -Copyright: 1998-2018 Debian GnuPG packagers, including - Eric Dorland - Daniel Kahn Gillmor - NIIBE Yutaka -License: GPL-3+ - -Files: debian/org.gnupg.scdaemon.metainfo.xml -Copyright: 2017 Daniel Kahn Gillmor -Comment: This file is licensed permissively for the sake of AppStream -License: CC0-1.0 - -License: TinySCHEME - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are - met: - . - Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. - . - Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - . - Neither the name of Dimitrios Souflis nor the names of the - contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - . - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR - CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, - PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR - PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF - LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING - NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS - SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - -License: permissive - This file is free software; as a special exception the author gives - unlimited permission to copy and/or distribute it, with or without - modifications, as long as this notice is preserved. - . - This file is distributed in the hope that it will be useful, but - WITHOUT ANY WARRANTY, to the extent permitted by law; without even - the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR - PURPOSE. - -License: RFC-Reference - doc/OpenPGP merely cites and references IETF Draft - draft-ietf-openpgp-formats-07.txt. This is believed to be fair use; - but if not, it's covered by the source document's license under - the 'comment on' clause. The license statement follows. - . - This document and translations of it may be copied and furnished to - others, and derivative works that comment on or otherwise explain it - or assist in its implementation may be prepared, copied, published - and distributed, in whole or in part, without restriction of any - kind, provided that the above copyright notice and this paragraph - are included on all such copies and derivative works. However, this - document itself may not be modified in any way, such as by removing - the copyright notice or references to the Internet Society or other - Internet organizations, except as needed for the purpose of - developing Internet standards in which case the procedures for - copyrights defined in the Internet Standards process must be - followed, or as required to translate it into languages other than - English. - . - The limited permissions granted above are perpetual and will not be - revoked by the Internet Society or its successors or assigns. - - -License: GPL-3+ - GnuPG 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 3 of the License, or - (at your option) any later version. - . - GnuPG 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. - . - You should have received a copy of the GNU General Public License - along with this program; if not, see . - . - On Debian systems, the full text of the GNU General Public - License version 3 can be found in the file - `/usr/share/common-licenses/GPL-3'. - -License: LGPL-3+ - This program is free software; you can redistribute it and/or modify it - under the terms of the GNU Lesser General Public License as - published by the Free Software Foundation; either version 3 of - the License, or (at your option) any later version. - . - 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 - Lesser General Public License for more details. - . - You should have received a copy of the GNU Lesser General Public - License along with this program; if not, see . - . - On Debian systems, the full text of the GNU Lesser General Public - License version 3 can be found in the file - `/usr/share/common-licenses/LGPL-3'. - -License: LGPL-2.1+ - This program is free software; you can redistribute it and/or modify it - under the terms of the GNU Lesser General Public License as - published by the Free Software Foundation; either version 2.1 of - the License, or (at your option) any later version. - . - 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 - Lesser General Public License for more details. - . - You should have received a copy of the GNU Lesser General Public - License along with this program; if not, see . - . - On Debian systems, the full text of the GNU Lesser General Public - License version 2.1 can be found in the file - `/usr/share/common-licenses/LGPL-2.1'. - -License: BSD-3-clause - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - 1. Redistributions of source code must retain the above copyright - notice, and the entire permission notice in its entirety, - including the disclaimer of warranties. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - 3. The name of the author may not be used to endorse or promote - products derived from this software without specific prior - written permission. - . - THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, - INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR - SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, - STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED - OF THE POSSIBILITY OF SUCH DAMAGE. - -License: Expat - Permission is hereby granted, free of charge, to any person obtaining a - copy of this software and associated documentation files (the - "Software"), to deal in the Software without restriction, including - without limitation the rights to use, copy, modify, merge, publish, - distribute, sublicense, and/or sell copies of the Software, and to permit - persons to whom the Software is furnished to do so, subject to the - following conditions: - . - The above copyright notice and this permission notice shall be included - in all copies or substantial portions of the Software. - . - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS - OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN - NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, - DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR - OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE - USE OR OTHER DEALINGS IN THE SOFTWARE. - -License: CC0-1.0 - To the extent possible under law, the author(s) have dedicated all - copyright and related and neighboring rights to this software to the public - domain worldwide. This software is distributed without any warranty. - . - On Debian systems, the complete text of the CC0 license, version 1.0, - can be found in /usr/share/common-licenses/CC0-1.0. - - ----------------------------------------- -gnupg-l10n version 2.2.12-1+deb10u1 - - -Copyright: - -Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ -Upstream-Name: GnuPG - The GNU Privacy Guard (modern version) -Upstream-Contact: GnuPG development mailing list -Source: https://gnupg.org/download/ - -Files: * -Copyright: 1992, 1995-2016, Free Software Foundation, Inc -License: GPL-3+ - -Files: agent/command.c - agent/command-ssh.c - agent/gpg-agent.c - common/homedir.c - common/sysutils.c - g10/mainproc.c -Copyright: 1998-2007, 2009, 2012, Free Software Foundation, Inc - 2013, Werner Koch -License: GPL-3+ - -Files: autogen.sh -Copyright: 2003, g10 Code GmbH -License: permissive - -Files: common/gc-opt-flags.h - common/i18n.h - tools/clean-sat.c - tools/no-libgcrypt.c -Copyright: 1998-2001, 2003, 2004, 2006, 2007 Free Software Foundation, Inc -License: permissive - -Files: common/localename.c -Copyright: 1985, 1989-1993, 1995-2003, 2007, 2008 Free Software Foundation, Inc. -License: LGPL-2.1+ - -Files: dirmngr/dns.c - dirmngr/dns.h -Copyright: 2008-2010, 2012-2016 William Ahern -License: Expat - -Files: doc/yat2m.c - scd/app-geldkarte.c -Copyright: 2004, 2005, g10 Code GmbH - 2006, 2008, 2009, 2011, Free Software Foundation, Inc -License: GPL-3+ - -Files: scd/ccid-driver.h - scd/ccid-driver.c -Copyright: 2003-2007, Free Software Foundation, Inc -License: GPL-3+ or BSD-3-clause - -Files: tools/rfc822parse.c - tools/rfc822parse.h -Copyright: 1999-2000, Werner Koch, Duesseldorf - 2003-2004, g10 Code GmbH -License: LGPL-3+ - -Files: tools/sockprox.c -Copyright: 2007, g10 Code GmbH -License: GPL-3+ - -Files: doc/OpenPGP -Copyright: 1998-2013 Free Software Foundation, Inc. - 1997, 1998, 2013 Werner Koch - 1998 The Internet Society -License: RFC-Reference - -Files: tests/gpgscm/* -Copyright: 2000, Dimitrios Souflis - 2016, Justus Winter, Werner Koch -License: TinySCHEME - -Files: debian/* -Copyright: 1998-2018 Debian GnuPG packagers, including - Eric Dorland - Daniel Kahn Gillmor - NIIBE Yutaka -License: GPL-3+ - -Files: debian/org.gnupg.scdaemon.metainfo.xml -Copyright: 2017 Daniel Kahn Gillmor -Comment: This file is licensed permissively for the sake of AppStream -License: CC0-1.0 - -License: TinySCHEME - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are - met: - . - Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. - . - Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - . - Neither the name of Dimitrios Souflis nor the names of the - contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - . - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR - CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, - PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR - PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF - LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING - NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS - SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - -License: permissive - This file is free software; as a special exception the author gives - unlimited permission to copy and/or distribute it, with or without - modifications, as long as this notice is preserved. - . - This file is distributed in the hope that it will be useful, but - WITHOUT ANY WARRANTY, to the extent permitted by law; without even - the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR - PURPOSE. - -License: RFC-Reference - doc/OpenPGP merely cites and references IETF Draft - draft-ietf-openpgp-formats-07.txt. This is believed to be fair use; - but if not, it's covered by the source document's license under - the 'comment on' clause. The license statement follows. - . - This document and translations of it may be copied and furnished to - others, and derivative works that comment on or otherwise explain it - or assist in its implementation may be prepared, copied, published - and distributed, in whole or in part, without restriction of any - kind, provided that the above copyright notice and this paragraph - are included on all such copies and derivative works. However, this - document itself may not be modified in any way, such as by removing - the copyright notice or references to the Internet Society or other - Internet organizations, except as needed for the purpose of - developing Internet standards in which case the procedures for - copyrights defined in the Internet Standards process must be - followed, or as required to translate it into languages other than - English. - . - The limited permissions granted above are perpetual and will not be - revoked by the Internet Society or its successors or assigns. - - -License: GPL-3+ - GnuPG 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 3 of the License, or - (at your option) any later version. - . - GnuPG 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. - . - You should have received a copy of the GNU General Public License - along with this program; if not, see . - . - On Debian systems, the full text of the GNU General Public - License version 3 can be found in the file - `/usr/share/common-licenses/GPL-3'. - -License: LGPL-3+ - This program is free software; you can redistribute it and/or modify it - under the terms of the GNU Lesser General Public License as - published by the Free Software Foundation; either version 3 of - the License, or (at your option) any later version. - . - 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 - Lesser General Public License for more details. - . - You should have received a copy of the GNU Lesser General Public - License along with this program; if not, see . - . - On Debian systems, the full text of the GNU Lesser General Public - License version 3 can be found in the file - `/usr/share/common-licenses/LGPL-3'. - -License: LGPL-2.1+ - This program is free software; you can redistribute it and/or modify it - under the terms of the GNU Lesser General Public License as - published by the Free Software Foundation; either version 2.1 of - the License, or (at your option) any later version. - . - 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 - Lesser General Public License for more details. - . - You should have received a copy of the GNU Lesser General Public - License along with this program; if not, see . - . - On Debian systems, the full text of the GNU Lesser General Public - License version 2.1 can be found in the file - `/usr/share/common-licenses/LGPL-2.1'. - -License: BSD-3-clause - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - 1. Redistributions of source code must retain the above copyright - notice, and the entire permission notice in its entirety, - including the disclaimer of warranties. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - 3. The name of the author may not be used to endorse or promote - products derived from this software without specific prior - written permission. - . - THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, - INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR - SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, - STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED - OF THE POSSIBILITY OF SUCH DAMAGE. - -License: Expat - Permission is hereby granted, free of charge, to any person obtaining a - copy of this software and associated documentation files (the - "Software"), to deal in the Software without restriction, including - without limitation the rights to use, copy, modify, merge, publish, - distribute, sublicense, and/or sell copies of the Software, and to permit - persons to whom the Software is furnished to do so, subject to the - following conditions: - . - The above copyright notice and this permission notice shall be included - in all copies or substantial portions of the Software. - . - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS - OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN - NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, - DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR - OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE - USE OR OTHER DEALINGS IN THE SOFTWARE. - -License: CC0-1.0 - To the extent possible under law, the author(s) have dedicated all - copyright and related and neighboring rights to this software to the public - domain worldwide. This software is distributed without any warranty. - . - On Debian systems, the complete text of the CC0 license, version 1.0, - can be found in /usr/share/common-licenses/CC0-1.0. - - ----------------------------------------- -gnupg-utils version 2.2.12-1+deb10u1 - - -Copyright: - -Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ -Upstream-Name: GnuPG - The GNU Privacy Guard (modern version) -Upstream-Contact: GnuPG development mailing list -Source: https://gnupg.org/download/ - -Files: * -Copyright: 1992, 1995-2016, Free Software Foundation, Inc -License: GPL-3+ - -Files: agent/command.c - agent/command-ssh.c - agent/gpg-agent.c - common/homedir.c - common/sysutils.c - g10/mainproc.c -Copyright: 1998-2007, 2009, 2012, Free Software Foundation, Inc - 2013, Werner Koch -License: GPL-3+ - -Files: autogen.sh -Copyright: 2003, g10 Code GmbH -License: permissive - -Files: common/gc-opt-flags.h - common/i18n.h - tools/clean-sat.c - tools/no-libgcrypt.c -Copyright: 1998-2001, 2003, 2004, 2006, 2007 Free Software Foundation, Inc -License: permissive - -Files: common/localename.c -Copyright: 1985, 1989-1993, 1995-2003, 2007, 2008 Free Software Foundation, Inc. -License: LGPL-2.1+ - -Files: dirmngr/dns.c - dirmngr/dns.h -Copyright: 2008-2010, 2012-2016 William Ahern -License: Expat - -Files: doc/yat2m.c - scd/app-geldkarte.c -Copyright: 2004, 2005, g10 Code GmbH - 2006, 2008, 2009, 2011, Free Software Foundation, Inc -License: GPL-3+ - -Files: scd/ccid-driver.h - scd/ccid-driver.c -Copyright: 2003-2007, Free Software Foundation, Inc -License: GPL-3+ or BSD-3-clause - -Files: tools/rfc822parse.c - tools/rfc822parse.h -Copyright: 1999-2000, Werner Koch, Duesseldorf - 2003-2004, g10 Code GmbH -License: LGPL-3+ - -Files: tools/sockprox.c -Copyright: 2007, g10 Code GmbH -License: GPL-3+ - -Files: doc/OpenPGP -Copyright: 1998-2013 Free Software Foundation, Inc. - 1997, 1998, 2013 Werner Koch - 1998 The Internet Society -License: RFC-Reference - -Files: tests/gpgscm/* -Copyright: 2000, Dimitrios Souflis - 2016, Justus Winter, Werner Koch -License: TinySCHEME - -Files: debian/* -Copyright: 1998-2018 Debian GnuPG packagers, including - Eric Dorland - Daniel Kahn Gillmor - NIIBE Yutaka -License: GPL-3+ - -Files: debian/org.gnupg.scdaemon.metainfo.xml -Copyright: 2017 Daniel Kahn Gillmor -Comment: This file is licensed permissively for the sake of AppStream -License: CC0-1.0 - -License: TinySCHEME - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are - met: - . - Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. - . - Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - . - Neither the name of Dimitrios Souflis nor the names of the - contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - . - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR - CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, - PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR - PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF - LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING - NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS - SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - -License: permissive - This file is free software; as a special exception the author gives - unlimited permission to copy and/or distribute it, with or without - modifications, as long as this notice is preserved. - . - This file is distributed in the hope that it will be useful, but - WITHOUT ANY WARRANTY, to the extent permitted by law; without even - the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR - PURPOSE. - -License: RFC-Reference - doc/OpenPGP merely cites and references IETF Draft - draft-ietf-openpgp-formats-07.txt. This is believed to be fair use; - but if not, it's covered by the source document's license under - the 'comment on' clause. The license statement follows. - . - This document and translations of it may be copied and furnished to - others, and derivative works that comment on or otherwise explain it - or assist in its implementation may be prepared, copied, published - and distributed, in whole or in part, without restriction of any - kind, provided that the above copyright notice and this paragraph - are included on all such copies and derivative works. However, this - document itself may not be modified in any way, such as by removing - the copyright notice or references to the Internet Society or other - Internet organizations, except as needed for the purpose of - developing Internet standards in which case the procedures for - copyrights defined in the Internet Standards process must be - followed, or as required to translate it into languages other than - English. - . - The limited permissions granted above are perpetual and will not be - revoked by the Internet Society or its successors or assigns. - - -License: GPL-3+ - GnuPG 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 3 of the License, or - (at your option) any later version. - . - GnuPG 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. - . - You should have received a copy of the GNU General Public License - along with this program; if not, see . - . - On Debian systems, the full text of the GNU General Public - License version 3 can be found in the file - `/usr/share/common-licenses/GPL-3'. - -License: LGPL-3+ - This program is free software; you can redistribute it and/or modify it - under the terms of the GNU Lesser General Public License as - published by the Free Software Foundation; either version 3 of - the License, or (at your option) any later version. - . - 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 - Lesser General Public License for more details. - . - You should have received a copy of the GNU Lesser General Public - License along with this program; if not, see . - . - On Debian systems, the full text of the GNU Lesser General Public - License version 3 can be found in the file - `/usr/share/common-licenses/LGPL-3'. - -License: LGPL-2.1+ - This program is free software; you can redistribute it and/or modify it - under the terms of the GNU Lesser General Public License as - published by the Free Software Foundation; either version 2.1 of - the License, or (at your option) any later version. - . - 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 - Lesser General Public License for more details. - . - You should have received a copy of the GNU Lesser General Public - License along with this program; if not, see . - . - On Debian systems, the full text of the GNU Lesser General Public - License version 2.1 can be found in the file - `/usr/share/common-licenses/LGPL-2.1'. - -License: BSD-3-clause - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - 1. Redistributions of source code must retain the above copyright - notice, and the entire permission notice in its entirety, - including the disclaimer of warranties. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - 3. The name of the author may not be used to endorse or promote - products derived from this software without specific prior - written permission. - . - THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, - INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR - SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, - STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED - OF THE POSSIBILITY OF SUCH DAMAGE. - -License: Expat - Permission is hereby granted, free of charge, to any person obtaining a - copy of this software and associated documentation files (the - "Software"), to deal in the Software without restriction, including - without limitation the rights to use, copy, modify, merge, publish, - distribute, sublicense, and/or sell copies of the Software, and to permit - persons to whom the Software is furnished to do so, subject to the - following conditions: - . - The above copyright notice and this permission notice shall be included - in all copies or substantial portions of the Software. - . - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS - OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN - NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, - DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR - OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE - USE OR OTHER DEALINGS IN THE SOFTWARE. - -License: CC0-1.0 - To the extent possible under law, the author(s) have dedicated all - copyright and related and neighboring rights to this software to the public - domain worldwide. This software is distributed without any warranty. - . - On Debian systems, the complete text of the CC0 license, version 1.0, - can be found in /usr/share/common-licenses/CC0-1.0. - - ----------------------------------------- -gpg version 2.2.12-1+deb10u1 - - -Copyright: - -Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ -Upstream-Name: GnuPG - The GNU Privacy Guard (modern version) -Upstream-Contact: GnuPG development mailing list -Source: https://gnupg.org/download/ - -Files: * -Copyright: 1992, 1995-2016, Free Software Foundation, Inc -License: GPL-3+ - -Files: agent/command.c - agent/command-ssh.c - agent/gpg-agent.c - common/homedir.c - common/sysutils.c - g10/mainproc.c -Copyright: 1998-2007, 2009, 2012, Free Software Foundation, Inc - 2013, Werner Koch -License: GPL-3+ - -Files: autogen.sh -Copyright: 2003, g10 Code GmbH -License: permissive - -Files: common/gc-opt-flags.h - common/i18n.h - tools/clean-sat.c - tools/no-libgcrypt.c -Copyright: 1998-2001, 2003, 2004, 2006, 2007 Free Software Foundation, Inc -License: permissive - -Files: common/localename.c -Copyright: 1985, 1989-1993, 1995-2003, 2007, 2008 Free Software Foundation, Inc. -License: LGPL-2.1+ - -Files: dirmngr/dns.c - dirmngr/dns.h -Copyright: 2008-2010, 2012-2016 William Ahern -License: Expat - -Files: doc/yat2m.c - scd/app-geldkarte.c -Copyright: 2004, 2005, g10 Code GmbH - 2006, 2008, 2009, 2011, Free Software Foundation, Inc -License: GPL-3+ - -Files: scd/ccid-driver.h - scd/ccid-driver.c -Copyright: 2003-2007, Free Software Foundation, Inc -License: GPL-3+ or BSD-3-clause - -Files: tools/rfc822parse.c - tools/rfc822parse.h -Copyright: 1999-2000, Werner Koch, Duesseldorf - 2003-2004, g10 Code GmbH -License: LGPL-3+ - -Files: tools/sockprox.c -Copyright: 2007, g10 Code GmbH -License: GPL-3+ - -Files: doc/OpenPGP -Copyright: 1998-2013 Free Software Foundation, Inc. - 1997, 1998, 2013 Werner Koch - 1998 The Internet Society -License: RFC-Reference - -Files: tests/gpgscm/* -Copyright: 2000, Dimitrios Souflis - 2016, Justus Winter, Werner Koch -License: TinySCHEME - -Files: debian/* -Copyright: 1998-2018 Debian GnuPG packagers, including - Eric Dorland - Daniel Kahn Gillmor - NIIBE Yutaka -License: GPL-3+ - -Files: debian/org.gnupg.scdaemon.metainfo.xml -Copyright: 2017 Daniel Kahn Gillmor -Comment: This file is licensed permissively for the sake of AppStream -License: CC0-1.0 - -License: TinySCHEME - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are - met: - . - Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. - . - Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - . - Neither the name of Dimitrios Souflis nor the names of the - contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - . - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR - CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, - PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR - PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF - LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING - NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS - SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - -License: permissive - This file is free software; as a special exception the author gives - unlimited permission to copy and/or distribute it, with or without - modifications, as long as this notice is preserved. - . - This file is distributed in the hope that it will be useful, but - WITHOUT ANY WARRANTY, to the extent permitted by law; without even - the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR - PURPOSE. - -License: RFC-Reference - doc/OpenPGP merely cites and references IETF Draft - draft-ietf-openpgp-formats-07.txt. This is believed to be fair use; - but if not, it's covered by the source document's license under - the 'comment on' clause. The license statement follows. - . - This document and translations of it may be copied and furnished to - others, and derivative works that comment on or otherwise explain it - or assist in its implementation may be prepared, copied, published - and distributed, in whole or in part, without restriction of any - kind, provided that the above copyright notice and this paragraph - are included on all such copies and derivative works. However, this - document itself may not be modified in any way, such as by removing - the copyright notice or references to the Internet Society or other - Internet organizations, except as needed for the purpose of - developing Internet standards in which case the procedures for - copyrights defined in the Internet Standards process must be - followed, or as required to translate it into languages other than - English. - . - The limited permissions granted above are perpetual and will not be - revoked by the Internet Society or its successors or assigns. - - -License: GPL-3+ - GnuPG 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 3 of the License, or - (at your option) any later version. - . - GnuPG 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. - . - You should have received a copy of the GNU General Public License - along with this program; if not, see . - . - On Debian systems, the full text of the GNU General Public - License version 3 can be found in the file - `/usr/share/common-licenses/GPL-3'. - -License: LGPL-3+ - This program is free software; you can redistribute it and/or modify it - under the terms of the GNU Lesser General Public License as - published by the Free Software Foundation; either version 3 of - the License, or (at your option) any later version. - . - 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 - Lesser General Public License for more details. - . - You should have received a copy of the GNU Lesser General Public - License along with this program; if not, see . - . - On Debian systems, the full text of the GNU Lesser General Public - License version 3 can be found in the file - `/usr/share/common-licenses/LGPL-3'. - -License: LGPL-2.1+ - This program is free software; you can redistribute it and/or modify it - under the terms of the GNU Lesser General Public License as - published by the Free Software Foundation; either version 2.1 of - the License, or (at your option) any later version. - . - 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 - Lesser General Public License for more details. - . - You should have received a copy of the GNU Lesser General Public - License along with this program; if not, see . - . - On Debian systems, the full text of the GNU Lesser General Public - License version 2.1 can be found in the file - `/usr/share/common-licenses/LGPL-2.1'. - -License: BSD-3-clause - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - 1. Redistributions of source code must retain the above copyright - notice, and the entire permission notice in its entirety, - including the disclaimer of warranties. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - 3. The name of the author may not be used to endorse or promote - products derived from this software without specific prior - written permission. - . - THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, - INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR - SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, - STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED - OF THE POSSIBILITY OF SUCH DAMAGE. - -License: Expat - Permission is hereby granted, free of charge, to any person obtaining a - copy of this software and associated documentation files (the - "Software"), to deal in the Software without restriction, including - without limitation the rights to use, copy, modify, merge, publish, - distribute, sublicense, and/or sell copies of the Software, and to permit - persons to whom the Software is furnished to do so, subject to the - following conditions: - . - The above copyright notice and this permission notice shall be included - in all copies or substantial portions of the Software. - . - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS - OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN - NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, - DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR - OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE - USE OR OTHER DEALINGS IN THE SOFTWARE. - -License: CC0-1.0 - To the extent possible under law, the author(s) have dedicated all - copyright and related and neighboring rights to this software to the public - domain worldwide. This software is distributed without any warranty. - . - On Debian systems, the complete text of the CC0 license, version 1.0, - can be found in /usr/share/common-licenses/CC0-1.0. - - ----------------------------------------- -gpg-agent version 2.2.12-1+deb10u1 - - -Copyright: - -Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ -Upstream-Name: GnuPG - The GNU Privacy Guard (modern version) -Upstream-Contact: GnuPG development mailing list -Source: https://gnupg.org/download/ - -Files: * -Copyright: 1992, 1995-2016, Free Software Foundation, Inc -License: GPL-3+ - -Files: agent/command.c - agent/command-ssh.c - agent/gpg-agent.c - common/homedir.c - common/sysutils.c - g10/mainproc.c -Copyright: 1998-2007, 2009, 2012, Free Software Foundation, Inc - 2013, Werner Koch -License: GPL-3+ - -Files: autogen.sh -Copyright: 2003, g10 Code GmbH -License: permissive - -Files: common/gc-opt-flags.h - common/i18n.h - tools/clean-sat.c - tools/no-libgcrypt.c -Copyright: 1998-2001, 2003, 2004, 2006, 2007 Free Software Foundation, Inc -License: permissive - -Files: common/localename.c -Copyright: 1985, 1989-1993, 1995-2003, 2007, 2008 Free Software Foundation, Inc. -License: LGPL-2.1+ - -Files: dirmngr/dns.c - dirmngr/dns.h -Copyright: 2008-2010, 2012-2016 William Ahern -License: Expat - -Files: doc/yat2m.c - scd/app-geldkarte.c -Copyright: 2004, 2005, g10 Code GmbH - 2006, 2008, 2009, 2011, Free Software Foundation, Inc -License: GPL-3+ - -Files: scd/ccid-driver.h - scd/ccid-driver.c -Copyright: 2003-2007, Free Software Foundation, Inc -License: GPL-3+ or BSD-3-clause - -Files: tools/rfc822parse.c - tools/rfc822parse.h -Copyright: 1999-2000, Werner Koch, Duesseldorf - 2003-2004, g10 Code GmbH -License: LGPL-3+ - -Files: tools/sockprox.c -Copyright: 2007, g10 Code GmbH -License: GPL-3+ - -Files: doc/OpenPGP -Copyright: 1998-2013 Free Software Foundation, Inc. - 1997, 1998, 2013 Werner Koch - 1998 The Internet Society -License: RFC-Reference - -Files: tests/gpgscm/* -Copyright: 2000, Dimitrios Souflis - 2016, Justus Winter, Werner Koch -License: TinySCHEME - -Files: debian/* -Copyright: 1998-2018 Debian GnuPG packagers, including - Eric Dorland - Daniel Kahn Gillmor - NIIBE Yutaka -License: GPL-3+ - -Files: debian/org.gnupg.scdaemon.metainfo.xml -Copyright: 2017 Daniel Kahn Gillmor -Comment: This file is licensed permissively for the sake of AppStream -License: CC0-1.0 - -License: TinySCHEME - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are - met: - . - Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. - . - Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - . - Neither the name of Dimitrios Souflis nor the names of the - contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - . - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR - CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, - PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR - PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF - LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING - NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS - SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - -License: permissive - This file is free software; as a special exception the author gives - unlimited permission to copy and/or distribute it, with or without - modifications, as long as this notice is preserved. - . - This file is distributed in the hope that it will be useful, but - WITHOUT ANY WARRANTY, to the extent permitted by law; without even - the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR - PURPOSE. - -License: RFC-Reference - doc/OpenPGP merely cites and references IETF Draft - draft-ietf-openpgp-formats-07.txt. This is believed to be fair use; - but if not, it's covered by the source document's license under - the 'comment on' clause. The license statement follows. - . - This document and translations of it may be copied and furnished to - others, and derivative works that comment on or otherwise explain it - or assist in its implementation may be prepared, copied, published - and distributed, in whole or in part, without restriction of any - kind, provided that the above copyright notice and this paragraph - are included on all such copies and derivative works. However, this - document itself may not be modified in any way, such as by removing - the copyright notice or references to the Internet Society or other - Internet organizations, except as needed for the purpose of - developing Internet standards in which case the procedures for - copyrights defined in the Internet Standards process must be - followed, or as required to translate it into languages other than - English. - . - The limited permissions granted above are perpetual and will not be - revoked by the Internet Society or its successors or assigns. - - -License: GPL-3+ - GnuPG 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 3 of the License, or - (at your option) any later version. - . - GnuPG 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. - . - You should have received a copy of the GNU General Public License - along with this program; if not, see . - . - On Debian systems, the full text of the GNU General Public - License version 3 can be found in the file - `/usr/share/common-licenses/GPL-3'. - -License: LGPL-3+ - This program is free software; you can redistribute it and/or modify it - under the terms of the GNU Lesser General Public License as - published by the Free Software Foundation; either version 3 of - the License, or (at your option) any later version. - . - 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 - Lesser General Public License for more details. - . - You should have received a copy of the GNU Lesser General Public - License along with this program; if not, see . - . - On Debian systems, the full text of the GNU Lesser General Public - License version 3 can be found in the file - `/usr/share/common-licenses/LGPL-3'. - -License: LGPL-2.1+ - This program is free software; you can redistribute it and/or modify it - under the terms of the GNU Lesser General Public License as - published by the Free Software Foundation; either version 2.1 of - the License, or (at your option) any later version. - . - 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 - Lesser General Public License for more details. - . - You should have received a copy of the GNU Lesser General Public - License along with this program; if not, see . - . - On Debian systems, the full text of the GNU Lesser General Public - License version 2.1 can be found in the file - `/usr/share/common-licenses/LGPL-2.1'. - -License: BSD-3-clause - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - 1. Redistributions of source code must retain the above copyright - notice, and the entire permission notice in its entirety, - including the disclaimer of warranties. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - 3. The name of the author may not be used to endorse or promote - products derived from this software without specific prior - written permission. - . - THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, - INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR - SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, - STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED - OF THE POSSIBILITY OF SUCH DAMAGE. - -License: Expat - Permission is hereby granted, free of charge, to any person obtaining a - copy of this software and associated documentation files (the - "Software"), to deal in the Software without restriction, including - without limitation the rights to use, copy, modify, merge, publish, - distribute, sublicense, and/or sell copies of the Software, and to permit - persons to whom the Software is furnished to do so, subject to the - following conditions: - . - The above copyright notice and this permission notice shall be included - in all copies or substantial portions of the Software. - . - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS - OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN - NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, - DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR - OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE - USE OR OTHER DEALINGS IN THE SOFTWARE. - -License: CC0-1.0 - To the extent possible under law, the author(s) have dedicated all - copyright and related and neighboring rights to this software to the public - domain worldwide. This software is distributed without any warranty. - . - On Debian systems, the complete text of the CC0 license, version 1.0, - can be found in /usr/share/common-licenses/CC0-1.0. - - ----------------------------------------- -gpg-wks-client version 2.2.12-1+deb10u1 - - -Copyright: - -Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ -Upstream-Name: GnuPG - The GNU Privacy Guard (modern version) -Upstream-Contact: GnuPG development mailing list -Source: https://gnupg.org/download/ - -Files: * -Copyright: 1992, 1995-2016, Free Software Foundation, Inc -License: GPL-3+ - -Files: agent/command.c - agent/command-ssh.c - agent/gpg-agent.c - common/homedir.c - common/sysutils.c - g10/mainproc.c -Copyright: 1998-2007, 2009, 2012, Free Software Foundation, Inc - 2013, Werner Koch -License: GPL-3+ - -Files: autogen.sh -Copyright: 2003, g10 Code GmbH -License: permissive - -Files: common/gc-opt-flags.h - common/i18n.h - tools/clean-sat.c - tools/no-libgcrypt.c -Copyright: 1998-2001, 2003, 2004, 2006, 2007 Free Software Foundation, Inc -License: permissive - -Files: common/localename.c -Copyright: 1985, 1989-1993, 1995-2003, 2007, 2008 Free Software Foundation, Inc. -License: LGPL-2.1+ - -Files: dirmngr/dns.c - dirmngr/dns.h -Copyright: 2008-2010, 2012-2016 William Ahern -License: Expat - -Files: doc/yat2m.c - scd/app-geldkarte.c -Copyright: 2004, 2005, g10 Code GmbH - 2006, 2008, 2009, 2011, Free Software Foundation, Inc -License: GPL-3+ - -Files: scd/ccid-driver.h - scd/ccid-driver.c -Copyright: 2003-2007, Free Software Foundation, Inc -License: GPL-3+ or BSD-3-clause - -Files: tools/rfc822parse.c - tools/rfc822parse.h -Copyright: 1999-2000, Werner Koch, Duesseldorf - 2003-2004, g10 Code GmbH -License: LGPL-3+ - -Files: tools/sockprox.c -Copyright: 2007, g10 Code GmbH -License: GPL-3+ - -Files: doc/OpenPGP -Copyright: 1998-2013 Free Software Foundation, Inc. - 1997, 1998, 2013 Werner Koch - 1998 The Internet Society -License: RFC-Reference - -Files: tests/gpgscm/* -Copyright: 2000, Dimitrios Souflis - 2016, Justus Winter, Werner Koch -License: TinySCHEME - -Files: debian/* -Copyright: 1998-2018 Debian GnuPG packagers, including - Eric Dorland - Daniel Kahn Gillmor - NIIBE Yutaka -License: GPL-3+ - -Files: debian/org.gnupg.scdaemon.metainfo.xml -Copyright: 2017 Daniel Kahn Gillmor -Comment: This file is licensed permissively for the sake of AppStream -License: CC0-1.0 - -License: TinySCHEME - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are - met: - . - Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. - . - Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - . - Neither the name of Dimitrios Souflis nor the names of the - contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - . - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR - CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, - PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR - PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF - LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING - NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS - SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - -License: permissive - This file is free software; as a special exception the author gives - unlimited permission to copy and/or distribute it, with or without - modifications, as long as this notice is preserved. - . - This file is distributed in the hope that it will be useful, but - WITHOUT ANY WARRANTY, to the extent permitted by law; without even - the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR - PURPOSE. - -License: RFC-Reference - doc/OpenPGP merely cites and references IETF Draft - draft-ietf-openpgp-formats-07.txt. This is believed to be fair use; - but if not, it's covered by the source document's license under - the 'comment on' clause. The license statement follows. - . - This document and translations of it may be copied and furnished to - others, and derivative works that comment on or otherwise explain it - or assist in its implementation may be prepared, copied, published - and distributed, in whole or in part, without restriction of any - kind, provided that the above copyright notice and this paragraph - are included on all such copies and derivative works. However, this - document itself may not be modified in any way, such as by removing - the copyright notice or references to the Internet Society or other - Internet organizations, except as needed for the purpose of - developing Internet standards in which case the procedures for - copyrights defined in the Internet Standards process must be - followed, or as required to translate it into languages other than - English. - . - The limited permissions granted above are perpetual and will not be - revoked by the Internet Society or its successors or assigns. - - -License: GPL-3+ - GnuPG 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 3 of the License, or - (at your option) any later version. - . - GnuPG 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. - . - You should have received a copy of the GNU General Public License - along with this program; if not, see . - . - On Debian systems, the full text of the GNU General Public - License version 3 can be found in the file - `/usr/share/common-licenses/GPL-3'. - -License: LGPL-3+ - This program is free software; you can redistribute it and/or modify it - under the terms of the GNU Lesser General Public License as - published by the Free Software Foundation; either version 3 of - the License, or (at your option) any later version. - . - 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 - Lesser General Public License for more details. - . - You should have received a copy of the GNU Lesser General Public - License along with this program; if not, see . - . - On Debian systems, the full text of the GNU Lesser General Public - License version 3 can be found in the file - `/usr/share/common-licenses/LGPL-3'. - -License: LGPL-2.1+ - This program is free software; you can redistribute it and/or modify it - under the terms of the GNU Lesser General Public License as - published by the Free Software Foundation; either version 2.1 of - the License, or (at your option) any later version. - . - 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 - Lesser General Public License for more details. - . - You should have received a copy of the GNU Lesser General Public - License along with this program; if not, see . - . - On Debian systems, the full text of the GNU Lesser General Public - License version 2.1 can be found in the file - `/usr/share/common-licenses/LGPL-2.1'. - -License: BSD-3-clause - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - 1. Redistributions of source code must retain the above copyright - notice, and the entire permission notice in its entirety, - including the disclaimer of warranties. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - 3. The name of the author may not be used to endorse or promote - products derived from this software without specific prior - written permission. - . - THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, - INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR - SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, - STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED - OF THE POSSIBILITY OF SUCH DAMAGE. - -License: Expat - Permission is hereby granted, free of charge, to any person obtaining a - copy of this software and associated documentation files (the - "Software"), to deal in the Software without restriction, including - without limitation the rights to use, copy, modify, merge, publish, - distribute, sublicense, and/or sell copies of the Software, and to permit - persons to whom the Software is furnished to do so, subject to the - following conditions: - . - The above copyright notice and this permission notice shall be included - in all copies or substantial portions of the Software. - . - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS - OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN - NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, - DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR - OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE - USE OR OTHER DEALINGS IN THE SOFTWARE. - -License: CC0-1.0 - To the extent possible under law, the author(s) have dedicated all - copyright and related and neighboring rights to this software to the public - domain worldwide. This software is distributed without any warranty. - . - On Debian systems, the complete text of the CC0 license, version 1.0, - can be found in /usr/share/common-licenses/CC0-1.0. - - ----------------------------------------- -gpg-wks-server version 2.2.12-1+deb10u1 - - -Copyright: - -Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ -Upstream-Name: GnuPG - The GNU Privacy Guard (modern version) -Upstream-Contact: GnuPG development mailing list -Source: https://gnupg.org/download/ - -Files: * -Copyright: 1992, 1995-2016, Free Software Foundation, Inc -License: GPL-3+ - -Files: agent/command.c - agent/command-ssh.c - agent/gpg-agent.c - common/homedir.c - common/sysutils.c - g10/mainproc.c -Copyright: 1998-2007, 2009, 2012, Free Software Foundation, Inc - 2013, Werner Koch -License: GPL-3+ - -Files: autogen.sh -Copyright: 2003, g10 Code GmbH -License: permissive - -Files: common/gc-opt-flags.h - common/i18n.h - tools/clean-sat.c - tools/no-libgcrypt.c -Copyright: 1998-2001, 2003, 2004, 2006, 2007 Free Software Foundation, Inc -License: permissive - -Files: common/localename.c -Copyright: 1985, 1989-1993, 1995-2003, 2007, 2008 Free Software Foundation, Inc. -License: LGPL-2.1+ - -Files: dirmngr/dns.c - dirmngr/dns.h -Copyright: 2008-2010, 2012-2016 William Ahern -License: Expat - -Files: doc/yat2m.c - scd/app-geldkarte.c -Copyright: 2004, 2005, g10 Code GmbH - 2006, 2008, 2009, 2011, Free Software Foundation, Inc -License: GPL-3+ - -Files: scd/ccid-driver.h - scd/ccid-driver.c -Copyright: 2003-2007, Free Software Foundation, Inc -License: GPL-3+ or BSD-3-clause - -Files: tools/rfc822parse.c - tools/rfc822parse.h -Copyright: 1999-2000, Werner Koch, Duesseldorf - 2003-2004, g10 Code GmbH -License: LGPL-3+ - -Files: tools/sockprox.c -Copyright: 2007, g10 Code GmbH -License: GPL-3+ - -Files: doc/OpenPGP -Copyright: 1998-2013 Free Software Foundation, Inc. - 1997, 1998, 2013 Werner Koch - 1998 The Internet Society -License: RFC-Reference - -Files: tests/gpgscm/* -Copyright: 2000, Dimitrios Souflis - 2016, Justus Winter, Werner Koch -License: TinySCHEME - -Files: debian/* -Copyright: 1998-2018 Debian GnuPG packagers, including - Eric Dorland - Daniel Kahn Gillmor - NIIBE Yutaka -License: GPL-3+ - -Files: debian/org.gnupg.scdaemon.metainfo.xml -Copyright: 2017 Daniel Kahn Gillmor -Comment: This file is licensed permissively for the sake of AppStream -License: CC0-1.0 - -License: TinySCHEME - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are - met: - . - Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. - . - Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - . - Neither the name of Dimitrios Souflis nor the names of the - contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - . - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR - CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, - PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR - PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF - LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING - NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS - SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - -License: permissive - This file is free software; as a special exception the author gives - unlimited permission to copy and/or distribute it, with or without - modifications, as long as this notice is preserved. - . - This file is distributed in the hope that it will be useful, but - WITHOUT ANY WARRANTY, to the extent permitted by law; without even - the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR - PURPOSE. - -License: RFC-Reference - doc/OpenPGP merely cites and references IETF Draft - draft-ietf-openpgp-formats-07.txt. This is believed to be fair use; - but if not, it's covered by the source document's license under - the 'comment on' clause. The license statement follows. - . - This document and translations of it may be copied and furnished to - others, and derivative works that comment on or otherwise explain it - or assist in its implementation may be prepared, copied, published - and distributed, in whole or in part, without restriction of any - kind, provided that the above copyright notice and this paragraph - are included on all such copies and derivative works. However, this - document itself may not be modified in any way, such as by removing - the copyright notice or references to the Internet Society or other - Internet organizations, except as needed for the purpose of - developing Internet standards in which case the procedures for - copyrights defined in the Internet Standards process must be - followed, or as required to translate it into languages other than - English. - . - The limited permissions granted above are perpetual and will not be - revoked by the Internet Society or its successors or assigns. - - -License: GPL-3+ - GnuPG 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 3 of the License, or - (at your option) any later version. - . - GnuPG 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. - . - You should have received a copy of the GNU General Public License - along with this program; if not, see . - . - On Debian systems, the full text of the GNU General Public - License version 3 can be found in the file - `/usr/share/common-licenses/GPL-3'. - -License: LGPL-3+ - This program is free software; you can redistribute it and/or modify it - under the terms of the GNU Lesser General Public License as - published by the Free Software Foundation; either version 3 of - the License, or (at your option) any later version. - . - 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 - Lesser General Public License for more details. - . - You should have received a copy of the GNU Lesser General Public - License along with this program; if not, see . - . - On Debian systems, the full text of the GNU Lesser General Public - License version 3 can be found in the file - `/usr/share/common-licenses/LGPL-3'. - -License: LGPL-2.1+ - This program is free software; you can redistribute it and/or modify it - under the terms of the GNU Lesser General Public License as - published by the Free Software Foundation; either version 2.1 of - the License, or (at your option) any later version. - . - 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 - Lesser General Public License for more details. - . - You should have received a copy of the GNU Lesser General Public - License along with this program; if not, see . - . - On Debian systems, the full text of the GNU Lesser General Public - License version 2.1 can be found in the file - `/usr/share/common-licenses/LGPL-2.1'. - -License: BSD-3-clause - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - 1. Redistributions of source code must retain the above copyright - notice, and the entire permission notice in its entirety, - including the disclaimer of warranties. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - 3. The name of the author may not be used to endorse or promote - products derived from this software without specific prior - written permission. - . - THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, - INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR - SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, - STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED - OF THE POSSIBILITY OF SUCH DAMAGE. - -License: Expat - Permission is hereby granted, free of charge, to any person obtaining a - copy of this software and associated documentation files (the - "Software"), to deal in the Software without restriction, including - without limitation the rights to use, copy, modify, merge, publish, - distribute, sublicense, and/or sell copies of the Software, and to permit - persons to whom the Software is furnished to do so, subject to the - following conditions: - . - The above copyright notice and this permission notice shall be included - in all copies or substantial portions of the Software. - . - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS - OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN - NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, - DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR - OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE - USE OR OTHER DEALINGS IN THE SOFTWARE. - -License: CC0-1.0 - To the extent possible under law, the author(s) have dedicated all - copyright and related and neighboring rights to this software to the public - domain worldwide. This software is distributed without any warranty. - . - On Debian systems, the complete text of the CC0 license, version 1.0, - can be found in /usr/share/common-licenses/CC0-1.0. - - ----------------------------------------- -gpgconf version 2.2.12-1+deb10u1 - - -Copyright: - -Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ -Upstream-Name: GnuPG - The GNU Privacy Guard (modern version) -Upstream-Contact: GnuPG development mailing list -Source: https://gnupg.org/download/ - -Files: * -Copyright: 1992, 1995-2016, Free Software Foundation, Inc -License: GPL-3+ - -Files: agent/command.c - agent/command-ssh.c - agent/gpg-agent.c - common/homedir.c - common/sysutils.c - g10/mainproc.c -Copyright: 1998-2007, 2009, 2012, Free Software Foundation, Inc - 2013, Werner Koch -License: GPL-3+ - -Files: autogen.sh -Copyright: 2003, g10 Code GmbH -License: permissive - -Files: common/gc-opt-flags.h - common/i18n.h - tools/clean-sat.c - tools/no-libgcrypt.c -Copyright: 1998-2001, 2003, 2004, 2006, 2007 Free Software Foundation, Inc -License: permissive - -Files: common/localename.c -Copyright: 1985, 1989-1993, 1995-2003, 2007, 2008 Free Software Foundation, Inc. -License: LGPL-2.1+ - -Files: dirmngr/dns.c - dirmngr/dns.h -Copyright: 2008-2010, 2012-2016 William Ahern -License: Expat - -Files: doc/yat2m.c - scd/app-geldkarte.c -Copyright: 2004, 2005, g10 Code GmbH - 2006, 2008, 2009, 2011, Free Software Foundation, Inc -License: GPL-3+ - -Files: scd/ccid-driver.h - scd/ccid-driver.c -Copyright: 2003-2007, Free Software Foundation, Inc -License: GPL-3+ or BSD-3-clause - -Files: tools/rfc822parse.c - tools/rfc822parse.h -Copyright: 1999-2000, Werner Koch, Duesseldorf - 2003-2004, g10 Code GmbH -License: LGPL-3+ - -Files: tools/sockprox.c -Copyright: 2007, g10 Code GmbH -License: GPL-3+ - -Files: doc/OpenPGP -Copyright: 1998-2013 Free Software Foundation, Inc. - 1997, 1998, 2013 Werner Koch - 1998 The Internet Society -License: RFC-Reference - -Files: tests/gpgscm/* -Copyright: 2000, Dimitrios Souflis - 2016, Justus Winter, Werner Koch -License: TinySCHEME - -Files: debian/* -Copyright: 1998-2018 Debian GnuPG packagers, including - Eric Dorland - Daniel Kahn Gillmor - NIIBE Yutaka -License: GPL-3+ - -Files: debian/org.gnupg.scdaemon.metainfo.xml -Copyright: 2017 Daniel Kahn Gillmor -Comment: This file is licensed permissively for the sake of AppStream -License: CC0-1.0 - -License: TinySCHEME - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are - met: - . - Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. - . - Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - . - Neither the name of Dimitrios Souflis nor the names of the - contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - . - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR - CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, - PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR - PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF - LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING - NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS - SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - -License: permissive - This file is free software; as a special exception the author gives - unlimited permission to copy and/or distribute it, with or without - modifications, as long as this notice is preserved. - . - This file is distributed in the hope that it will be useful, but - WITHOUT ANY WARRANTY, to the extent permitted by law; without even - the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR - PURPOSE. - -License: RFC-Reference - doc/OpenPGP merely cites and references IETF Draft - draft-ietf-openpgp-formats-07.txt. This is believed to be fair use; - but if not, it's covered by the source document's license under - the 'comment on' clause. The license statement follows. - . - This document and translations of it may be copied and furnished to - others, and derivative works that comment on or otherwise explain it - or assist in its implementation may be prepared, copied, published - and distributed, in whole or in part, without restriction of any - kind, provided that the above copyright notice and this paragraph - are included on all such copies and derivative works. However, this - document itself may not be modified in any way, such as by removing - the copyright notice or references to the Internet Society or other - Internet organizations, except as needed for the purpose of - developing Internet standards in which case the procedures for - copyrights defined in the Internet Standards process must be - followed, or as required to translate it into languages other than - English. - . - The limited permissions granted above are perpetual and will not be - revoked by the Internet Society or its successors or assigns. - - -License: GPL-3+ - GnuPG 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 3 of the License, or - (at your option) any later version. - . - GnuPG 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. - . - You should have received a copy of the GNU General Public License - along with this program; if not, see . - . - On Debian systems, the full text of the GNU General Public - License version 3 can be found in the file - `/usr/share/common-licenses/GPL-3'. - -License: LGPL-3+ - This program is free software; you can redistribute it and/or modify it - under the terms of the GNU Lesser General Public License as - published by the Free Software Foundation; either version 3 of - the License, or (at your option) any later version. - . - 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 - Lesser General Public License for more details. - . - You should have received a copy of the GNU Lesser General Public - License along with this program; if not, see . - . - On Debian systems, the full text of the GNU Lesser General Public - License version 3 can be found in the file - `/usr/share/common-licenses/LGPL-3'. - -License: LGPL-2.1+ - This program is free software; you can redistribute it and/or modify it - under the terms of the GNU Lesser General Public License as - published by the Free Software Foundation; either version 2.1 of - the License, or (at your option) any later version. - . - 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 - Lesser General Public License for more details. - . - You should have received a copy of the GNU Lesser General Public - License along with this program; if not, see . - . - On Debian systems, the full text of the GNU Lesser General Public - License version 2.1 can be found in the file - `/usr/share/common-licenses/LGPL-2.1'. - -License: BSD-3-clause - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - 1. Redistributions of source code must retain the above copyright - notice, and the entire permission notice in its entirety, - including the disclaimer of warranties. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - 3. The name of the author may not be used to endorse or promote - products derived from this software without specific prior - written permission. - . - THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, - INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR - SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, - STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED - OF THE POSSIBILITY OF SUCH DAMAGE. - -License: Expat - Permission is hereby granted, free of charge, to any person obtaining a - copy of this software and associated documentation files (the - "Software"), to deal in the Software without restriction, including - without limitation the rights to use, copy, modify, merge, publish, - distribute, sublicense, and/or sell copies of the Software, and to permit - persons to whom the Software is furnished to do so, subject to the - following conditions: - . - The above copyright notice and this permission notice shall be included - in all copies or substantial portions of the Software. - . - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS - OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN - NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, - DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR - OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE - USE OR OTHER DEALINGS IN THE SOFTWARE. - -License: CC0-1.0 - To the extent possible under law, the author(s) have dedicated all - copyright and related and neighboring rights to this software to the public - domain worldwide. This software is distributed without any warranty. - . - On Debian systems, the complete text of the CC0 license, version 1.0, - can be found in /usr/share/common-licenses/CC0-1.0. - - ----------------------------------------- -gpgsm version 2.2.12-1+deb10u1 - - -Copyright: - -Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ -Upstream-Name: GnuPG - The GNU Privacy Guard (modern version) -Upstream-Contact: GnuPG development mailing list -Source: https://gnupg.org/download/ - -Files: * -Copyright: 1992, 1995-2016, Free Software Foundation, Inc -License: GPL-3+ - -Files: agent/command.c - agent/command-ssh.c - agent/gpg-agent.c - common/homedir.c - common/sysutils.c - g10/mainproc.c -Copyright: 1998-2007, 2009, 2012, Free Software Foundation, Inc - 2013, Werner Koch -License: GPL-3+ - -Files: autogen.sh -Copyright: 2003, g10 Code GmbH -License: permissive - -Files: common/gc-opt-flags.h - common/i18n.h - tools/clean-sat.c - tools/no-libgcrypt.c -Copyright: 1998-2001, 2003, 2004, 2006, 2007 Free Software Foundation, Inc -License: permissive - -Files: common/localename.c -Copyright: 1985, 1989-1993, 1995-2003, 2007, 2008 Free Software Foundation, Inc. -License: LGPL-2.1+ - -Files: dirmngr/dns.c - dirmngr/dns.h -Copyright: 2008-2010, 2012-2016 William Ahern -License: Expat - -Files: doc/yat2m.c - scd/app-geldkarte.c -Copyright: 2004, 2005, g10 Code GmbH - 2006, 2008, 2009, 2011, Free Software Foundation, Inc -License: GPL-3+ - -Files: scd/ccid-driver.h - scd/ccid-driver.c -Copyright: 2003-2007, Free Software Foundation, Inc -License: GPL-3+ or BSD-3-clause - -Files: tools/rfc822parse.c - tools/rfc822parse.h -Copyright: 1999-2000, Werner Koch, Duesseldorf - 2003-2004, g10 Code GmbH -License: LGPL-3+ - -Files: tools/sockprox.c -Copyright: 2007, g10 Code GmbH -License: GPL-3+ - -Files: doc/OpenPGP -Copyright: 1998-2013 Free Software Foundation, Inc. - 1997, 1998, 2013 Werner Koch - 1998 The Internet Society -License: RFC-Reference - -Files: tests/gpgscm/* -Copyright: 2000, Dimitrios Souflis - 2016, Justus Winter, Werner Koch -License: TinySCHEME - -Files: debian/* -Copyright: 1998-2018 Debian GnuPG packagers, including - Eric Dorland - Daniel Kahn Gillmor - NIIBE Yutaka -License: GPL-3+ - -Files: debian/org.gnupg.scdaemon.metainfo.xml -Copyright: 2017 Daniel Kahn Gillmor -Comment: This file is licensed permissively for the sake of AppStream -License: CC0-1.0 - -License: TinySCHEME - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are - met: - . - Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. - . - Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - . - Neither the name of Dimitrios Souflis nor the names of the - contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - . - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR - CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, - PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR - PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF - LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING - NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS - SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - -License: permissive - This file is free software; as a special exception the author gives - unlimited permission to copy and/or distribute it, with or without - modifications, as long as this notice is preserved. - . - This file is distributed in the hope that it will be useful, but - WITHOUT ANY WARRANTY, to the extent permitted by law; without even - the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR - PURPOSE. - -License: RFC-Reference - doc/OpenPGP merely cites and references IETF Draft - draft-ietf-openpgp-formats-07.txt. This is believed to be fair use; - but if not, it's covered by the source document's license under - the 'comment on' clause. The license statement follows. - . - This document and translations of it may be copied and furnished to - others, and derivative works that comment on or otherwise explain it - or assist in its implementation may be prepared, copied, published - and distributed, in whole or in part, without restriction of any - kind, provided that the above copyright notice and this paragraph - are included on all such copies and derivative works. However, this - document itself may not be modified in any way, such as by removing - the copyright notice or references to the Internet Society or other - Internet organizations, except as needed for the purpose of - developing Internet standards in which case the procedures for - copyrights defined in the Internet Standards process must be - followed, or as required to translate it into languages other than - English. - . - The limited permissions granted above are perpetual and will not be - revoked by the Internet Society or its successors or assigns. - - -License: GPL-3+ - GnuPG 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 3 of the License, or - (at your option) any later version. - . - GnuPG 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. - . - You should have received a copy of the GNU General Public License - along with this program; if not, see . - . - On Debian systems, the full text of the GNU General Public - License version 3 can be found in the file - `/usr/share/common-licenses/GPL-3'. - -License: LGPL-3+ - This program is free software; you can redistribute it and/or modify it - under the terms of the GNU Lesser General Public License as - published by the Free Software Foundation; either version 3 of - the License, or (at your option) any later version. - . - 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 - Lesser General Public License for more details. - . - You should have received a copy of the GNU Lesser General Public - License along with this program; if not, see . - . - On Debian systems, the full text of the GNU Lesser General Public - License version 3 can be found in the file - `/usr/share/common-licenses/LGPL-3'. - -License: LGPL-2.1+ - This program is free software; you can redistribute it and/or modify it - under the terms of the GNU Lesser General Public License as - published by the Free Software Foundation; either version 2.1 of - the License, or (at your option) any later version. - . - 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 - Lesser General Public License for more details. - . - You should have received a copy of the GNU Lesser General Public - License along with this program; if not, see . - . - On Debian systems, the full text of the GNU Lesser General Public - License version 2.1 can be found in the file - `/usr/share/common-licenses/LGPL-2.1'. - -License: BSD-3-clause - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - 1. Redistributions of source code must retain the above copyright - notice, and the entire permission notice in its entirety, - including the disclaimer of warranties. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - 3. The name of the author may not be used to endorse or promote - products derived from this software without specific prior - written permission. - . - THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, - INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR - SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, - STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED - OF THE POSSIBILITY OF SUCH DAMAGE. - -License: Expat - Permission is hereby granted, free of charge, to any person obtaining a - copy of this software and associated documentation files (the - "Software"), to deal in the Software without restriction, including - without limitation the rights to use, copy, modify, merge, publish, - distribute, sublicense, and/or sell copies of the Software, and to permit - persons to whom the Software is furnished to do so, subject to the - following conditions: - . - The above copyright notice and this permission notice shall be included - in all copies or substantial portions of the Software. - . - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS - OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN - NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, - DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR - OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE - USE OR OTHER DEALINGS IN THE SOFTWARE. - -License: CC0-1.0 - To the extent possible under law, the author(s) have dedicated all - copyright and related and neighboring rights to this software to the public - domain worldwide. This software is distributed without any warranty. - . - On Debian systems, the complete text of the CC0 license, version 1.0, - can be found in /usr/share/common-licenses/CC0-1.0. - - ----------------------------------------- -libassuan0 version 2.5.2-1 - - -Copyright: - -Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ -Upstream-Name: libassuan -Upstream-Contact: Werner Koch -Source: https://gnupg.org/ftp/gcrypt/libassuan/ - -Files: * - Makefile.am - src/Makefile.am - src/assuan-buffer.c - src/assuan-error.c - src/assuan-inquire.c - src/assuan-io.c - src/assuan-listen.c - src/assuan-pipe-server.c - src/assuan-socket-connect.c - src/assuan-socket-server.c - src/assuan-socket.c - src/assuan-uds.c - src/client.c - src/context.c - src/funopen.c - src/memrchr.c - src/posix-fd-t.inc.h - src/posix-includes.inc.h - src/posix-sock-nonce.inc.h - src/posix-sys-pth-impl.h - src/posix-types.inc.h - src/putc_unlocked.c - src/server.c - src/setenv.c - src/stpcpy.c - src/system-posix.c - src/system-w32.c - src/system-w32ce.c - src/system.c - src/w32-fd-t.inc.h - src/w32-includes.inc.h - src/w32-sock-nonce.inc.h - src/w32-sys-pth-impl.h - src/w32-types.inc.h - src/w32ce-add.h - src/w32ce-fd-t.inc.h -Copyright: 1992, 1995-2010, Free Software Foundation, Inc -License: LGPL-2.1+ - -Files: AUTHORS - aclocal.m4 - build-aux/git-log-footer - configure - INSTALL - m4/gnupg-pth.m4 - m4/ltoptions.m4 - m4/ltsugar.m4 - m4/ltversion.m4 - m4/lt~obsolete.m4 - m4/onceonly.m4 - m4/socklen.m4 - m4/sys_socket_h.m4 - m4/Makefile.in - src/libassuan-config.in - src/libassuan.m4 - src/mkheader.c -Copyright: 1992-1996, 1998-2013, Free Software Foundation, Inc -License: GAP~FSF - This file is free software; the Free Software Foundation - gives unlimited permission to copy and/or distribute it, - with or without modifications, as long as this notice is preserved. - -Files: doc/Makefile.am - doc/Makefile.in - src/gpgcedev.c - src/gpgcedev.def - src/gpgcemgr.c - tests/Makefile.am - tests/Makefile.in - tests/ce-createpipe.c - tests/ce-server.c - tests/common.h - tests/fdpassing.c - tests/pipeconnect.c -Copyright: 2003, 2006, 2009-2010 Free Software Foundation, Inc -License: LGPL-3+ - Assuan is free software; you can redistribute it and/or modify it - under the terms of the GNU Lesser General Public License as - published by the Free Software Foundation; either version 3 of - the License, or (at your option) any later version. - . - Assuan 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 - Lesser General Public License for more details. - . - You should have received a copy of the GNU Lesser General Public - License along with this program; if not, see . - . - On Debian systems, the full text of the GNU Lesser General Public - License version 3 can be found in the file - `/usr/share/common-licenses/LGPL-3' - -Files: src/debug.h - src/libassuan.def - src/libassuan.vers - tests/version.c -Copyright: 2002, 2004-2005, 2007, 2009, 2013 g10 Code GmbH -License: LGPL-2.1+ - -Files: build-aux/compile - build-aux/ltmain.sh - m4/libtool.m4 - build-aux/missing -Copyright: 1999-2013, Free Software Foundation, Inc -License: GPL-2+ with libtool exception - GNU Libtool 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. - . - As a special exception to the GNU General Public License, - if you distribute this file as part of a program or library that - is built using GNU Libtool, you may include this file under the - same distribution terms that you use for the rest of that program. - . - GNU Libtool 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. - . - You should have received a copy of the GNU General Public License - along with GNU Libtool; see the file COPYING. If not, a copy - can be downloaded from http://www.gnu.org/licenses/gpl.html, - or obtained by writing to the Free Software Foundation, Inc., - 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. - . - On Debian systems, the full text of the GNU General Public - License version 2 can be found in the file - `/usr/share/common-licenses/GPL-2'. - -Files: build-aux/config.guess - build-aux/config.sub - doc/assuan.info - doc/assuan.texi -Copyright: 1985-1986, 1988, 1990-2013, Free Software Foundation, Inc -License: GPL-3+ - Permission is granted to copy, distribute and/or modify this document - under the terms of the GNU General Public License as published by the - Free Software Foundation; either version 3 of the License, or (at your - option) any later version. The text of the license can be found in the - section entitled ``Copying''. - . - On Debian systems, the full text of the GNU General Public - License version 3 can be found in the file - `/usr/share/common-licenses/GPL-3'. - -Files: src/conversion.c - src/debug.c -Copyright: 2000, Werner Koch (dd9jn) - 2001-2005, 2007, 2009, g10 Code GmbH -License: LGPL-2.1+ - -Files: autogen.sh - m4/gpg-error.m4 - src/versioninfo.rc.in -Copyright: 2003-2013 g10 Code GmbH -License: GAP - This file is free software; as a special exception the author gives - unlimited permission to copy and/or distribute it, with or without - modifications, as long as this notice is preserved. - -Files: src/assuan.c -Copyright: 2001-2002, 2012-2013, g10 Code GmbH - 2009, Free Software Foundation, Inc -License: LGPL-2.1+ - -Files: m4/autobuild.m4 -Copyright: 2004, Simon Josefsson -License: GPL-2+ - This file is free software, distributed under the terms of the GNU - General Public License. As a special exception to the GNU General - Public License, this file may be distributed as part of a program - that contains a configuration script generated by Autoconf, under - the same distribution terms as the rest of that program. - . - This file can be used in projects which are not available under - the GNU General Public License or the GNU Library General Public - License but which still want to provide support for Autobuild. - . - On Debian systems, the full text of the GNU General Public - License version 2 can be found in the file - `/usr/share/common-licenses/GPL-2'. - -License: LGPL-2.1+ - Assuan is free software; you can redistribute it and/or modify it - under the terms of the GNU Lesser General Public License as - published by the Free Software Foundation; either version 2.1 of - the License, or (at your option) any later version. - . - Assuan 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 - Lesser General Public License for more details. - . - You should have received a copy of the GNU Lesser General Public - License along with this program; if not, see . - . - On Debian systems, the full text of the GNU Lesser General Public - License version 2.1 can be found in the file - `/usr/share/common-licenses/LGPL-2.1'. - - ----------------------------------------- -libksba8 version 1.3.5-2 - - -Copyright: - -This package was debianized by Marcus Brinkmann on -Thu, 25 Jul 2002 21:50:21 +0200. -It was later taken over by Matthias Urlichs , and is now -maintained by Andreas Metzler , Eric Dorland -, James Westby , -Peter Eisentraut - -It was downloaded from http://ftp.gnupg.org/GnuPG/libksba/. - -Upstream Authors: g10 Code GmbH and Fabio Fiorina. - -Copyright: - | Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2010, 2011 - | 2012, 2013, 2014, 2015 g10 Code GmbH - | Copyright (C) 2001, 2002, 2003, 2007 Free Software Foundation, Inc. - | Copyright (C) 2000, 2001 Fabio Fiorina - -The library and the header files are distributed under the following -terms (LGPLv3+/GPLv2+): - - | KSBA is free software; you can redistribute it and/or modify - | it under the terms of either - | - | - the GNU Lesser General Public License as published by the Free - | Software Foundation; either version 3 of the License, or (at - | your option) any later version. - | - | or - | - | - the GNU General Public License as published by the Free - | Software Foundation; either version 2 of the License, or (at - | - | or both in parallel, as here. - | - | KSBA 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. - -The other parts (e.g. manual, build system, tests) are distributed -under the following terms (GPLv3): - - | KSBA 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 3 of the License, or - | (at your option) any later version. - | - | KSBA 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. - -The ASN.1 definition for CMS is based on a specification published -under the following terms (see src/cms.asn): - - | Copyright (C) The Internet Society (1999). All Rights Reserved. - | - | This document and translations of it may be copied and furnished to - | others, and derivative works that comment on or otherwise explain it - | or assist in its implementation may be prepared, copied, published - | and distributed, in whole or in part, without restriction of any - | kind, provided that the above copyright notice and this paragraph are - | included on all such copies and derivative works. However, this - | document itself may not be modified in any way, such as by removing - | the copyright notice or references to the Internet Society or other - | Internet organizations, except as needed for the purpose of - | developing Internet standards in which case the procedures for - | copyrights defined in the Internet Standards process must be - | followed, or as required to translate it into languages other than - | English. - | - | The limited permissions granted above are perpetual and will not be - | revoked by the Internet Society or its successors or assigns. - | - | This document and the information contained herein is provided on an - | "AS IS" basis and THE INTERNET SOCIETY AND THE INTERNET ENGINEERING - | TASK FORCE DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING - | BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION - | HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF - | MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. - - - -On Debian systems, the complete text of the GNU General Public License -can be found in `/usr/share/common-licenses/GPL-3'. - - ----------------------------------------- -libnpth0 version 1.6-1 - - -Copyright: - -Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ -Upstream-Name: nPth -Upstream-Contact: Werner Koch -Source: ftp://ftp.gnupg.org/gcrypt/npth/ - -Files: * -Copyright: Copyright (C) 2011, 2012, 2015, 2017 g10 Code GmbH -License: LGPL-2.1+ - -Files: debian/* -Copyright: 2017 Eric Dorland -License: LGPL-2.1+ - -License: LGPL-2.1+ - nPth is free software; you can redistribute it and/or modify - it under the terms of the GNU Lesser General Public License as - published by the Free Software Foundation; either version 2.1 of - the License, or (at your option) any later version. - . - nPth 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 Lesser General Public License for more details. - . - You should have received a copy of the GNU Lesser General Public - License along with this program; if not, see . - . - On Debian systems, the full text of the GNU Lesser General Public - License version 2.1 can be found in the file - `/usr/share/common-licenses/LGPL-2.1'. - - ----------------------------------------- -libreadline7 version 7.0-5 - - -Copyright: - -This is Debian GNU/Linux's prepackaged version of the FSF's GNU -Readline library. - -This package was put together by Matthias Klose , derived -from the bash package by Guy Maor , from the GNU sources at - - ftp.gnu.org:/pub/gnu/readline/readline-6.0.tar.gz. - -Upstream Authors: - - Chet Ramey - Jeff Solomon (examples/excallback.c) - Harold Levy (examples/rl-fgets.c) - Juergen Weigert (examples/rlfe) - Michael Schroeder (examples/rlfe) - Oliver Laumann (examples/rlfe) - -Copyright: - - Copyright (C) 1987-2009 Free Software Foundation, Inc. - Copyright (C) 1999 Jeff Solomon (examples/excallback.c) - Copyright (C) 2003-2004 Harold Levy (examples/rl-fgets.c) - Copyright (C) 1993-2002 Juergen Weigert (examples/rlfe) - Copyright (C) 1993-2002 Michael Schroeder (examples/rlfe) - Copyright (C) 1987 Oliver Laumann (examples/rlfe) - -License: - - Readline 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 3 of the License, or - (at your option) any later version. - - This package 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. - - You should have received a copy of the GNU General Public License - along with Readline. If not, see . - - examples/rl-fgets.c: GPL v2 or later. - examples/rlfe: GPL v2 or later. - -On Debian systems, the complete text of the GNU General Public License -can be found in `/usr/share/common-licenses/GPL-3'. - -The documentation files doc/*.texi and derived .info, .html, .ps and .pdf -files are: - - Copyright (C) 1988-2015 Free Software Foundation, Inc. - - Permission is granted to copy, distribute and/or modify this - document under the terms of the GNU Free Documentation License, - Version 1.3 or any later version published by the Free Software - Foundation; with no Invariant Sections, no Front-Cover Texts, and - no Back-Cover Texts. A copy of the license is included in the - section entitled "GNU Free Documentation License". - -On Debian systems, the complete text of the GNU Free Documentation License -can be found in `/usr/share/common-licenses/GFDL'. - -The Debian packaging is: - - Copyright (C) 1999-2009 Matthias Klose - -and is licensed under the GPL version 3, -see `/usr/share/common-licenses/GPL-3'. - - ----------------------------------------- -libsqlite3-0 version 3.27.2-3+deb10u1 - - -Copyright: - -Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ -Upstream-Name: sqlite3 -Source: https://www.sqlite.org/cgi/src/dir?ci=trunk - -Files: * -Copyright: D. Richard Hipp -License: public-domain - The files listed have been put on the public domain by the sqlite3 - contributors. - -Files: debian/* -Copyright: 2006- Laszlo Boszormenyi (GCS) , - 2005-2006 Tomas Fasth , - 2001-2005 Andreas Rottmann -License: GPL-2+ - This program is free software; you can redistribute it and/or modify it - under the terms of the GNU General Public License version 2 as published - by the Free Software Foundation. - . - 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. - . - You should have received a copy of the GNU General Public License along - with this package; if not, write to the Free Software Foundation, Inc., - 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA - . - On Debian systems, the full text of the GNU General Public License - version 2 can be found in the file `/usr/share/common-licenses/GPL-2'. - - ----------------------------------------- -pinentry-curses version 1.1.0-2 - - -Copyright: - -Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ -Upstream-Name: Pinentry -Upstream-Contact: gnupg-devel@gnupg.org -Source: https://gnupg.org/ftp/gcrypt/pinentry/ - -Files: * -Copyright: 2002-2015, g10 Code GmbH -License: GPL-2+ - -Files: fltk/* -Copyright: 2016 Anatoly madRat L. Berenblit -License: GPL-2+ - -Files: tqt/Makefile.am tqt/main.cpp tqt/pinentrydialog.h tqt/pinentrydialog.cpp -Copyright: 2002-2015 g10 Code GmbH - 2002 Klarälvdalens Datakonsult AB -License: GPL-2+ - -Files: tqt/secqinternal.cpp tqt/secqinternal_p.h -Copyright: 1992-2000 Trolltech AS -License: GPL-2 - -Files: tqt/secqlineedit.cpp tqt/secqlineedit.h tqt/secqstring.cpp tqt/secqstring.h -Copyright: 1992-2002 Trolltech AS - 2003 g10 Code GmbH -License: GPL-2 - -Files: build-aux/* depcomp doc/mdate-sh doc/texinfo.tex m4/curses.m4 m4/iconv.m4 missing secmem/secmem.c -Copyright: 1996-2007, Free Software Foundation -License: GPL-2+ - -Files: install-sh -Copyright: 1994 X Consortium -License: X11 - -Files: gtk+-2/pinentry-gtk-2.c -Copyright: 1999 Robert Bihlmeyer - 2001, 2002, 2007 g10 Code GmbH - 2004 Albrecht Dreß -License: GPL-2+ - -Files: m4/pkg.m4 -Copyright: 2004 Scott James Remnant -License: GPL-2+ - -Files: m4/qt.m4 -Copyright: 1997 Janos Farkas (chexum@shadow.banki.hu)o - 1997,98,99 Stephan Kulow (coolo@kde.org) - 2002 g10 Code GmbH -License: GPL-2+ - -Files: pinentry/argparse.c -Copyright: 1998-2001, 2006-2008, 2012 Free Software Foundation, Inc. - 1997-2001, 2006-2008, 2013-2015 Werner Koch -License: LGPL-3+ or GPL-2+ - -Files: configure.ac secmem/util.* -Copyright: 1999, Robert Bihlmeyer - 2001, 2002, 2003, 2004, 2007 g10 Code GmbH -License: GPL-2+ - -Files: secmem/memory.h -Copyright: 1998,1999 Free Software Foundation, Inc. - 1999,2000 Robert Bihlmeyer -License: GPL-2+ - -Files: secmem/secmem++.h -Copyright: 2008 Marc Mutz -License: GPL-2+ - -Files: tty/pinentry-tty.c -Copyright: 2014 Serge Voilokov -License: GPL-2+ - -Files: qt/pinentrydialog.* -Copyright: 2002, 2008 Klarälvdalens Datakonsult AB - 2007 Ingo Klöcker -License: GPL-2+ - -Files: qt/pinentryconfirm.* -Copyright: 2011 Ben Kibbey -License: GPL-2+ - -Files: qt/main.cpp -Copyright: 2002, 2008 Klarälvdalens Datakonsult AB (KDAB) - 2003 g10 Code GmbH - 2007 Ingo Klöcker -License: GPL-2+ - -Files: qt/Makefile.am -Copyright: 2002 Klarälvdalens Datakonsult AB (KDAB) - 2008 g10 Code GmbH -License: GPL-2+ - -Files: debian/* -Copyright: 2004-2015 Peter Eisentraut - Marcus Brinkmann - Michael Brame - Daniel Kahn Gillmor -License: GPL-2+ - -License: X11 - Permission is hereby granted, free of charge, to any person obtaining a copy - of this software and associated documentation files (the "Software"), to - deal in the Software without restriction, including without limitation the - rights to use, copy, modify, merge, publish, distribute, sublicense, and/or - sell copies of the Software, and to permit persons to whom the Software is - furnished to do so, subject to the following conditions: - . - The above copyright notice and this permission notice shall be included in - all copies or substantial portions of the Software. - . - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN - AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC- - TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - . - Except as contained in this notice, the name of the X Consortium shall not - be used in advertising or otherwise to promote the sale, use or other deal- - ings in this Software without prior written authorization from the X Consor- - tium. - -License: GPL-2+ - This 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. - . - It 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. - . - On Debian systems, the full text of the GNU General Public - License version 2 can be found in the file - `/usr/share/common-licenses/GPL-2'. - -License: GPL-2 - This is free software; you can redistribute it and/or modify - it under the terms of version 2 of the GNU General Public License - as published by the Free Software Foundation. - . - It 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. - . - On Debian systems, the full text of the GNU General Public - License version 2 can be found in the file - `/usr/share/common-licenses/GPL-2'. - -License: LGPL-3+ - This is free software; you can redistribute it and/or modify it under - the terms of the GNU Lesser General Public License as published by - the Free Software Foundation; either version 3 of the License, or - (at your option) any later version. - . - It 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 Lesser General Public License for more details. - . - On Debian systems, the full text of the GNU General Public - License version 2.1 can be found in the file - `/usr/share/common-licenses/LGPL-3. - - ----------------------------------------- -readline-common version 7.0-5 - - -Copyright: - -This is Debian GNU/Linux's prepackaged version of the FSF's GNU -Readline library. - -This package was put together by Matthias Klose , derived -from the bash package by Guy Maor , from the GNU sources at - - ftp.gnu.org:/pub/gnu/readline/readline-6.0.tar.gz. - -Upstream Authors: - - Chet Ramey - Jeff Solomon (examples/excallback.c) - Harold Levy (examples/rl-fgets.c) - Juergen Weigert (examples/rlfe) - Michael Schroeder (examples/rlfe) - Oliver Laumann (examples/rlfe) - -Copyright: - - Copyright (C) 1987-2009 Free Software Foundation, Inc. - Copyright (C) 1999 Jeff Solomon (examples/excallback.c) - Copyright (C) 2003-2004 Harold Levy (examples/rl-fgets.c) - Copyright (C) 1993-2002 Juergen Weigert (examples/rlfe) - Copyright (C) 1993-2002 Michael Schroeder (examples/rlfe) - Copyright (C) 1987 Oliver Laumann (examples/rlfe) - -License: - - Readline 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 3 of the License, or - (at your option) any later version. - - This package 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. - - You should have received a copy of the GNU General Public License - along with Readline. If not, see . - - examples/rl-fgets.c: GPL v2 or later. - examples/rlfe: GPL v2 or later. - -On Debian systems, the complete text of the GNU General Public License -can be found in `/usr/share/common-licenses/GPL-3'. - -The documentation files doc/*.texi and derived .info, .html, .ps and .pdf -files are: - - Copyright (C) 1988-2015 Free Software Foundation, Inc. - - Permission is granted to copy, distribute and/or modify this - document under the terms of the GNU Free Documentation License, - Version 1.3 or any later version published by the Free Software - Foundation; with no Invariant Sections, no Front-Cover Texts, and - no Back-Cover Texts. A copy of the license is included in the - section entitled "GNU Free Documentation License". - -On Debian systems, the complete text of the GNU Free Documentation License -can be found in `/usr/share/common-licenses/GFDL'. - -The Debian packaging is: - - Copyright (C) 1999-2009 Matthias Klose - -and is licensed under the GPL version 3, -see `/usr/share/common-licenses/GPL-3'. - diff --git a/containers/server-bundle/ubuntu/README.md b/containers/server-bundle/ubuntu/README.md deleted file mode 100644 index 622533b9bc..0000000000 --- a/containers/server-bundle/ubuntu/README.md +++ /dev/null @@ -1,233 +0,0 @@ -# Zowe Docker file - -## Requirements - - docker - - z/OSMF up and running - - ZSS and ZSS Cross memory server up and running - -**TL;DR**: -```sh -docker pull ompzowe/server-bundle:latest -export DISCOVERY_PORT=7553 -export GATEWAY_PORT=7554 -export APP_SERVER_PORT=7556 - -#add non-default settings with --env, using same properties as seen in instance.env -# --env ZWED_TN3270_PORT=23 -docker run -it \ - -h your_hostname \ - --env ZOWE_IP_ADDRESS=your.external.ip \ - --env LAUNCH_COMPONENT_GROUPS=DESKTOP,GATEWAY \ - --env ZOSMF_HOST=your.zosmainframe.com \ - --env ZWED_agent_host=your.zosmainframe.com \ - --env ZOSMF_PORT=11443 \ - --env ZWED_agent_https_port=7557 \ - --expose ${DISCOVERY_PORT} \ - --expose ${GATEWAY_PORT} \ - --expose ${APP_SERVER_PORT} \ - -p ${DISCOVERY_PORT}:${DISCOVERY_PORT} \ - -p ${GATEWAY_PORT}:${GATEWAY_PORT} \ - -p ${APP_SERVER_PORT}:${APP_SERVER_PORT} \ - --env GATEWAY_PORT=${GATEWAY_PORT} \ - --env DISCOVERY_PORT=${DISCOVERY_PORT} \ - --env ZWED_SERVER_HTTPS_PORT=${APP_SERVER_PORT} \ - --mount type=bind,source=c:\temp\certs,target=/home/zowe/certs \ - ompzowe/server-bundle:latest -``` -Open browser and test it - - API Mediation Layer: https://myhost.acme.net:7554 - - App Framework: https://myhost.acme.net:7556 - -## Building docker image -Within this directory are several dockerfiles that have different purposes -* Dockerfile.nodejava: This is used to build an image with prereqs to cut down on build time of the main image. Build this whenever you want to update or change the prereqs -* Dockerfile: This is used to build the server-bundle image -* Dockerfile.sources: This is used if you want the server-bundle image with source code of dependencies included - -### Building docker image on Linux -This folder and associated utils folder contains the scripts needed to build. Simply execute: -```sh -cd zowe-install-packaging/containers/server-bundle/ubuntu -mkdir utils -cp -r ../utils/* ./utils -docker build -t zowe/docker:latest . -``` - -### Building docker image on Windows -This folder and associated utils folder contains the scripts needed to build. Simply execute: -```powershell -cd zowe-install-packaging/containers/server-bundle/ubuntu -mkdir utils -copy ..\utils\* utils -docker build -t zowe/docker:latest . -``` - -## Executing Zowe Docker Container - - prepare folder with certificates, you should have it from previous step. - - adjust `docker start` command - - `-h ` - hostname of docker host (hostname of your laptop eg: myhost.acme.net) - - `ZOWE_IP_ADDRESS=` - The IP which the servers should bind to. Should not be a loopback address. - - `ZOSMF_HOST=` - z/OSMF hostname (eg mf.acme.net) - - `ZOSMF_PORT=` - z/OSMF port eg (1443) - - `ZWED_agent_host=` - ZSS host (eg mf.acme.net) - - `ZWED_agent_https_port=` - ZSS port z/OSMF port eg (60012) - - `source=,target=` - local folder containing external certs, and their target dir in the image (optional) - - `EXTERNAL_CERTIFICATE=` - location of p12 keystore. (optional) - - `EXTERNAL_CERTIFICATE_ALIAS=` - valid alias within keystore. (optional) - - `EXTERNAL_CERTIFICATE_AUTHORITIES=` - location of x509 Certificate Authority (optional) - - `LAUNCH_COMPONENT_GROUPS=` - what do you want to start - - DESKTOP - only desktop - - GATEWAY - only GATEWAY + explorers - - GATEWAY,DESKTOP - both - -For example: - -```cmd -DISCOVERY_PORT=7553 GATEWAY_PORT=7554 APP_SERVER_PORT=7556 docker run -it -h your_hostname --env ZOWE_IP_ADDRESS=your.external.ip --env LAUNCH_COMPONENT_GROUPS=DESKTOP,GATEWAY --env ZOSMF_HOST=your.zosmainframe.com --env ZWED_agent_host=your.zosmainframe.com --env ZOSMF_PORT=11443 --env ZWED_agent_https_port=7557 --expose ${DISCOVERY_PORT} --expose ${GATEWAY_PORT} --expose ${APP_SERVER_PORT} -p ${DISCOVERY_PORT}:${DISCOVERY_PORT} -p ${GATEWAY_PORT}:${GATEWAY_PORT} -p ${APP_SERVER_PORT}:${APP_SERVER_PORT} --env GATEWAY_PORT=${GATEWAY_PORT} --env DISCOVERY_PORT=${DISCOVERY_PORT} --env ZWED_SERVER_HTTPS_PORT=${APP_SERVER_PORT} --env EXTERNAL_CERTIFICATE=/root/zowe/ext_certs/my.keystore.p12 --env EXTERNAL_CERTIFICATE_ALIAS=alias --env EXTERNAL_CERTIFICATE_AUTHORITIES=/root/zowe/ext_certs/myCA.cer --mount type=bind,source=,target=/home/zowe/ext_certs ompzowe/server-bundle:latest -``` -Note: External certificates are optional and should not be included in the start command if undesired. - -If you want to - - use it with different z/OSMF and ZSS change `ZOWE_ZOSMF_xxx` and `ZOWE_ZSS_xxx` - - start only a component change `LAUNCH_COMPONENT_GROUPS` - - run it on differen machine - - move image to different machine - - execute `docker start` with updated `-h ` - -### Windows - - prepare folder with certificates - I have my certificates in `c:\workspaces\ZooTainers-Hackathon2019\certs` -``` -c:\workspaces\ZooTainers-Hackathon2019\certs>dir - Volume in drive C is Windows - Volume Serial Number is 5EB2-BB6A - - Directory of c:\workspaces\ZooTainers-Hackathon2019\certs - -10/10/2019 09:35 AM . -10/10/2019 09:35 AM .. -10/10/2019 09:12 AM 1,338 digicert_global_root_ca.cer -10/10/2019 09:12 AM 1,647 digicert_sha2_secure_server_ca_digicert_global_root_ca_.cer -10/10/2019 09:12 AM 2,472 server.cer -10/10/2019 09:12 AM 5,965 server.p12 - 4 File(s) 11,422 bytes - 2 Dir(s) 179,745,226,752 bytes free -``` -An example of `docker start` command -```cmd -set DISCOVERY_PORT=7553 -set GATEWAY_PORT=7554 -set APP_SERVER_PORT=7556 - -#add non-default settings with --env, using same properties as seen in instance.env -# --env ZWED_TN3270_PORT=23 -docker run -it ^ - -h your_hostname ^ - --env ZOWE_IP_ADDRESS=your.external.ip ^ - --env LAUNCH_COMPONENT_GROUPS=DESKTOP,GATEWAY ^ - --env ZOSMF_HOST=your.zosmainframe.com ^ - --env ZWED_agent_host=your.zosmainframe.com ^ - --env ZOSMF_PORT=11443 ^ - --env ZWED_agent_https_port=7557 ^ - --expose %DISCOVERY_PORT% ^ - --expose %GATEWAY_PORT% ^ - --expose %APP_SERVER_PORT% ^ - -p %DISCOVERY_PORT%:%DISCOVERY_PORT% ^ - -p %GATEWAY_PORT%:%GATEWAY_PORT% ^ - -p %APP_SERVER_PORT%:%APP_SERVER_PORT% ^ - --env GATEWAY_PORT=%GATEWAY_PORT% ^ - --env DISCOVERY_PORT=%DISCOVERY_PORT% ^ - --env ZWED_SERVER_HTTPS_PORT=%APP_SERVER_PORT% ^ - --mount type=bind,c:\workspaces\ZooTainers-Hackathon2019\certs,target=/home/zowe/certs ^ - ompzowe/server-bundle:latest -``` - -### Linux -```cmd -export DISCOVERY_PORT=7553 -export GATEWAY_PORT=7554 -export APP_SERVER_PORT=7556 - -docker run -it \ - -h your_hostname \ - --env ZOWE_IP_ADDRESS=your.external.ip \ - --env LAUNCH_COMPONENT_GROUPS=DESKTOP,GATEWAY \ - --env ZOSMF_HOST=your.zosmainframe.com \ - --env ZWED_agent_host=your.zosmainframe.com \ - --env ZOSMF_PORT=11443 \ - --env ZWED_agent_https_port=7557 \ - --expose ${DISCOVERY_PORT} \ - --expose ${GATEWAY_PORT} \ - --expose ${APP_SERVER_PORT} \ - -p ${DISCOVERY_PORT}:${DISCOVERY_PORT} \ - -p ${GATEWAY_PORT}:${GATEWAY_PORT} \ - -p ${APP_SERVER_PORT}:${APP_SERVER_PORT} \ - --env GATEWAY_PORT=${GATEWAY_PORT} \ - --env DISCOVERY_PORT=${DISCOVERY_PORT} \ - --env ZWED_SERVER_HTTPS_PORT=${APP_SERVER_PORT} \ - --mount type=bind,source=c:\temp\certs,target=/home/zowe/certs \ - ompzowe/server-bundle:latest -``` - -#### Expected output -When running, the output will be very similar to what would be seen on a z/OS install, such as: - -``` -put something here -``` - -## Test it -Open browser and test it - - API Mediation Layer: https://mf.acme.net:7554 - - API ML Discovery Service: https://mf.acme.net:7553/ - - App Framework: https://mf.acme.net:7556 - -## Using Zowe's Docker with Zowe products & plugins -To use Zowe-based software with the docker container, you must make that software visible to the Zowe that is within Docker by mapping a folder on your host machine to a folder visible within the docker container. -This concept is known as Docker volumes. After sharing a volume, standard Zowe utilities for installing & using plugins will apply. - -To share a host directory *HOST_DIR* into the docker container destination directory *CONTAINER_DIR* with read-write access, simply add this line to your docker run command: `-v [HOST_DIR]:[CONTAINER_DIR]:rw` -You can have multiple such volumes, but for Zowe Application Framework plugins, the value of *CONTAINER_DIR* should be `/home/zowe/apps` - -An example is to add Apps to the Zowe Docker by sharing the host directory `~/apps`, which full of Application Framework plugins. - -```cmd -export DISCOVERY_PORT=7553 -export GATEWAY_PORT=7554 -export APP_SERVER_PORT=7556 - -docker run -it \ - -h your_hostname \ - --env ZOWE_IP_ADDRESS=your.external.ip \ - --env LAUNCH_COMPONENT_GROUPS=DESKTOP,GATEWAY \ - --env ZOSMF_HOST=your.zosmainframe.com \ - --env ZWED_agent_host=your.zosmainframe.com \ - --env ZOSMF_PORT=11443 \ - --env ZWED_agent_https_port=7557 \ - --expose ${DISCOVERY_PORT} \ - --expose ${GATEWAY_PORT} \ - --expose ${APP_SERVER_PORT} \ - -p ${DISCOVERY_PORT}:${DISCOVERY_PORT} \ - -p ${GATEWAY_PORT}:${GATEWAY_PORT} \ - -p ${APP_SERVER_PORT}:${APP_SERVER_PORT} \ - --env GATEWAY_PORT=${GATEWAY_PORT} \ - --env DISCOVERY_PORT=${DISCOVERY_PORT} \ - --env ZWED_SERVER_HTTPS_PORT=${APP_SERVER_PORT} \ - -v ~/apps:/home/zowe/apps:rw \ - ompzowe/server-bundle:latest $@ -``` - -By default, external plugins in the ```/home/zowe/apps``` folder will be installed at start up. - -To install other plugins to the app server simply ssh into the docker container to run the install-app.sh script, like so: -```docker exec -it [CONTAINER_ID] /home/zowe/instance/bin/install-app.sh [APPLICATION_DIR]``` -If the script returns with rc=0, then the plugin install succeded and the plugin can be used by refreshing the app server via either clicking "Refresh Applications" in the launchbar menu of the Zowe Desktop, or by doing an HTTP GET call to /plugins?refresh=true to the app server. - - -## Using an external instance of Zowe -If you have an instance of Zowe on your host machine that you want to use you can mount a shared volume and set the location of the shared volume as an environmental variable called EXTERNAL_INSTANCE. This can by done by adding these two flags to your docker start script. - -``` --v ~/my_instance:/home/zowe/external_instance:rw \ ---env EXTERNAL_INSTANCE=/home/zowe/external_instance \ -``` diff --git a/containers/server-bundle/ubuntu/build.sh b/containers/server-bundle/ubuntu/build.sh deleted file mode 100755 index 59f52aa180..0000000000 --- a/containers/server-bundle/ubuntu/build.sh +++ /dev/null @@ -1,34 +0,0 @@ -#!/bin/bash - -# This program and the accompanying materials are made available under the terms of the -# Eclipse Public License v2.0 which accompanies this distribution, and is available at -# https://www.eclipse.org/legal/epl-v20.html -# -# SPDX-License-Identifier: EPL-2.0 -# -# Copyright Contributors to the Zowe Project. - -# - Build docker image -# -# This script takes 2 parameters: -# 1. tag identifier -# 2. zowe build url -# -# Examples: -# ./build.sh amd64 -# ./build.sh amd64 latest -# ./build.sh amd64 https://zowe.jfrog.io/zowe/libs-snapshot-local/org/zowe/1.17.0-STAGING/zowe-1.17.0-staging-1052-20201017043641.pax - -mkdir -p utils -cp -r ../utils/* ./utils -if [ "$#" -lt 1 ] -then - echo "Usage: $0 [pax location]" - exit 1 -fi - -if [ "$1" = "" ]; then - docker build -f Dockerfile --no-cache -t ompzowe/server-bundle:testing$1 . -else - docker build -f Dockerfile --no-cache --build-arg ZOWE_BUILD=$2 -t ompzowe/server-bundle:testing$1 . -fi diff --git a/containers/server-bundle/ubuntu/run.sh b/containers/server-bundle/ubuntu/run.sh deleted file mode 100755 index 6fcbc6df43..0000000000 --- a/containers/server-bundle/ubuntu/run.sh +++ /dev/null @@ -1,70 +0,0 @@ -#!/bin/bash - -if [[ "$ZOWE_START" == "0" ]] -then - su zowe - sleep infinity -else - -ROOT_DIR="/home/zowe/install" - -if [ -d "/root/zowe/apps" ]; then - apps_dir="/root/zowe/apps" -else - apps_dir="/home/zowe/apps" -fi -if [ -d "/root/zowe/certs" ]; then - certs_dir="/root/zowe/certs" -else - certs_dir="/home/zowe/certs" -fi - - -if [ -n "$HOSTNAME" ]; then - if [ -z "$ZOWE_EXPLORER_HOST" ]; then - export ZOWE_EXPLORER_HOST=$HOSTNAME - fi -fi - -if [ -z "${EXTERNAL_INSTANCE}" ]; then - if [ -d "/home/zowe/external_instance" ]; then - export EXTERNAL_INSTANCE="/home/zowe/external_instance" - export INSTANCE_DIR="/home/zowe/external_instance" - elif [ -d "/root/zowe/external_instance" ]; then - export EXTERNAL_INSTANCE="/root/zowe/external_instance" - export INSTANCE_DIR="/root/zowe/external_instance" - elif [ -z "${INSTANCE_DIR}" ]; then - export INSTANCE_DIR=/home/zowe/instance - fi -else - export INSTANCE_DIR=$EXTERNAL_INSTANCE -fi - -#Sync user 'zowe' to be in the same groups as the first file seen in each mounted config dir -for D in "$certs_dir" "$apps_dir" "$EXTERNAL_INSTANCE" -do - # echo "Acting on $D if exists" - if [ -d "$D" ]; then - ls -ltr $D - group=$(ls -g $D | cut -d " " -f 3 | sed '2!d') - # echo "Group in $D is $group" - if [ "$group" != "root" ]; then - exists=$(grep $group /etc/group | cut -f 1 -d ':') - # echo "Matching group? Found: $exists" - if [ "$group" != "$exists" ]; then - echo "Adding missing container group" - groupadd -g $group zowe_${group} - fi - ingid=$(id zowe | grep "gid=${group}(") - ingroup=$(id zowe | grep "(${group})") - if [ -z "$ingid" -a -z "$ingroup" ]; then - echo "Added zowe to container group, zowe now in groups:" - usermod --groups zowe_${group} zowe - id zowe - fi - fi - fi -done - -su -c "/home/zowe/.run_inner.sh" zowe -fi diff --git a/containers/server-bundle/ubuntu/run_inner.sh b/containers/server-bundle/ubuntu/run_inner.sh deleted file mode 100755 index 68256c1a73..0000000000 --- a/containers/server-bundle/ubuntu/run_inner.sh +++ /dev/null @@ -1,73 +0,0 @@ -#!/bin/bash - -if [ -d "${apps_dir}" ]; then - export ZLUX_ROOT=/home/zowe/install/components/app-server/share - cd ${apps_dir} - for D in */; - do - if test -f "$D/autoinstall.sh"; then - app=$(cd $D && pwd) - ZLUX_ROOT=$ZLUX_ROOT APP_PLUGIN_DIR=app ./$D/autoinstall.sh - elif test -f "$D/pluginDefinition.json"; then - $INSTANCE_DIR/bin/install-app.sh ${apps_dir}/$D - elif test -f "$D/manifest.yaml"; then - $ROOT_DIR/bin/zowe-install-component.sh -o ${apps_dir}/$D -i $INSTANCE_DIR - elif test -f "$D/manifest.yml"; then - $ROOT_DIR/bin/zowe-install-component.sh -o ${apps_dir}/$D -i $INSTANCE_DIR - elif test -f "$D/manifest.json"; then - $ROOT_DIR/bin/zowe-install-component.sh -o ${apps_dir}/$D -i $INSTANCE_DIR - fi - done -fi - -if [ ! -d "${certs_dir}" ]; then - input1="/home/zowe/install/bin/zowe-setup-certificates.env.bkp" - while read -r line - do - test -z "${line%%#*}" && continue # skip line if first char is # - key=${line%%=*} - if [ -n "${!key}" ] - then - echo "Replacing key=${key} with val=${!key}" - sed -i 's@'${key}'=.*@'${key}'='"${!key}"'@g' /home/zowe/install/bin/zowe-setup-certificates.env - fi - done < "$input1" - -#correct the replacements for the few env vars we dont want the user to override simply by env var alone - sed -i 's/ZOWE_USER_ID=ZWESVUSR/ZOWE_USER_ID=zowe/g' /home/zowe/install/bin/zowe-setup-certificates.env - sed -i 's/ZOWE_GROUP_ID=ZWEADMIN/ZOWE_GROUP_ID=zowe/g' /home/zowe/install/bin/zowe-setup-certificates.env - - if [ -z "$VERIFY_CERTIFICATES" ]; then - sed -i 's/VERIFY_CERTIFICATES=true/VERIFY_CERTIFICATES=false/g' /home/zowe/install/bin/zowe-setup-certificates.env - fi - if [ -z "$NONSTRICT_VERIFY_CERTIFICATES" ]; then - sed -i 's/NONSTRICT_VERIFY_CERTIFICATES=true/NONSTRICT_VERIFY_CERTIFICATES=false/g' /home/zowe/install/bin/zowe-setup-certificates.env - fi - sed -i 's/HOSTNAME=.*/HOSTNAME='"${ZOWE_EXPLORER_HOST}"'/g' /home/zowe/install/bin/zowe-setup-certificates.env - sed -i 's/IPADDRESS=.*/IPADDRESS='"${ZOWE_IP_ADDRESS}"'/g' /home/zowe/install/bin/zowe-setup-certificates.env - -#cat /home/zowe/install/bin/zowe-setup-certificates.env - - /home/zowe/install/bin/zowe-setup-certificates.sh - sed -i 's/-ebcdic//' /global/zowe/keystore/zowe-certificates.env -fi - - -if [ ! -d "/home/zowe/external_instance" ]; then - cp /home/zowe/instance/instance.env.bkp /home/zowe/instance/instance.env - - input2="/home/zowe/instance/instance.env.bkp" - while read -r line - do - test -z "${line%%#*}" && continue # skip line if first char is # - key=${line%%=*} - if [ -n "${!key}" ] - then - echo "Replacing key=${key} with val=${!key}" - sed -i 's@'${key}'=.*@'${key}'='"${!key}"'@g' /home/zowe/instance/instance.env - fi - done < "$input2" -fi - -bash /home/zowe/instance/bin/internal/run-zowe.sh -sleep infinity diff --git a/containers/server-bundle/ubuntu/start.sh b/containers/server-bundle/ubuntu/start.sh deleted file mode 100755 index a15b4fc8d9..0000000000 --- a/containers/server-bundle/ubuntu/start.sh +++ /dev/null @@ -1,38 +0,0 @@ -#!/bin/bash -# Adjust hostname to match Docker host hostname and certificate in server.p12 (-h ...) -# Specify ZOSMF and ZSS hostnames and ports (--env ...) -# Provide location of your certificate if using external one (source=...) -# Certificate folder structure must be identical to a zowe z/os release, minus z/os keyrings -# LAUNCH_COMPONENT_GROUPS valid values out of the box are GATEWAY and DESKTOP or GATEWAY,DESKTOP - -DISCOVERY_PORT=7553 -GATEWAY_PORT=7554 -APP_SERVER_PORT=7556 -# If using external instance (recommended), put the path to it on the host computer here -# EXT_INSTANCE_PATH= - - - -if [ -d "${EXT_INSTANCE_PATH}" ]; then - full_instance_path=$(cd ${EXT_INSTANCE_PATH} && pwd) - instance_mount="-v ${full_instance_path}:/home/zowe/external_instance:rw" -fi - -# You may wish to set --env ZOWE_EXPLOERER_HOST to the value of hostname if iframe apps do not load - -#add non-default settings with --env, using same properties as seen in instance.env -# --env ZWED_TN3270_PORT=23 -docker run -it \ - --env ZOWE_START=1 \ - -h your_hostname \ - --env ZOWE_IP_ADDRESS=your.external.ip \ - --env LAUNCH_COMPONENT_GROUPS=DESKTOP,GATEWAY \ - --env ZOSMF_HOST=your.zosmainframe.com \ - --env ZWED_agent_host=your.zosmainframe.com \ - --env ZOSMF_PORT=11443 \ - --env ZWED_agent_https_port=7557 \ - -p ${DISCOVERY_PORT}:7553 \ - -p ${GATEWAY_PORT}:7554 \ - -p ${APP_SERVER_PORT}:7556 \ - ${instance_mount} \ - ompzowe/server-bundle:latest $@