Version in base suite: 2019.12.12~deb10u1 Base version: debian-security-support_2019.12.12~deb10u1 Target version: debian-security-support_2020.04.16~deb10u2 Base file: /srv/ftp-master.debian.org/ftp/pool/main/d/debian-security-support/debian-security-support_2019.12.12~deb10u1.dsc Target file: /srv/ftp-master.debian.org/policy/pool/main/d/debian-security-support/debian-security-support_2020.04.16~deb10u2.dsc check-support-status.hook | 10 check-support-status.in | 88 ++++--- debian/changelog | 109 ++++++++- debian/control | 2 debian/debian-security-support.lintian-overrides | 1 debian/debian-security-support.postinst | 10 debian/source/lintian-overrides | 1 man/check-support-status.txt | 6 po/cs.po | 12 - po/da.po | 16 - po/de.po | 276 +++++++++++------------ po/debian-security-support.pot | 4 po/es.po | 5 po/fr.po | 6 po/it.po | 14 - po/ja.po | 25 -- po/nl.po | 73 +++--- po/pl.po | 47 ++- po/pt.po | 31 +- po/pt_BR.po | 55 ++-- po/ru.po | 26 +- po/sv.po | 70 ++--- security-support-ended.deb10 | 1 security-support-ended.deb7 | 66 ----- security-support-ended.deb8 | 5 security-support-ended.deb9 | 6 security-support-limited | 3 t/check-support-status.t | 70 +++++ 28 files changed, 557 insertions(+), 481 deletions(-) diff -Nru debian-security-support-2019.12.12~deb10u1/check-support-status.hook debian-security-support-2020.04.16~deb10u2/check-support-status.hook --- debian-security-support-2019.12.12~deb10u1/check-support-status.hook 2019-05-14 12:09:54.000000000 +0000 +++ debian-security-support-2020.04.16~deb10u2/check-support-status.hook 2020-02-23 20:30:06.000000000 +0000 @@ -39,17 +39,11 @@ # Closes: #824081 cd /tmp - MODES="ended limited" - - # Don't invoke earlyend if an unsupporting version is still running. Closes: #824015 - found_version="$(dpkg-query -f '${Version}' -W debian-security-support)" - if dpkg --compare-versions "2016.03.30" '<=' "$found_version"; then - MODES="$MODES earlyend" - fi + MODES="ended limited earlyend" for MODE in $MODES ; do OUTPUT="$TEMPDIR/output" - su "$USERNAME" --shell /bin/bash --command " + runuser "$USERNAME" --shell /bin/bash --command " check-support-status \ --type $MODE \ --no-heading \ diff -Nru debian-security-support-2019.12.12~deb10u1/check-support-status.in debian-security-support-2020.04.16~deb10u2/check-support-status.in --- debian-security-support-2019.12.12~deb10u1/check-support-status.in 2019-11-01 14:19:34.000000000 +0000 +++ debian-security-support-2020.04.16~deb10u2/check-support-status.in 2020-03-15 10:03:17.000000000 +0000 @@ -11,7 +11,7 @@ VERSION='[% VERSION %]' # Oldest Debian version included in debian-security-support -DEB_LOWEST_VER_ID=7 +DEB_LOWEST_VER_ID=8 # Version ID for next Debian stable DEB_NEXT_VER_ID=11 @@ -21,13 +21,15 @@ fi if [ "$DEBIAN_VERSION" -lt "$DEB_LOWEST_VER_ID" ] || [ "$DEBIAN_VERSION" -gt "$DEB_NEXT_VER_ID" ] ; then - eval_gettext "Unknown DEBIAN_VERSION \$DEBIAN_VERSION. Valid values from \$DEB_LOWEST_VER_ID and \$DEB_NEXT_VER_ID"; echo - exit 0 + >&2 printf "%s: " "$NAME" + >&2 eval_gettext "Warning: unknown DEBIAN_VERSION \$DEBIAN_VERSION. Valid values are from \$DEB_LOWEST_VER_ID to \$DEB_NEXT_VER_ID, inclusive." + >&2 echo fi LIST= NOHEADING= STATUSDB_FILE= +EXCEPT= TYPE= NAME="$(basename "$0")" @@ -37,7 +39,7 @@ TEMP=$( \ getopt \ --options h,V \ - --long help,list:,no-heading,semaphore:,status-db:,type:,version,Version \ + --long help,list:,no-heading,semaphore:,status-db:,except:,type:,version,Version \ -n "$NAME" \ -- "$@" ) @@ -52,12 +54,15 @@ --list FILE database of packages under specific support conditions --no-heading skips printing headlines --status-db FILE database about already reported packages + --except PACKAGES exempt given binary packages (comma-separated list) --type SECURITY_SUPPORT_TYPE earlyend, ended or limited -V, --version display version and exit"; echo } if [ $? != 0 ] ; then - gettext "Failed to parse the command line parameters"; echo + >&2 printf "%s: " "$NAME" + >&2 gettext "Failed to parse the command line parameters" + >&2 echo exit 1 fi @@ -66,7 +71,7 @@ while true ; do case "$1" in -V|--version|--Version) - eval_gettext "\$name version \$VERSION"; echo + eval_gettext "\$NAME version \$VERSION"; echo exit 0 ;; -h|--help) @@ -86,6 +91,18 @@ STATUSDB_FILE="$2" shift 2 ;; + --except) + EXCEPT="$2" + case "$EXCEPT" in + *:*) + >&2 printf "%s: " "$NAME" + >&2 gettext 'E: --except= does not allow : suffixes' + >&2 echo + exit 1 + ;; + esac + shift 2 + ;; --type) TYPE="$2" shift 2 @@ -95,7 +112,9 @@ break ;; *) - gettext 'E: Internal error'; echo + >&2 printf "%s: " "$NAME" + >&2 gettext 'E: Internal error' + >&2 echo exit 1 ;; esac @@ -104,20 +123,22 @@ case "$TYPE" in '') if [ -z "$LIST" ] ; then - REPORT="$($0 --type ended --list [% ENDED %] --status-db "$STATUSDB_FILE" $NOHEADING)" + REPORT="$($0 --type ended --list [% ENDED %] --status-db "$STATUSDB_FILE" --except "$EXCEPT" $NOHEADING)" if [ -n "$REPORT" ] ; then echo "$REPORT" echo fi - REPORT="$($0 --type limited --list [% LIMITED %] --status-db "$STATUSDB_FILE" $NOHEADING)" + REPORT="$($0 --type limited --list [% LIMITED %] --status-db "$STATUSDB_FILE" --except "$EXCEPT" $NOHEADING)" if [ -n "$REPORT" ] ; then echo "$REPORT" echo fi - $0 --type earlyend --list [% ENDED %] --status-db "$STATUSDB_FILE" $NOHEADING + $0 --type earlyend --list [% ENDED %] --status-db "$STATUSDB_FILE" --except "$EXCEPT" $NOHEADING exit 0 fi - gettext 'E: Need a --type if --list is given'; echo + >&2 printf "%s: " "$NAME" + >&2 gettext 'E: Need a --type if --list is given' + >&2 echo exit 1 ;; earlyend) @@ -130,7 +151,9 @@ [ "$LIST" ] || LIST=[% LIMITED %] ;; *) - eval_gettext "E: Unknown --type '\$TYPE'"; echo + >&2 printf "%s: " "$NAME" + >&2 eval_gettext "E: Unknown --type '\$TYPE'" + >&2 echo exit 1 ;; esac @@ -140,31 +163,13 @@ exit 0 fi -# Get dpkg version for dpkg-query --showformat string - -DPKG_VERSION="$( - [% DPKG_QUERY %] -f '${Version}' -W dpkg -)" - -SHOWFORMAT= -if [ "$DPKG_VERSION" ] && dpkg --compare-versions "$DPKG_VERSION" '<<' 1.16 ; then - # squeeze, does not support binary:Package - SHOWFORMAT='${Status}\t${Package}\t${Version}\t${Source}\n' -else - if [ -z "$DPKG_VERSION" ] ; then - gettext "E: Cannot detect dpkg version, assuming wheezy or newer"; echo - fi - SHOWFORMAT='${Status}\t${binary:Package}\t${Version}\t${Source}\n' -fi - - TEMPDIR="$(mktemp --tmpdir --directory debian-security-support.XXXXX)" trap "rm -rf '$TEMPDIR'" 0 # Get list of installed packages INSTALLED_LIST="$TEMPDIR/installed" -LC_ALL=C [% DPKG_QUERY %] --show --showformat "$SHOWFORMAT" | +LC_ALL=C [% DPKG_QUERY %] --show --showformat '${Status}\t${binary:Package}\t${Version}\t${Source}\n' | [% AWK %] '($1=="install"){print}' | [% AWK %] -F'\t' '{if($4==""){print $2"\t"$3"\t"$2}else{print $2"\t"$3"\t"$4}}' >"$INSTALLED_LIST" @@ -240,6 +245,15 @@ [% AWK %] '($3=="'"$SRC_NAME"'"){print $1" "$2}' "$INSTALLED_LIST" | \ while read BIN_NAME BIN_VERSION ; do + # skip packages that were listed in --except + case ",$EXCEPT," in + *,"$BIN_NAME",*) # plain match (e.g., "binutils") + continue + ;; + *,"${BIN_NAME%:*}",*) # match with arch suffix (e.g., "libbinutils:amd64") + continue + ;; + esac # for earlyend and ended, check packages actually affected (if TMP_WHEN not null) if [ -n "$TMP_WHEN" ] || [ "$TYPE" = limited ] ; then if \ @@ -283,30 +297,30 @@ earlyend) gettext \ "Future end of support for one or more packages" - echo "\n" + echo; echo gettext \ "Unfortunately, it will be necessary to end security support for some packages before the end of the regular security maintenance life cycle." | $FOLD - echo "\n" + echo; echo gettext \ "The following packages found on this system are affected by this:" ; echo ;; ended) gettext \ "Ended security support for one or more packages" - echo "\n" + echo; echo gettext \ "Unfortunately, it has been necessary to end security support for some packages before the end of the regular security maintenance life cycle." | $FOLD - echo "\n" + echo; echo gettext \ "The following packages found on this system are affected by this:" ; echo ;; limited) gettext \ "Limited security support for one or more packages" - echo "\n" + echo; echo gettext \ "Unfortunately, it has been necessary to limit security support for some packages." | $FOLD - echo "\n" + echo; echo gettext \ "The following packages found on this system are affected by this:" ; echo ;; diff -Nru debian-security-support-2019.12.12~deb10u1/debian/changelog debian-security-support-2020.04.16~deb10u2/debian/changelog --- debian-security-support-2019.12.12~deb10u1/debian/changelog 2019-12-12 22:57:34.000000000 +0000 +++ debian-security-support-2020.04.16~deb10u2/debian/changelog 2020-05-02 10:00:57.000000000 +0000 @@ -1,8 +1,103 @@ -debian-security-support (2019.12.12~deb10u1) buster; urgency=medium +debian-security-support (2020.04.16~deb10u2) buster; urgency=medium - * Re-uploaded for buster. + * Re-upload for buster. - -- Holger Levsen Thu, 12 Dec 2019 23:57:34 +0100 + -- Holger Levsen Sat, 02 May 2020 12:00:57 +0200 + +debian-security-support (2020.04.16) unstable; urgency=medium + + * Add tor to security-support-ended.deb8 as well, see DSA 4644-1. + * Add libperlspeak-perl to security-support-ended.deb(8|9|10), because of + CVE-2020-10674 (#954238), also see #954297, #954298 and #954299. + + -- Holger Levsen Thu, 16 Apr 2020 02:16:25 +0200 + +debian-security-support (2020.03.22) unstable; urgency=medium + + [ Salvatore Bonaccorso ] + * Add tor to security-support-ended.deb9, see DSA 4644-1. + + -- Holger Levsen Sun, 22 Mar 2020 10:15:38 +0100 + +debian-security-support (2020.03.15) unstable; urgency=medium + + [ Dmitry Smirnov ] + * security-support-limited/zoneminder: declare limited support behind an + authenticated HTTP zone (see #922724). + + [ Daniel Shahaf ] + * Revert unintentional output change in #951874 4/4. Closes: #953732. + + -- Holger Levsen Sun, 15 Mar 2020 11:03:43 +0100 + +debian-security-support (2020.03.05) unstable; urgency=medium + + [ Bastian Blank ] + * Add xen to security-support-ended.deb8. + + [ Holger Levsen ] + * Correct bug closure for #951874 in 2020.02.25 changelog entry. #951772 was + already closed in 2020.02.21. + + -- Holger Levsen Thu, 05 Mar 2020 11:04:22 +0100 + +debian-security-support (2020.02.25) unstable; urgency=medium + + [ Daniel Shahaf ] + * Miscellaneous sh fixes, Closes: #951874. + - avoid implementation-defined behaviour. + - fix --version output, use defined variable. + - print errors and warnings to stderr. + - clarify an error message. + + [ Holger Levsen ] + * postinst and check-support-status.hook: drop workaround for upgrades from + releases before 2016-03-30. + * check-support-status.in: + - drop code needed for supporting dpkg-query from squeeze. + - set DEB_LOWEST_VER_ID=8 as we dropped security-support-ended.deb7 in the + last upload. + - Don't exit gracefully if the detected Debian version is not supported, + instead issue a warning and continue, to both do the checks that can be + done and to not fail the package installation. Closes: #952383. + * po/debian-security-support.pot: drop removed string. + * Update all .po files for changed strings in the English original. + * Add "package-uses-old-debhelper-compat-version 11" to + source/lintian-overrides. The package shall be trivially buildable on + stable. + + -- Holger Levsen Tue, 25 Feb 2020 15:46:23 +0100 + +debian-security-support (2020.02.21) unstable; urgency=medium + + [ Holger Levsen ] + * Drop security-support-ended.deb7, we don't support wheezy anymore. (eLTS + is maintained outside Debian.) + * Add nodejs to security-support-ended.deb8 and .deb9. + * Use runuser instead of su. Closes: #890862. Thanks to Jakobus Schürz. + * Wrap long lines in changelog entries: 2015.04.04, thanks lintian-brush. + * Fix day-of-week for changelog entry 2015.04.04, thanks lintian-brush. + + [ Daniel Shahaf ] + * Allow one to exclude specific packages from the check. Closes: #951442. + * Prefix "check-support-status: " to error messages. Closes: #951772. + + -- Holger Levsen Fri, 21 Feb 2020 18:38:55 +0100 + +debian-security-support (2020.01.21) unstable; urgency=medium + + [ Abhijith PA ] + * Add nethack to security-support-ended.deb8. + + [ Salvatore Bonaccorso ] + * Mark xen as end-of-life for Stretch (DSA 4602-1). + + [ Holger Levsen ] + * Improve describe of binutils' status in security-support-limited. Thanks + to Daniel Shahaf for the patch. Closes: #948634. + * Bump standards version to 4.5.0, no changes needed. + + -- Holger Levsen Tue, 21 Jan 2020 16:18:37 +0100 debian-security-support (2019.12.12) unstable; urgency=medium @@ -415,15 +510,15 @@ debian-security-support (2015.04.04) unstable; urgency=high * Add wireshark to unsupported packages in Squeeze (Closes: #774312) - * Remove php5 and memcached from "limited support": Debian's PHP support is not - different from upstream's and is well understood by the community. The same - applies to memcached (Closes: #775582) + * Remove php5 and memcached from "limited support": Debian's PHP support is + not different from upstream's and is well understood by the community. The + same applies to memcached (Closes: #775582) * Mark chromium-browser as unsupported in Wheezy (Closes: #776904). The same applies to rails * Mark piwigo as unsupported in Squeeze (Closes: #779104) * Mark xulrunner as unsupported - -- Moritz Muehlenhoff Mon, 04 Apr 2015 18:11:20 +0100 + -- Moritz Muehlenhoff Sat, 04 Apr 2015 18:11:20 +0100 debian-security-support (2014.12.17) unstable; urgency=high diff -Nru debian-security-support-2019.12.12~deb10u1/debian/control debian-security-support-2020.04.16~deb10u2/debian/control --- debian-security-support-2019.12.12~deb10u1/debian/control 2019-12-12 16:06:55.000000000 +0000 +++ debian-security-support-2020.04.16~deb10u2/debian/control 2020-03-05 10:30:30.000000000 +0000 @@ -15,7 +15,7 @@ original-awk, po-debconf, xmlto, -Standards-Version: 4.4.1 +Standards-Version: 4.5.0 Rules-Requires-Root: no Vcs-Git: https://salsa.debian.org/debian/debian-security-support.git Vcs-Browser: https://salsa.debian.org/debian/debian-security-support diff -Nru debian-security-support-2019.12.12~deb10u1/debian/debian-security-support.lintian-overrides debian-security-support-2020.04.16~deb10u2/debian/debian-security-support.lintian-overrides --- debian-security-support-2019.12.12~deb10u1/debian/debian-security-support.lintian-overrides 2018-03-16 14:39:59.000000000 +0000 +++ debian-security-support-2020.04.16~deb10u2/debian/debian-security-support.lintian-overrides 2020-02-25 14:37:39.000000000 +0000 @@ -1,4 +1,3 @@ - debian-security-support: no-debconf-config debian-security-support: postinst-uses-db-input debian-security-support: maintainer-script-should-not-use-adduser-system-without-home postinst:20 diff -Nru debian-security-support-2019.12.12~deb10u1/debian/debian-security-support.postinst debian-security-support-2020.04.16~deb10u2/debian/debian-security-support.postinst --- debian-security-support-2019.12.12~deb10u1/debian/debian-security-support.postinst 2019-05-14 12:11:57.000000000 +0000 +++ debian-security-support-2020.04.16~deb10u2/debian/debian-security-support.postinst 2020-02-23 20:09:55.000000000 +0000 @@ -40,17 +40,11 @@ TEMPDIR="$(mktemp --tmpdir --directory debian-security-support.postinst.XXXXX)" trap "rm -rf '$TEMPDIR'" EXIT - MODES="ended limited" - - # Don't invoke earlyend if an unsupporting version is still running. Closes: #824015 - found_version="$(dpkg-query -f '${Version}' -W debian-security-support)" - if dpkg --compare-versions "2016.03.30" '<=' "$found_version"; then - MODES="$MODES earlyend" - fi + MODES="ended limited earlyend" for MODE in $MODES ; do OUTPUT="$TEMPDIR/output" - su "$USERNAME" --shell /bin/bash --command " + runuser "$USERNAME" --shell /bin/bash --command " check-support-status \ --type $MODE \ --no-heading \ diff -Nru debian-security-support-2019.12.12~deb10u1/debian/source/lintian-overrides debian-security-support-2020.04.16~deb10u2/debian/source/lintian-overrides --- debian-security-support-2019.12.12~deb10u1/debian/source/lintian-overrides 1970-01-01 00:00:00.000000000 +0000 +++ debian-security-support-2020.04.16~deb10u2/debian/source/lintian-overrides 2020-02-25 14:37:31.000000000 +0000 @@ -0,0 +1 @@ +source: package-uses-old-debhelper-compat-version 11 diff -Nru debian-security-support-2019.12.12~deb10u1/man/check-support-status.txt debian-security-support-2020.04.16~deb10u2/man/check-support-status.txt --- debian-security-support-2019.12.12~deb10u1/man/check-support-status.txt 2018-03-16 14:39:59.000000000 +0000 +++ debian-security-support-2020.04.16~deb10u2/man/check-support-status.txt 2020-02-21 13:48:56.000000000 +0000 @@ -83,6 +83,12 @@ + Default: No records, any affected package will be reported every time. +*--except* 'PACKAGES':: + +Do not alert for the given binary packages (comma-separated list). ++ +Default: Alert for all packages (no exceptions). + *--type* 'TYPE':: One of the following: diff -Nru debian-security-support-2019.12.12~deb10u1/po/cs.po debian-security-support-2020.04.16~deb10u2/po/cs.po --- debian-security-support-2019.12.12~deb10u1/po/cs.po 2019-06-12 16:27:03.000000000 +0000 +++ debian-security-support-2020.04.16~deb10u2/po/cs.po 2020-02-23 20:51:12.000000000 +0000 @@ -1,14 +1,14 @@ # Czech PO debconf template translation of debian-security-support. # Copyright (C) 2014 Michal Simunek # This file is distributed under the same license as the debian-security-support package. -# Michal Simunek , 2014 - 2019. +# Michal Simunek , 2014. # msgid "" msgstr "" -"Project-Id-Version: debian-security-support 2019.05.23\n" +"Project-Id-Version: debian-security-support 2014.05.16\n" "Report-Msgid-Bugs-To: debian-security-support@packages.debian.org\n" "POT-Creation-Date: 2016-06-07 12:13+0200\n" -"PO-Revision-Date: 2019-06-11 20:15+0200\n" +"PO-Revision-Date: 2014-06-20 09:15+0200\n" "Last-Translator: Michal Simunek \n" "Language-Team: Czech \n" "Language: cs\n" @@ -47,12 +47,6 @@ msgid "E: Unknown --type '$TYPE'" msgstr "E: Neznámý --type '$TYPE'" -#: ../check-support-status.in:152 -msgid "E: Cannot detect dpkg version, assuming wheezy or newer" -msgstr "" -"E: Nelze rozpoznat verzi dpkg, předpokládá se, že je ve verzi z " -"wheezy nebo novější" - #: ../check-support-status.in:282 msgid "Future end of support for one or more packages" msgstr "Budoucí omezená bezpečnostní podpora jednoho nebo více balíčků" diff -Nru debian-security-support-2019.12.12~deb10u1/po/da.po debian-security-support-2020.04.16~deb10u2/po/da.po --- debian-security-support-2019.12.12~deb10u1/po/da.po 2019-06-12 16:20:16.000000000 +0000 +++ debian-security-support-2020.04.16~deb10u2/po/da.po 2020-02-23 20:51:12.000000000 +0000 @@ -1,14 +1,14 @@ -# Danish translation debian-security-support. -# This file is distributed under the same license as the debian-security-support package. -# Copyright (C) 2019 debian-security-support & nedenstående oversættere. -# Joe Hansen , 2014, 2016, 2019. -# +# Danish translation debian-security-support. +# This file is distributed under the same license as the debian-security-support package. +# Copyright (C) 2016 debian-security-support & nedenstående oversættere. +# Joe Hansen , 2014, 2016. +# msgid "" msgstr "" "Project-Id-Version: debian-security-support\n" "Report-Msgid-Bugs-To: debian-security-support@packages.debian.org\n" "POT-Creation-Date: 2016-06-07 12:13+0200\n" -"PO-Revision-Date: 2019-06-03 17:34+0000\n" +"PO-Revision-Date: 2016-05-16 17:34+0000\n" "Last-Translator: Joe Hansen \n" "Language-Team: Danish \n" "Language: da\n" @@ -47,10 +47,6 @@ msgid "E: Unknown --type '$TYPE'" msgstr "E: Ukendt --type »$TYPE«" -#: ../check-support-status.in:152 -msgid "E: Cannot detect dpkg version, assuming wheezy or newer" -msgstr "E: Kan ikke registrere dpkg-version, antager wheezy eller nyere" - #: ../check-support-status.in:282 msgid "Future end of support for one or more packages" msgstr "Fremtidig stop for understøttelse for en eller flere pakker" diff -Nru debian-security-support-2019.12.12~deb10u1/po/de.po debian-security-support-2020.04.16~deb10u2/po/de.po --- debian-security-support-2019.12.12~deb10u1/po/de.po 2018-12-29 17:46:23.000000000 +0000 +++ debian-security-support-2020.04.16~deb10u2/po/de.po 2020-02-23 20:51:12.000000000 +0000 @@ -1,146 +1,138 @@ # German translation of debian-security-support debconf templates. # This file is distributed under the same license as # the debian-security-support package. -# Copyright: Chris Leick , 2014-2017. +# Copyright: Chris Leick , 2014-2016. # -msgid "" -msgstr "" -"Project-Id-Version: debian-security-support 2016.05.11\n" -"Report-Msgid-Bugs-To: debian-security-support@packages.debian.org\n" -"POT-Creation-Date: 2016-06-07 12:13+0200\n" -"PO-Revision-Date: 2017-10-12 22:03+0100\n" -"Last-Translator: Chris Leick \n" -"Language-Team: German \n" -"Language: de\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" - -#: ../check-support-status.in:24 -#, sh-format -msgid "" -"Unknown DEBIAN_VERSION $DEBIAN_VERSION. Valid values from " -"$DEB_LOWEST_VER_ID and $DEB_NEXT_VER_ID" -msgstr "" -"Unbekannte DEBIAN_VERSION $DEBIAN_VERSION. Gültige Werte liegen zwischen " -"$DEB_LOWEST_VER_ID und $DEB_NEXT_VER_ID" - -#: ../check-support-status.in:63 -msgid "Failed to parse the command line parameters" -msgstr "Das Auswerten der Befehlszeilenparameter ist fehlgeschlagen." - -#: ../check-support-status.in:72 -#, sh-format -msgid "$name version $VERSION" -msgstr "$name Version $VERSION" - -#: ../check-support-status.in:101 -msgid "E: Internal error" -msgstr "F: Interner Fehler" - -#: ../check-support-status.in:117 -msgid "E: Need a --type if --list is given" -msgstr "F: Ein --type wird benötigt, falls --list angegeben ist." - -#: ../check-support-status.in:130 -#, sh-format -msgid "E: Unknown --type '$TYPE'" -msgstr "F: unbekannter --type »$TYPE«" - -#: ../check-support-status.in:152 -msgid "E: Cannot detect dpkg version, assuming wheezy or newer" -msgstr "" -"F: Dpkg-Version kann nicht ermittelt werden, es wird Wheezy oder " -"neuer\n" -"angenommen" - -#: ../check-support-status.in:282 -msgid "Future end of support for one or more packages" -msgstr "" -"Zukünftiges Ende der Versorgung mit Sicherheitsaktualisierungen für " -"eines oder mehrere Pakete" - -#: ../check-support-status.in:285 -msgid "" -"Unfortunately, it will be necessary to end security support for some " -"packages before the end of the regular security maintenance life " -"cycle." -msgstr "" -"Leider wird es nötig sein, die Versorgung mit " -"Sicherheitsaktualisierungen für einige Pakete vor dem regulären Ende " -"des Sicherheitswartungszyklus zu beenden." - -#: ../check-support-status.in:288 ../check-support-status.in:298 -#: ../check-support-status.in:308 -msgid "" -"The following packages found on this system are affected by this:" -msgstr "" -"Davon sind die folgenden auf diesem System gefundenen Pakete " -"betroffen:" - -#: ../check-support-status.in:292 -msgid "Ended security support for one or more packages" -msgstr "" -"Ende der Versorgung mit Sicherheitsaktualisierungen für eines oder " -"mehrere Pakete" - -#: ../check-support-status.in:295 -msgid "" -"Unfortunately, it has been necessary to end security support for some " -"packages before the end of the regular security maintenance life " -"cycle." -msgstr "" -"Leider war es nötig, die Versorgung mit Sicherheitsaktualisierungen " -"für einige Pakete vor dem regulären Ende des " -"Sicherheitswartungszyklus zu beenden." - -#: ../check-support-status.in:302 -msgid "Limited security support for one or more packages" -msgstr "" -"Eingeschränkte Versorgung mit Sicherheitsaktualisierungen für eines " -"oder mehrere Pakete" - -#: ../check-support-status.in:305 -msgid "" -"Unfortunately, it has been necessary to limit security support for " -"some packages." -msgstr "" -"Leider war es nötig, die Versorgung mit Sicherheitsaktualisierungen " -"für einige Pakete einzuschränken." - -#: ../check-support-status.in:320 -#, sh-format -msgid "* Source:$SRC_NAME, will end on $ALERT_WHEN" -msgstr "" -"* Quelle:$SRC_NAME, wird mit $ALERT_WHEN enden." - -#: ../check-support-status.in:323 -#, sh-format -msgid "" -"* Source:$SRC_NAME, ended on $ALERT_WHEN at version $ALERT_VERSION" -msgstr "" -"* Quelle:$SRC_NAME, endet am $ALERT_WHEN mit Version $ALERT_VERSION" - -#: ../check-support-status.in:326 -#, sh-format -msgid "* Source:$SRC_NAME" -msgstr "* Quelle:$SRC_NAME" - -#: ../check-support-status.in:330 -#, sh-format -msgid " Details: $ALERT_WHY" -msgstr " Einzelheiten: $ALERT_WHY" - -#: ../check-support-status.in:333 -msgid " Affected binary package:" -msgstr " Betroffenes Binärpaket:" - -#: ../check-support-status.in:335 -msgid " Affected binary packages:" -msgstr " Betroffene Binärpakete:" - -#: ../check-support-status.in:338 -#, sh-format -msgid " - $BIN_NAME (installed version: $BIN_VERSION)" -msgstr " - $BIN_NAME (installierte Version: $BIN_VERSION)" +msgid "" +msgstr "" +"Project-Id-Version: debian-security-support 2016.05.11\n" +"Report-Msgid-Bugs-To: debian-security-support@packages.debian.org\n" +"POT-Creation-Date: 2016-06-07 12:13+0200\n" +"PO-Revision-Date: 2016-05-12 19:01+0100\n" +"Last-Translator: Chris Leick \n" +"Language-Team: German \n" +"Language: de\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" + +#: ../check-support-status.in:24 +#, sh-format +msgid "" +"Unknown DEBIAN_VERSION $DEBIAN_VERSION. Valid values from " +"$DEB_LOWEST_VER_ID and $DEB_NEXT_VER_ID" +msgstr "" +"Unbekannte DEBIAN_VERSION $DEBIAN_VERSION. Gültige Werte liegen " +"zwischen $DEB_LOWEST_VER_ID und $DEB_NEXT_VER_ID" + +#: ../check-support-status.in:63 +msgid "Failed to parse the command line parameters" +msgstr "Das Auswerten der Befehlszeilenparameter ist fehlgeschlagen." + +#: ../check-support-status.in:72 +#, sh-format +msgid "$name version $VERSION" +msgstr "$name Version $VERSION" + +#: ../check-support-status.in:101 +msgid "E: Internal error" +msgstr "F: Interner Fehler" + +#: ../check-support-status.in:117 +msgid "E: Need a --type if --list is given" +msgstr "F: Ein --type wird benötigt, falls --list angegeben ist." + +#: ../check-support-status.in:130 +#, sh-format +msgid "E: Unknown --type '$TYPE'" +msgstr "F: unbekannter --type »$TYPE«" + +#: ../check-support-status.in:282 +msgid "Future end of support for one or more packages" +msgstr "" +"Zukünftiges Ende der Versorgung mit Sicherheitsaktualisierungen für " +"eines oder mehrere Pakete" + +#: ../check-support-status.in:285 +msgid "" +"Unfortunately, it will be necessary to end security support for some " +"packages before the end of the regular security maintenance life " +"cycle." +msgstr "" +"Leider wird es nötig sein, die Versorgung mit " +"Sicherheitsaktualisierungen für einige Pakete vor dem regulären Ende " +"des Sicherheitswartungszyklus zu beenden." + +#: ../check-support-status.in:288 ../check-support-status.in:298 +#: ../check-support-status.in:308 +msgid "" +"The following packages found on this system are affected by this:" +msgstr "" +"Davon sind die folgenden auf diesem System gefundenen Pakete " +"betroffen:" + +#: ../check-support-status.in:292 +msgid "Ended security support for one or more packages" +msgstr "" +"Ende der Versorgung mit Sicherheitsaktualisierungen für eines oder " +"mehrere Pakete" + +#: ../check-support-status.in:295 +msgid "" +"Unfortunately, it has been necessary to end security support for some " +"packages before the end of the regular security maintenance life " +"cycle." +msgstr "" +"Leider war es nötig, die Versorgung mit Sicherheitsaktualisierungen " +"für einige Pakete vor dem regulären Ende des " +"Sicherheitswartungszyklus zu beenden." + +#: ../check-support-status.in:302 +msgid "Limited security support for one or more packages" +msgstr "" +"Eingeschränkte Versorgung mit Sicherheitsaktualisierungen für eines " +"oder mehrere Pakete" + +#: ../check-support-status.in:305 +msgid "" +"Unfortunately, it has been necessary to limit security support for " +"some packages." +msgstr "" +"Leider war es nötig, die Versorgung mit Sicherheitsaktualisierungen " +"für einige Pakete einzuschränken." + +#: ../check-support-status.in:320 +#, sh-format +msgid "* Source:$SRC_NAME, will end on $ALERT_WHEN" +msgstr "* Quelle:$SRC_NAME, wird mit $ALERT_WHEN enden." + +#: ../check-support-status.in:323 +#, sh-format +msgid "" +"* Source:$SRC_NAME, ended on $ALERT_WHEN at version $ALERT_VERSION" +msgstr "" +"* Quelle:$SRC_NAME, endet am $ALERT_WHEN mit Version $ALERT_VERSION" + +#: ../check-support-status.in:326 +#, sh-format +msgid "* Source:$SRC_NAME" +msgstr "* Quelle:$SRC_NAME" + +#: ../check-support-status.in:330 +#, sh-format +msgid " Details: $ALERT_WHY" +msgstr " Einzelheiten: $ALERT_WHY" + +#: ../check-support-status.in:333 +msgid " Affected binary package:" +msgstr " Betroffenes Binärpaket:" + +#: ../check-support-status.in:335 +msgid " Affected binary packages:" +msgstr " Betroffene Binärpakete:" + +#: ../check-support-status.in:338 +#, sh-format +msgid " - $BIN_NAME (installed version: $BIN_VERSION)" +msgstr " - $BIN_NAME (installierte Version: $BIN_VERSION)" diff -Nru debian-security-support-2019.12.12~deb10u1/po/debian-security-support.pot debian-security-support-2020.04.16~deb10u2/po/debian-security-support.pot --- debian-security-support-2019.12.12~deb10u1/po/debian-security-support.pot 2018-03-16 14:39:59.000000000 +0000 +++ debian-security-support-2020.04.16~deb10u2/po/debian-security-support.pot 2020-02-23 20:51:04.000000000 +0000 @@ -46,10 +46,6 @@ msgid "E: Unknown --type '$TYPE'" msgstr "" -#: ../check-support-status.in:152 -msgid "E: Cannot detect dpkg version, assuming wheezy or newer" -msgstr "" - #: ../check-support-status.in:282 msgid "Future end of support for one or more packages" msgstr "" diff -Nru debian-security-support-2019.12.12~deb10u1/po/es.po debian-security-support-2020.04.16~deb10u2/po/es.po --- debian-security-support-2019.12.12~deb10u1/po/es.po 2018-03-16 14:39:59.000000000 +0000 +++ debian-security-support-2020.04.16~deb10u2/po/es.po 2020-02-23 20:51:12.000000000 +0000 @@ -68,11 +68,6 @@ msgid "E: Unknown --type '$TYPE'" msgstr "E: --type '$TYPE' desconocido" -#: ../check-support-status.in:152 -msgid "E: Cannot detect dpkg version, assuming wheezy or newer" -msgstr "" -"E: no se pudo detectar la versión de dpkg, se asume wheezy o más nuevo" - #: ../check-support-status.in:282 msgid "Future end of support for one or more packages" msgstr "El soporte de seguridad finalizará para uno o más paquetes" diff -Nru debian-security-support-2019.12.12~deb10u1/po/fr.po debian-security-support-2020.04.16~deb10u2/po/fr.po --- debian-security-support-2019.12.12~deb10u1/po/fr.po 2018-03-16 14:39:59.000000000 +0000 +++ debian-security-support-2020.04.16~deb10u2/po/fr.po 2020-02-23 20:51:12.000000000 +0000 @@ -47,12 +47,6 @@ msgid "E: Unknown --type '$TYPE'" msgstr "E : --type '$TYPE' non reconnu" -#: ../check-support-status.in:152 -msgid "E: Cannot detect dpkg version, assuming wheezy or newer" -msgstr "" -"E : Impossible d'identifier la version de dpkg, on suppose qu'il " -"s'agit de wheezy ou plus récent" - #: ../check-support-status.in:282 msgid "Future end of support for one or more packages" msgstr "" diff -Nru debian-security-support-2019.12.12~deb10u1/po/it.po debian-security-support-2020.04.16~deb10u2/po/it.po --- debian-security-support-2019.12.12~deb10u1/po/it.po 2019-05-31 15:53:30.000000000 +0000 +++ debian-security-support-2020.04.16~deb10u2/po/it.po 2020-02-23 20:51:12.000000000 +0000 @@ -1,13 +1,13 @@ # Italian translation of debian-security-support debconf messages. # Copyright (C) 2014, debian-security-support package's copyright holder # This file is distributed under the same license as the debian-security-support package. -# Beatrice Torracca , 2014, 2016, 2019. +# Beatrice Torracca , 2014, 2016. msgid "" msgstr "" "Project-Id-Version: debian-security-support\n" "Report-Msgid-Bugs-To: debian-security-support@packages.debian.org\n" "POT-Creation-Date: 2016-06-07 12:13+0200\n" -"PO-Revision-Date: 2019-05-31 17:34+0200\n" +"PO-Revision-Date: 2016-05-22 12:53+0200\n" "Last-Translator: Beatrice Torracca \n" "Language-Team: Italian \n" "Language: it\n" @@ -23,8 +23,8 @@ "Unknown DEBIAN_VERSION $DEBIAN_VERSION. Valid values from " "$DEB_LOWEST_VER_ID and $DEB_NEXT_VER_ID" msgstr "" -"DEBIAN_VERSION $DEBIAN_VERSION sconosciuta. Valori validi da $" -"DEB_LOWEST_VER_ID e $DEB_NEXT_VER_ID" +"DEBIAN_VERSION $DEBIAN_VERSION sconosciuta. Valori validi da " +"$DEB_LOWEST_VER_ID e $DEB_NEXT_VER_ID" #: ../check-support-status.in:63 msgid "Failed to parse the command line parameters" @@ -48,12 +48,6 @@ msgid "E: Unknown --type '$TYPE'" msgstr "E: --type '$TYPE' sconosciuto" -#: ../check-support-status.in:152 -msgid "E: Cannot detect dpkg version, assuming wheezy or newer" -msgstr "" -"E: impossibile rilevare la versione di dpkg, viene supposto sia " -"wheezy o successiva" - #: ../check-support-status.in:282 msgid "Future end of support for one or more packages" msgstr "" diff -Nru debian-security-support-2019.12.12~deb10u1/po/ja.po debian-security-support-2020.04.16~deb10u2/po/ja.po --- debian-security-support-2019.12.12~deb10u1/po/ja.po 2019-06-01 15:39:41.000000000 +0000 +++ debian-security-support-2020.04.16~deb10u2/po/ja.po 2020-02-23 20:51:12.000000000 +0000 @@ -1,14 +1,14 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the debian-security-support package. -# victory , 2014,2016,2019. -# +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the debian-security-support package. +# victory , 2014,2016. +# msgid "" msgstr "" -"Project-Id-Version: debian-security-support 2019.05.15\n" +"Project-Id-Version: debian-security-support 2016.05.11\n" "Report-Msgid-Bugs-To: debian-security-support@packages.debian.org\n" "POT-Creation-Date: 2016-06-07 12:13+0200\n" -"PO-Revision-Date: 2016-06-07 19:13+0900\n" +"PO-Revision-Date: 2016-05-12 16:42+0900\n" "Last-Translator: victory \n" "Language-Team: Japanese \n" "Language: ja\n" @@ -22,8 +22,8 @@ "Unknown DEBIAN_VERSION $DEBIAN_VERSION. Valid values from " "$DEB_LOWEST_VER_ID and $DEB_NEXT_VER_ID" msgstr "" -"DEBIAN_VERSION $DEBIAN_VERSION は不明です。有効な値は $DEB_LOWEST_VER_ID か" -"ら $DEB_NEXT_VER_ID までです" +"DEBIAN_VERSION $DEBIAN_VERSION は不明です。有効な値は " +"$DEB_LOWEST_VER_ID から $DEB_NEXT_VER_ID までです" #: ../check-support-status.in:63 msgid "Failed to parse the command line parameters" @@ -47,10 +47,6 @@ msgid "E: Unknown --type '$TYPE'" msgstr "E: --type '$TYPE' は不明です" -#: ../check-support-status.in:152 -msgid "E: Cannot detect dpkg version, assuming wheezy or newer" -msgstr "E: dpkg のバージョンを検出できません。wheezy 以降だと仮定します" - #: ../check-support-status.in:282 msgid "Future end of support for one or more packages" msgstr "サポートの終了が予定されているパッケージがあります" @@ -106,7 +102,8 @@ msgid "" "* Source:$SRC_NAME, ended on $ALERT_WHEN at version $ALERT_VERSION" msgstr "" -"* ソース:$SRC_NAME は $ALERT_WHEN にバージョン $ALERT_VERSION で終了しました" +"* ソース:$SRC_NAME は $ALERT_WHEN にバージョン $ALERT_VERSION で終了し" +"ました" #: ../check-support-status.in:326 #, sh-format diff -Nru debian-security-support-2019.12.12~deb10u1/po/nl.po debian-security-support-2020.04.16~deb10u2/po/nl.po --- debian-security-support-2019.12.12~deb10u1/po/nl.po 2019-05-31 15:24:06.000000000 +0000 +++ debian-security-support-2020.04.16~deb10u2/po/nl.po 2020-02-23 20:51:12.000000000 +0000 @@ -1,29 +1,29 @@ -# Dutch translation of Debian security support. -# Copyright (C) YEAR Christoph Biedl +# Dutch translation of debian-security-support templates. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the debian-security-support package. -# FIRST AUTHOR , YEAR. -# Frans Spiesschaert , 2019. +# Frans Spiesschaert , 2014, 2016. # msgid "" msgstr "" -"Project-Id-Version: Debian security support\n" +"Project-Id-Version: debian-security-support\n" "Report-Msgid-Bugs-To: debian-security-support@packages.debian.org\n" "POT-Creation-Date: 2016-06-07 12:13+0200\n" -"PO-Revision-Date: 2019-05-22 20:30+0200\n" +"PO-Revision-Date: 2016-05-30 17:49+0200\n" "Last-Translator: Frans Spiesschaert \n" -"Language-Team: Debian Dutch l10n Team \n" +"Language-Team: Debian Dutch l10n Team \n" "Language: nl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Gtranslator 2.91.7\n" +"X-Generator: Gtranslator 2.91.6\n" #: ../check-support-status.in:24 #, sh-format msgid "" -"Unknown DEBIAN_VERSION $DEBIAN_VERSION. Valid values from $DEB_LOWEST_VER_ID " -"and $DEB_NEXT_VER_ID" +"Unknown DEBIAN_VERSION $DEBIAN_VERSION. Valid values from " +"$DEB_LOWEST_VER_ID and $DEB_NEXT_VER_ID" msgstr "" "Onbekende DEBIAN_VERSION $DEBIAN_VERSION. Geldige waarden zijn vanaf " "$DEB_LOWEST_VER_ID en $DEB_NEXT_VER_ID" @@ -50,55 +50,54 @@ msgid "E: Unknown --type '$TYPE'" msgstr "F: Onbekend --type '$TYPE'" -#: ../check-support-status.in:152 -msgid "E: Cannot detect dpkg version, assuming wheezy or newer" -msgstr "" -"F: Kan de dpkg-versie niet opsporen; aangenomen wordt: wheezy of recenter" - #: ../check-support-status.in:282 msgid "Future end of support for one or more packages" -msgstr "Aanstaand einde van de ondersteuning voor een of meer pakketten" +msgstr "" +"Het einde van de beveiligingsondersteuning voor één of meer pakketten " +"is in aantocht" #: ../check-support-status.in:285 msgid "" "Unfortunately, it will be necessary to end security support for some " -"packages before the end of the regular security maintenance life cycle." +"packages before the end of the regular security maintenance life " +"cycle." msgstr "" -"Helaas zal het nodig zijn om de beveiligingsondersteuning voor sommige " -"pakketten te stoppen vóór het einde van de normale levenscyclus van het " -"beveiligingsonderhoud." +"Helaas zal het noodzakelijk zijn om de beveiligingsondersteuning voor " +"sommige pakketten te beëindigen voor het einde van de reguliere " +"onderhoudscyclus inzake beveiliging." #: ../check-support-status.in:288 ../check-support-status.in:298 #: ../check-support-status.in:308 -msgid "The following packages found on this system are affected by this:" -msgstr "" -"De volgende pakketten die op dit systeem aangetroffen werden, worden " -"hierdoor getroffen:" +msgid "" +"The following packages found on this system are affected by this:" +msgstr "De volgende pakketten op dit systeem zijn hierdoor getroffen:" #: ../check-support-status.in:292 msgid "Ended security support for one or more packages" -msgstr "De beveiligingsondersteuning voor een of meer pakketten werd beëindigd" +msgstr "" +"De beveiligingsondersteuning is voor één of meer pakketten gestopt" #: ../check-support-status.in:295 msgid "" "Unfortunately, it has been necessary to end security support for some " -"packages before the end of the regular security maintenance life cycle." +"packages before the end of the regular security maintenance life " +"cycle." msgstr "" -"Helaas was het nodig om de beveiligingsondersteuning voor sommige pakketten " -"te stoppen vóór het einde van de normale levenscyclus van het " -"beveiligingsonderhoud." +"Helaas bleek het noodzakelijk om de beveiligingsondersteuning voor " +"sommige pakketten te beëindigen voor het einde van de reguliere " +"onderhoudscyclus inzake beveiliging." #: ../check-support-status.in:302 msgid "Limited security support for one or more packages" -msgstr "Beperkte beveiligingsondersteuning voor een of meer pakketten" +msgstr "Beperkte beveiligingsondersteuning voor één of meer pakketten" #: ../check-support-status.in:305 msgid "" -"Unfortunately, it has been necessary to limit security support for some " -"packages." +"Unfortunately, it has been necessary to limit security support for " +"some packages." msgstr "" -"Helaas was het nodig om de beveiligingsondersteuning voor sommige pakketten " -"te beperken." +"Helaas bleek het noodzakelijk om de beveiligingsondersteuning voor " +"sommige pakketten te beperken." #: ../check-support-status.in:320 #, sh-format @@ -107,9 +106,11 @@ #: ../check-support-status.in:323 #, sh-format -msgid "* Source:$SRC_NAME, ended on $ALERT_WHEN at version $ALERT_VERSION" +msgid "" +"* Source:$SRC_NAME, ended on $ALERT_WHEN at version $ALERT_VERSION" msgstr "" -"* broncode:$SRC_NAME werd beëindigd op $ALERT_WHEN bij versie $ALERT_VERSION" +"* broncode:$SRC_NAME werd beëindigd op $ALERT_WHEN bij versie " +"$ALERT_VERSION" #: ../check-support-status.in:326 #, sh-format diff -Nru debian-security-support-2019.12.12~deb10u1/po/pl.po debian-security-support-2020.04.16~deb10u2/po/pl.po --- debian-security-support-2019.12.12~deb10u1/po/pl.po 2019-05-27 08:35:22.000000000 +0000 +++ debian-security-support-2020.04.16~deb10u2/po/pl.po 2020-02-23 20:51:12.000000000 +0000 @@ -3,22 +3,22 @@ # This file is distributed under the same license as the debian-security-support package. # # Michał Kułach , 2014. -# Łukasz Dulny , 2016, 2019. +# Łukasz Dulny , 2016. msgid "" msgstr "" "Project-Id-Version: debian-security-support\n" "Report-Msgid-Bugs-To: debian-security-support@packages.debian.org\n" "POT-Creation-Date: 2016-06-07 12:13+0200\n" -"PO-Revision-Date: 2019-05-26 15:21+0200\n" +"PO-Revision-Date: 2016-05-19 18:33+0100\n" "Last-Translator: Łukasz Dulny \n" "Language-Team: Polish \n" "Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10" -" || n%100>=20) ? 1 : 2);\n" -"X-Generator: Lokalize 18.12.3\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n" +"%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: Lokalize 2.0\n" #: ../check-support-status.in:24 #, sh-format @@ -26,8 +26,8 @@ "Unknown DEBIAN_VERSION $DEBIAN_VERSION. Valid values from " "$DEB_LOWEST_VER_ID and $DEB_NEXT_VER_ID" msgstr "" -"Nieznane DEBIAN_VERSION $DEBIAN_VERSION. Prawidłowe wartości z" -" $DEB_LOWEST_VER_ID i $DEB_NEXT_VER_ID" +"Nieznane DEBIAN_VERSION $DEBIAN_VERSION. Prawidłowe wartości z " +"$DEB_LOWEST_VER_ID i $DEB_NEXT_VER_ID" #: ../check-support-status.in:63 msgid "Failed to parse the command line parameters" @@ -51,10 +51,6 @@ msgid "E: Unknown --type '$TYPE'" msgstr "E: Nieznane --type '$TYPE'" -#: ../check-support-status.in:152 -msgid "E: Cannot detect dpkg version, assuming wheezy or newer" -msgstr "E: Nie można wykryć wersji dpkg, przyjęto że jest to wheezy lub nowsza" - #: ../check-support-status.in:282 msgid "Future end of support for one or more packages" msgstr "Zbliża się koniec wsparcia dla co najmniej jednego pakietu" @@ -65,13 +61,16 @@ "packages before the end of the regular security maintenance life " "cycle." msgstr "" -"Niestety, konieczne będzie zakończenie wsparcia bezpieczeństwa dla pewnych" -" pakietów jeszcze przed upływem terminu zakończenia wsparcia dystrybucji." +"Niestety, konieczne będzie zakończenie wsparcia bezpieczeństwa dla " +"pewnych pakietów jeszcze przed upływem terminu zakończenia wsparcia " +"dystrybucji." #: ../check-support-status.in:288 ../check-support-status.in:298 #: ../check-support-status.in:308 -msgid "The following packages found on this system are affected by this:" -msgstr "Dotyczy to następujących pakietów zainstalowanych w tym systemie:" +msgid "" +"The following packages found on this system are affected by this:" +msgstr "" +"Dotyczy to następujących pakietów zainstalowanych w tym systemie:" #: ../check-support-status.in:292 msgid "Ended security support for one or more packages" @@ -83,20 +82,22 @@ "packages before the end of the regular security maintenance life " "cycle." msgstr "" -"Niestety, konieczne było zakończenie wsparcia bezpieczeństwa dla pewnych" -" pakietów jeszcze przed upływem terminu zakończenia wsparcia dystrybucji." +"Niestety, konieczne było zakończenie wsparcia bezpieczeństwa dla " +"pewnych pakietów jeszcze przed upływem terminu zakończenia wsparcia " +"dystrybucji." #: ../check-support-status.in:302 msgid "Limited security support for one or more packages" -msgstr "Ograniczone wsparcia bezpieczeństwa dla co najmniej jednego pakietu" +msgstr "" +"Ograniczone wsparcia bezpieczeństwa dla co najmniej jednego pakietu" #: ../check-support-status.in:305 msgid "" "Unfortunately, it has been necessary to limit security support for " "some packages." msgstr "" -"Niestety, konieczne było ograniczenie wsparcia bezpieczeństwa dla pewnych" -" pakietów." +"Niestety, konieczne było ograniczenie wsparcia bezpieczeństwa dla " +"pewnych pakietów." #: ../check-support-status.in:320 #, sh-format @@ -105,9 +106,11 @@ #: ../check-support-status.in:323 #, sh-format -msgid "* Source:$SRC_NAME, ended on $ALERT_WHEN at version $ALERT_VERSION" +msgid "" +"* Source:$SRC_NAME, ended on $ALERT_WHEN at version $ALERT_VERSION" msgstr "" -"* Pakiet źródłowy:$SRC_NAME, zakończono $ALERT_WHEN na wersji $ALERT_VERSION" +"* Pakiet źródłowy:$SRC_NAME, zakończono $ALERT_WHEN na wersji " +"$ALERT_VERSION" #: ../check-support-status.in:326 #, sh-format diff -Nru debian-security-support-2019.12.12~deb10u1/po/pt.po debian-security-support-2020.04.16~deb10u2/po/pt.po --- debian-security-support-2019.12.12~deb10u1/po/pt.po 2019-05-24 11:46:11.000000000 +0000 +++ debian-security-support-2020.04.16~deb10u2/po/pt.po 2020-02-23 20:51:12.000000000 +0000 @@ -2,21 +2,21 @@ # Copyright (C) 2014 THE debian-security-support'S COPYRIGHT HOLDER # This file is distributed under the same license as the debian-security-support package. # -# Américo Monteiro , 2014 - 2016, 2019. +# Américo Monteiro , 2014 - 2016. msgid "" msgstr "" "Project-Id-Version: debian-security-support 2016.05.11\n" "Report-Msgid-Bugs-To: debian-security-support@packages.debian.org\n" "POT-Creation-Date: 2016-06-07 12:13+0200\n" -"PO-Revision-Date: 2019-05-22 21:34+0000\n" +"PO-Revision-Date: 2016-05-12 21:40+0100\n" "Last-Translator: Américo Monteiro \n" -"Language-Team: Portuguese <>\n" +"Language-Team: Portuguese \n" "Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Lokalize 2.0\n" +"X-Generator: Lokalize 1.4\n" #: ../check-support-status.in:24 #, sh-format @@ -24,8 +24,8 @@ "Unknown DEBIAN_VERSION $DEBIAN_VERSION. Valid values from " "$DEB_LOWEST_VER_ID and $DEB_NEXT_VER_ID" msgstr "" -"Desconhecido DEBIAN_VERSION $DEBIAN_VERSION. Valores válidos a partir de " -"$DEB_LOWEST_VER_ID e $DEB_NEXT_VER_ID" +"Desconhecido DEBIAN_VERSION $DEBIAN_VERSION. Valores válidos a partir " +"de $DEB_LOWEST_VER_ID e $DEB_NEXT_VER_ID" #: ../check-support-status.in:63 msgid "Failed to parse the command line parameters" @@ -49,12 +49,6 @@ msgid "E: Unknown --type '$TYPE'" msgstr "E: Desconhecido --type '$TYPE'" -#: ../check-support-status.in:152 -msgid "E: Cannot detect dpkg version, assuming wheezy or newer" -msgstr "" -"E: Incapaz de detectar a versão do dpkg, a assumir wheezy ou mais " -"recente" - #: ../check-support-status.in:282 msgid "Future end of support for one or more packages" msgstr "Futuro final de suporte para um ou mais pacotes" @@ -71,8 +65,10 @@ #: ../check-support-status.in:288 ../check-support-status.in:298 #: ../check-support-status.in:308 -msgid "The following packages found on this system are affected by this:" -msgstr "São afectados por isto os seguintes pacotes encontrados neste sistema:" +msgid "" +"The following packages found on this system are affected by this:" +msgstr "" +"São afectados por isto os seguintes pacotes encontrados neste sistema:" #: ../check-support-status.in:292 msgid "Ended security support for one or more packages" @@ -107,8 +103,10 @@ #: ../check-support-status.in:323 #, sh-format -msgid "* Source:$SRC_NAME, ended on $ALERT_WHEN at version $ALERT_VERSION" -msgstr "* Fonte:$SRC_NAME, terminou em $ALERT_WHEN na versão $ALERT_VERSION" +msgid "" +"* Source:$SRC_NAME, ended on $ALERT_WHEN at version $ALERT_VERSION" +msgstr "" +"* Fonte:$SRC_NAME, terminou em $ALERT_WHEN na versão $ALERT_VERSION" #: ../check-support-status.in:326 #, sh-format @@ -132,4 +130,3 @@ #, sh-format msgid " - $BIN_NAME (installed version: $BIN_VERSION)" msgstr " - $BIN_NAME (versão instalada: $BIN_VERSION)" - diff -Nru debian-security-support-2019.12.12~deb10u1/po/pt_BR.po debian-security-support-2020.04.16~deb10u2/po/pt_BR.po --- debian-security-support-2019.12.12~deb10u1/po/pt_BR.po 2019-05-30 16:57:41.000000000 +0000 +++ debian-security-support-2020.04.16~deb10u2/po/pt_BR.po 2020-02-23 20:51:12.000000000 +0000 @@ -1,17 +1,17 @@ # Debconf translations for debian-security-support. # Copyright (C) 2014 THE debian-security-support'S COPYRIGHT HOLDER # This file is distributed under the same license as the debian-security-support package. -# Adriano Rafael Gomes , 2014-2019. +# Adriano Rafael Gomes , 2014-2016. # msgid "" msgstr "" "Project-Id-Version: debian-security-support\n" "Report-Msgid-Bugs-To: debian-security-support@packages.debian.org\n" "POT-Creation-Date: 2016-06-07 12:13+0200\n" -"PO-Revision-Date: 2019-05-22 21:28-0300\n" -"Last-Translator: Adriano Rafael Gomes \n" -"Language-Team: Brazilian Portuguese \n" +"PO-Revision-Date: 2016-05-12 09:02-0300\n" +"Last-Translator: Adriano Rafael Gomes \n" +"Language-Team: Brazilian Portuguese \n" "Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,8 +20,8 @@ #: ../check-support-status.in:24 #, sh-format msgid "" -"Unknown DEBIAN_VERSION $DEBIAN_VERSION. Valid values from $DEB_LOWEST_VER_ID " -"and $DEB_NEXT_VER_ID" +"Unknown DEBIAN_VERSION $DEBIAN_VERSION. Valid values from " +"$DEB_LOWEST_VER_ID and $DEB_NEXT_VER_ID" msgstr "" "DEBIAN_VERSION $DEBIAN_VERSION desconhecida. Valores válidos entre " "$DEB_LOWEST_VER_ID e $DEB_NEXT_VER_ID" @@ -48,11 +48,6 @@ msgid "E: Unknown --type '$TYPE'" msgstr "E: --type '$TYPE' desconhecido" -#: ../check-support-status.in:152 -msgid "E: Cannot detect dpkg version, assuming wheezy or newer" -msgstr "" -"E: Não pode detectar a versão do dpkg, assumindo wheezy ou mais recente" - #: ../check-support-status.in:282 msgid "Future end of support for one or more packages" msgstr "Futuro fim de suporte para um ou mais pacotes" @@ -60,15 +55,19 @@ #: ../check-support-status.in:285 msgid "" "Unfortunately, it will be necessary to end security support for some " -"packages before the end of the regular security maintenance life cycle." +"packages before the end of the regular security maintenance life " +"cycle." msgstr "" -"Infelizmente, será necessário encerrar o suporte de segurança para alguns " -"pacotes antes do final do ciclo de vida de manutenção de segurança regular." +"Infelizmente, será necessário encerrar o suporte de segurança para " +"alguns pacotes antes do final do ciclo de vida de manutenção de " +"segurança regular." #: ../check-support-status.in:288 ../check-support-status.in:298 #: ../check-support-status.in:308 -msgid "The following packages found on this system are affected by this:" -msgstr "Os seguintes pacotes encontrados neste sistema são afetados por isso:" +msgid "" +"The following packages found on this system are affected by this:" +msgstr "" +"Os seguintes pacotes encontrados neste sistema são afetados por isso:" #: ../check-support-status.in:292 msgid "Ended security support for one or more packages" @@ -77,10 +76,12 @@ #: ../check-support-status.in:295 msgid "" "Unfortunately, it has been necessary to end security support for some " -"packages before the end of the regular security maintenance life cycle." +"packages before the end of the regular security maintenance life " +"cycle." msgstr "" -"Infelizmente, foi necessário encerrar o suporte de segurança para alguns " -"pacotes antes do final do ciclo de vida de manutenção de segurança regular." +"Infelizmente, foi necessário encerrar o suporte de segurança para " +"alguns pacotes antes do final do ciclo de vida de manutenção de " +"segurança regular." #: ../check-support-status.in:302 msgid "Limited security support for one or more packages" @@ -88,11 +89,11 @@ #: ../check-support-status.in:305 msgid "" -"Unfortunately, it has been necessary to limit security support for some " -"packages." +"Unfortunately, it has been necessary to limit security support for " +"some packages." msgstr "" -"Infelizmente, foi necessário limitar o suporte de segurança para alguns " -"pacotes." +"Infelizmente, foi necessário limitar o suporte de segurança para " +"alguns pacotes." #: ../check-support-status.in:320 #, sh-format @@ -101,8 +102,10 @@ #: ../check-support-status.in:323 #, sh-format -msgid "* Source:$SRC_NAME, ended on $ALERT_WHEN at version $ALERT_VERSION" -msgstr "* Fonte:$SRC_NAME, encerrado em $ALERT_WHEN na versão $ALERT_VERSION" +msgid "" +"* Source:$SRC_NAME, ended on $ALERT_WHEN at version $ALERT_VERSION" +msgstr "" +"* Fonte:$SRC_NAME, encerrado em $ALERT_WHEN na versão $ALERT_VERSION" #: ../check-support-status.in:326 #, sh-format diff -Nru debian-security-support-2019.12.12~deb10u1/po/ru.po debian-security-support-2020.04.16~deb10u2/po/ru.po --- debian-security-support-2019.12.12~deb10u1/po/ru.po 2019-05-22 17:08:56.000000000 +0000 +++ debian-security-support-2020.04.16~deb10u2/po/ru.po 2020-02-23 20:51:12.000000000 +0000 @@ -1,22 +1,22 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the debian-security-support package. # -# Yuri Kozlov , 2014, 2016, 2019. +# Yuri Kozlov , 2014, 2016. msgid "" msgstr "" -"Project-Id-Version: debian-security-support 2019.05.15\n" +"Project-Id-Version: debian-security-support 2016.05.11\n" "Report-Msgid-Bugs-To: debian-security-support@packages.debian.org\n" "POT-Creation-Date: 2016-06-07 12:13+0200\n" -"PO-Revision-Date: 2019-05-22 18:57+0300\n" +"PO-Revision-Date: 2016-05-14 07:43+0300\n" "Last-Translator: Yuri Kozlov \n" "Language-Team: Russian \n" "Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<" -"=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -"X-Generator: Lokalize 2.0\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 " +"&& n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: Lokalize 1.5\n" #: ../check-support-status.in:24 #, sh-format @@ -49,10 +49,6 @@ msgid "E: Unknown --type '$TYPE'" msgstr "E: Неизвестный --type «$TYPE»" -#: ../check-support-status.in:152 -msgid "E: Cannot detect dpkg version, assuming wheezy or newer" -msgstr "E: Не удалось определить версию dpkg, предполагается wheezy или новее" - #: ../check-support-status.in:282 msgid "Future end of support for one or more packages" msgstr "" @@ -71,7 +67,8 @@ #: ../check-support-status.in:288 ../check-support-status.in:298 #: ../check-support-status.in:308 -msgid "The following packages found on this system are affected by this:" +msgid "" +"The following packages found on this system are affected by this:" msgstr "Это относится к следующим пакетам в системе:" #: ../check-support-status.in:292 @@ -111,8 +108,10 @@ #: ../check-support-status.in:323 #, sh-format -msgid "* Source:$SRC_NAME, ended on $ALERT_WHEN at version $ALERT_VERSION" -msgstr "* Источник:$SRC_NAME, окончание $ALERT_WHEN на версии $ALERT_VERSION" +msgid "" +"* Source:$SRC_NAME, ended on $ALERT_WHEN at version $ALERT_VERSION" +msgstr "" +"* Источник:$SRC_NAME, окончание $ALERT_WHEN на версии $ALERT_VERSION" #: ../check-support-status.in:326 #, sh-format @@ -136,4 +135,3 @@ #, sh-format msgid " - $BIN_NAME (installed version: $BIN_VERSION)" msgstr " - $BIN_NAME (установленная версия: $BIN_VERSION)" - diff -Nru debian-security-support-2019.12.12~deb10u1/po/sv.po debian-security-support-2020.04.16~deb10u2/po/sv.po --- debian-security-support-2019.12.12~deb10u1/po/sv.po 2019-05-24 11:49:11.000000000 +0000 +++ debian-security-support-2020.04.16~deb10u2/po/sv.po 2020-02-23 20:51:12.000000000 +0000 @@ -1,32 +1,30 @@ -# Swedish translations for debian-security-support package -# Svenska översättningar för paket debian-security-support. -# Copyright (C) 2019 Christoph Biedl +# Translation of debian-security-support debconf template to Swedish +# Copyright (C) 2014 Martin Bagge # This file is distributed under the same license as the debian-security-support package. -# Andreas Rönnquist , 2019. # +# Martin Bagge , 2014 msgid "" msgstr "" -"Project-Id-Version: \n" +"Project-Id-Version: debian-security-support\n" "Report-Msgid-Bugs-To: debian-security-support@packages.debian.org\n" "POT-Creation-Date: 2016-06-07 12:13+0200\n" -"PO-Revision-Date: 2019-05-22 15:31+0200\n" -"Last-Translator: Andreas Rönnquist \n" -"Language-Team: Swedish\n" -"Language: sv\n" +"PO-Revision-Date: 2014-09-25 10:30+0100\n" +"Last-Translator: Martin Bagge / brother \n" +"Language-Team: Swedish \n" +"Language: Swedish\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Poedit 1.8.11\n" +"X-Generator: Poedit 1.5.4\n" #: ../check-support-status.in:24 #, sh-format msgid "" -"Unknown DEBIAN_VERSION $DEBIAN_VERSION. Valid values from $DEB_LOWEST_VER_ID " -"and $DEB_NEXT_VER_ID" +"Unknown DEBIAN_VERSION $DEBIAN_VERSION. Valid values from " +"$DEB_LOWEST_VER_ID and $DEB_NEXT_VER_ID" msgstr "" -"Okänd DEBIAN_VERSION $DEBIAN_VERSION. Giltiga värden från $DEB_LOWEST_VER_ID " -"och $DEB_NEXT_VER_ID" +"Okänd DEBIAN_VERSION $DEBIAN_VERSION. Giltiga värden från " +"$DEB_LOWEST_VER_ID och $DEB_NEXT_VER_ID" #: ../check-support-status.in:63 msgid "Failed to parse the command line parameters" @@ -50,10 +48,6 @@ msgid "E: Unknown --type '$TYPE'" msgstr "E: Okänd --type '$TYPE'" -#: ../check-support-status.in:152 -msgid "E: Cannot detect dpkg version, assuming wheezy or newer" -msgstr "E: Kan inte detektera dpkg-version, antar wheezy eller nyare" - #: ../check-support-status.in:282 msgid "Future end of support for one or more packages" msgstr "Framtida slut på support för ett eller flera paket" @@ -61,39 +55,41 @@ #: ../check-support-status.in:285 msgid "" "Unfortunately, it will be necessary to end security support for some " -"packages before the end of the regular security maintenance life cycle." +"packages before the end of the regular security maintenance life " +"cycle." msgstr "" -"Tyvärr kommer det att bli nödvändigt att avsluta säkerhetsstödet för vissa " -"paket innan slutet på livscykeln för regelbundet säkerhetsunderhåll." +"Tyvärr kommer det att bli nödvändigt att avsluta säkerhetsstödet för " +"vissa paket innan slutet på livscykeln för regelbundet " +"säkerhetsunderhåll." #: ../check-support-status.in:288 ../check-support-status.in:298 #: ../check-support-status.in:308 -msgid "The following packages found on this system are affected by this:" -msgstr "De följande paketen på detta system påverkas av detta:" +msgid "" +"The following packages found on this system are affected by this:" +msgstr "Följande paket på detta system berörs av detta:" #: ../check-support-status.in:292 msgid "Ended security support for one or more packages" -msgstr "Avslutat säkerhetsstöd för ett eller flera paket" +msgstr "Slut på säkerhetsstöd för ett eller flera paket" #: ../check-support-status.in:295 msgid "" "Unfortunately, it has been necessary to end security support for some " -"packages before the end of the regular security maintenance life cycle." +"packages before the end of the regular security maintenance life " +"cycle." msgstr "" -"Tyvärr har det blivit nödvändigt att avsluta säkerhetsstödet för vissa paket " -"innan slutet på livscykeln för regelbundet säkerhetsunderhåll." +"Tyvärr kan vi inte tillhandahålla säkerhetsuppdateringar för vissa " +"paket trots att den vanliga säkerhetscykeln inte är slut." #: ../check-support-status.in:302 msgid "Limited security support for one or more packages" -msgstr "Begränsad säkerhetsstöd för ett eller flera paket" +msgstr "Begränsad säkerhetsstöd för ett eller fler paket" #: ../check-support-status.in:305 msgid "" -"Unfortunately, it has been necessary to limit security support for some " -"packages." -msgstr "" -"Tyvärr har det blivit nödvändigt att begränsa säkerhetsstödet för vissa " -"paket." +"Unfortunately, it has been necessary to limit security support for " +"some packages." +msgstr "Tyvärr måste vi begränsa säkerhetsstödet för vissa paket." #: ../check-support-status.in:320 #, sh-format @@ -102,8 +98,10 @@ #: ../check-support-status.in:323 #, sh-format -msgid "* Source:$SRC_NAME, ended on $ALERT_WHEN at version $ALERT_VERSION" -msgstr "* Source:$SRC_NAME, avslutades $ALERT_WHEN med version $ALERT_VERSION" +msgid "" +"* Source:$SRC_NAME, ended on $ALERT_WHEN at version $ALERT_VERSION" +msgstr "" +"* Source:$SRC_NAME, avslutades $ALERT_WHEN med version $ALERT_VERSION" #: ../check-support-status.in:326 #, sh-format diff -Nru debian-security-support-2019.12.12~deb10u1/security-support-ended.deb10 debian-security-support-2020.04.16~deb10u2/security-support-ended.deb10 --- debian-security-support-2019.12.12~deb10u1/security-support-ended.deb10 2019-04-25 09:36:12.000000000 +0000 +++ debian-security-support-2020.04.16~deb10u2/security-support-ended.deb10 2020-04-16 00:06:14.000000000 +0000 @@ -11,3 +11,4 @@ # In the program's output, this is prefixed with "Details:" # none yet (please remove this line once this is not true anymore) +libperlspeak-perl 2.01-2 2020-04-16 https://bugs.debian.org/954238 (CVE-2020-10674) and https://bugs.debian.org/954297 and 954298 diff -Nru debian-security-support-2019.12.12~deb10u1/security-support-ended.deb7 debian-security-support-2020.04.16~deb10u2/security-support-ended.deb7 --- debian-security-support-2019.12.12~deb10u1/security-support-ended.deb7 2018-12-29 17:46:23.000000000 +0000 +++ debian-security-support-2020.04.16~deb10u2/security-support-ended.deb7 1970-01-01 00:00:00.000000000 +0000 @@ -1,66 +0,0 @@ - -# List of packages whose security support ends before the distribution EOL - -# File format: Columns, separated by one or more space characters -# 1. source package name -# 2. last version with support -# Important: If there have been binNMUs, enter the highest version -# number used -# 3. Date when support ended or will end, in the form YYYY-mm-dd -# 4. Descriptive text or URL with more details (optional) -# In the program's output, this is prefixed with "Details:" - -chromium-browser 37.0.2062.120-1~deb7u1 2015-01-31 https://lists.debian.org/debian-security-announce/2015/msg00031.html -iceape 2.7.12-1+alpha 2013-12-16 https://lists.debian.org/debian-security-announce/2013/msg00233.html -ruby-actionmailer-2.3 2.3.14-3 2014-07-19 https://lists.debian.org/debian-security-announce/2014/msg00164.html -ruby-actionpack-2.3 2.3.14-5 2014-07-19 https://lists.debian.org/debian-security-announce/2014/msg00164.html -ruby-activerecord-2.3 2.3.14-6 2014-07-19 https://lists.debian.org/debian-security-announce/2014/msg00164.html -ruby-activeresource-2.3 2.3.14-3 2014-07-19 https://lists.debian.org/debian-security-announce/2014/msg00164.html -ruby-actionmailer-2.3 2.3.14-3 2014-07-19 https://lists.debian.org/debian-security-announce/2014/msg00164.html -ruby-activesupport-2.3 2.3.14-7 2014-07-19 https://lists.debian.org/debian-security-announce/2014/msg00164.html -ruby-rails-2.3 2.3.14-4 2014-07-19 https://lists.debian.org/debian-security-announce/2014/msg00164.html -redmine 1.4.4+dfsg1-2+deb7u1 2014-07-19 Depends on ruby-rails-2.3 which is not supported -tomcat6 6.0.45+dfsg-1~deb7u1 2016-12-31 https://tomcat.apache.org/tomcat-60-eol.html -typo3-src 4.5.19+dfsg1-5+wheezy4 2015-07-23 https://lists.debian.org/debian-security-announce/2015/msg00210.html -virtualbox 4.1.42-dfsg-1+deb7u1 2016-01-27 https://lists.debian.org/debian-security-announce/2016/msg00024.html - -# Packages below are no longer supported in Wheezy during the LTS period -libv8 3.8.9.20-2 2016-02-06 https://lists.debian.org/debian-lts/2015/08/msg00035.html -mantis 1.2.18-1 2016-02-06 Not supported in Debian LTS (https://lists.debian.org/debian-lts/2015/11/msg00019.html) -mediawiki 1:1.19.20+dfsg-0+deb7u3 2016-04-26 Not supported in Wheezy nor Jessie (https://www.debian.org/releases/jessie/amd64/release-notes/ch-information.html#mediawiki-security) -movabletype-opensource 5.1.4+dfsg-4+deb7u3 2016-02-06 Not supported in Debian LTS (http://lists.debian.org/20151104190529.GY7054@urchin.earth.li) -openjdk-6 6b38-1.13.10-1~deb7u1 2016-04-15 Not supported in Wheezy LTS https://lists.debian.org/debian-lts/2016/02/msg00153.html -openswan 1:2.6.37-3 2016-02-06 Not supported in Debian LTS (https://lists.debian.org/debian-lts/2015/11/msg00019.html) -sogo 1.3.16-1 2016-05-19 Not supported in Debian LTS (https://lists.debian.org/debian-lts/2016/05/msg00197.html) -trn 3.6-24 2016-07-10 Not supported in Debian LTS (https://bugs.debian.org/830294) -vlc 2.0.3-5+deb7u2 2016-02-06 Not supported in Debian LTS (https://lists.debian.org/debian-lts/2015/11/msg00049.html) -# Openstack support dropped -glance 2012.1.1-5 2016-02-06 Not supported in Debian LTS (https://lists.debian.org/debian-lts/2015/11/msg00024.html) -horizon 2012.1.1-10 2016-02-06 Not supported in Debian LTS (https://lists.debian.org/debian-lts/2015/11/msg00024.html) -keystone 2012.1.1-13+wheezy1 2016-02-06 Not supported in Debian LTS (https://lists.debian.org/debian-lts/2015/11/msg00024.html) -nova 2012.1.1-18 2016-02-06 Not supported in Debian LTS (https://lists.debian.org/debian-lts/2015/11/msg00024.html) -python-keystoneclient 2012.1-3+deb7u1 2016-02-06 Not supported in Debian LTS (https://lists.debian.org/debian-lts/2015/11/msg00024.html) -python-novaclient 1:2012.1-4 2016-02-06 Not supported in Debian LTS (https://lists.debian.org/debian-lts/2015/11/msg00024.html) -swift 1.4.8-2+deb7u1 2016-02-06 Not supported in Debian LTS (https://lists.debian.org/debian-lts/2015/11/msg00024.html) -# End Openstack support dropped - -inspircd 2.0.5-1+deb7u2 2016-09-13 Not supported in Debian LTS (https://lists.debian.org/debian-lts/2016/09/msg00052.html) -matrixssl 1.8.8-1 2016-09-08 Not supported in Debian LTS (https://lists.debian.org/debian-lts/2016/09/msg00030.html) -teeworlds 0.6.1+dfsg-1 2016-11-18 Games are not supported in Wheezy - -kfreebsd-8 8.3-6+deb7u1 2016-02-06 Not supported in Debian LTS -kfreebsd-9 9.0-10+deb70.10 2016-02-06 Not supported in Debian LTS -ioquake3 1.36+svn2287-1 2017-03-15 Not supported in Debian LTS (https://lists.debian.org/debian-lts/2017/03/msg00075.html) -autotrace 0.31.1-16 2017-06-01 Not supported in Debian LTS (https://lists.debian.org/debian-lts/2017/05/msg00124.html) -teamspeak-server 2.0.24.1+debian-1.1 2017-07-31 Not supported in Debian LTS (non-free) -teamspeak-client 2.0.32-3.1 2017-07-31 Not supported in Debian LTS (non-free) -libstruts1.2-java 1.2.9-5+deb7u2 2017-09-23 Not supported in Debian LTS -nvidia-graphics-drivers 304.131-1 2017-09-24 Not supported in Debian LTS (non-free) -glassfish 1:2.1.1-b31g-3 2017-09-26 Not supported in Debian LTS -jbossas4 4.2.3.GA-7 2017-10-31 Not supported in Debian LTS -libnet-ping-external-perl 0.13-1 2017-12-21 Not supported in Debian LTS (https://lists.debian.org/debian-lts/2017/12/threads.html#00073) -mp3gain 1.5.2-r2-2+deb7u1 2017-12-21 Not supported in Debian LTS (https://lists.debian.org/debian-lts/2017/12/msg00086.html) -tor 0.2.4.29-1 2017-12-28 Not supported in Debian LTS (https://lists.debian.org/debian-lts/2017/12/msg00004.html) -jasperreports 4.1.3+dfsg-1 2018-01-12 Not supported in Debian LTS (https://lists.debian.org/debian-lts/2017/12/msg00088.html) -frontaccounting 2.2.10-3.1 2018-02-16 Not supported in Debian LTS (https://lists.debian.org/87sha0j4tz.fsf@curie.anarc.at) -xulrunner 24.8.1esr-2~deb7u1 2018-04-19 Not supported in Debian LTS (no information about remaining CVE available) diff -Nru debian-security-support-2019.12.12~deb10u1/security-support-ended.deb8 debian-security-support-2020.04.16~deb10u2/security-support-ended.deb8 --- debian-security-support-2019.12.12~deb10u1/security-support-ended.deb8 2019-11-15 21:00:31.000000000 +0000 +++ debian-security-support-2020.04.16~deb10u2/security-support-ended.deb8 2020-04-16 00:07:30.000000000 +0000 @@ -32,3 +32,8 @@ nasm-mozilla 0 2019-01-01 Only provided as build dependency for Firefox/Thunderbird >= 68 nodejs-mozilla 0 2019-01-01 Only provided as build dependency for Firefox/Thunderbird >= 68 libqb 0.11.1-2 2019-11-15 Leaf package, no upstream support for this version +nethack 3.4.3-15 2019-12-30 https://lists.debian.org/debian-lts/2019/12/msg00062.html +nodejs 0.10.29~dfsg-2 2020-02-20 https://lists.debian.org/debian-lts/2020/02/msg00045.html and https://bugs.debian.org/931376 +xen 4.4.4lts5-0+deb8u1 2020-03-02 https://lists.debian.org/debian-lts/2020/03/msg00020.html +tor 0.2.5.16-1 2020-03-20 https://lists.debian.org/debian-security-announce/2020/msg00047.html +libperlspeak-perl 2.01-2 2020-04-16 https://bugs.debian.org/954238 (CVE-2020-10674) and https://bugs.debian.org/954297 diff -Nru debian-security-support-2019.12.12~deb10u1/security-support-ended.deb9 debian-security-support-2020.04.16~deb10u2/security-support-ended.deb9 --- debian-security-support-2019.12.12~deb10u1/security-support-ended.deb9 2019-11-15 21:02:03.000000000 +0000 +++ debian-security-support-2020.04.16~deb10u2/security-support-ended.deb9 2020-04-16 00:04:42.000000000 +0000 @@ -14,4 +14,8 @@ jasperreports 4.1.3+dfsg-3 2017-12-09 https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=880467#10 nasm-mozilla 0 2019-01-01 Only provided as build dependency for Firefox/Thunderbird >= 68 nodejs-mozilla 0 2019-01-01 Only provided as build dependency for Firefox/Thunderbird >= 68 -chromium 73.0.3683.75-1~deb9u1 2019-11-10 https://lists.debian.org/debian-security-announce/2019/msg00214.html +chromium 73.0.3683.75-1~deb9u1 2019-11-10 https://lists.debian.org/debian-security-announce/2019/msg00214.html +xen 4.8.5.final+shim4.10.4-1+deb9u12 2020-01-13 https://lists.debian.org/debian-security-announce/2020/msg00005.html +nodejs 0.10.29~dfsg-2 2020-02-20 https://lists.debian.org/debian-lts/2020/02/msg00045.html and https://bugs.debian.org/931376 +tor 0.2.9.16-1 2020-03-20 https://lists.debian.org/debian-security-announce/2020/msg00047.html +libperlspeak-perl 2.01-2 2020-04-16 https://bugs.debian.org/954238 (CVE-2020-10674) and https://bugs.debian.org/954297 and 954299 diff -Nru debian-security-support-2019.12.12~deb10u1/security-support-limited debian-security-support-2020.04.16~deb10u2/security-support-limited --- debian-security-support-2019.12.12~deb10u1/security-support-limited 2019-11-25 16:36:49.000000000 +0000 +++ debian-security-support-2020.04.16~deb10u2/security-support-limited 2020-03-15 09:58:34.000000000 +0000 @@ -7,7 +7,7 @@ # In the program's output, this is prefixed with "Details:" adns Stub resolver that should only be used with trusted recursors -binutils Not covered by security support +binutils Only suitable for trusted content; see https://lists.debian.org/msgid-search/87lfqsomtg.fsf@mid.deneb.enyo.de ganglia See README.Debian.security, only supported behind an authenticated HTTP zone, #702775 ganglia-web See README.Debian.security, only supported behind an authenticated HTTP zone, #702776 glpi Only supported behind an authenticated HTTP zone for trusted users @@ -28,3 +28,4 @@ webkitgtk No security support upstream and backports not feasible, only for use on trusted content wine-gecko-2.21 Not covered by security support, see https://bugs.debian.org/804058 wine-gecko-2.24 Not covered by security support, see https://bugs.debian.org/804058 +zoneminder See README.Debian.security, only supported behind an authenticated HTTP zone, #922724 diff -Nru debian-security-support-2019.12.12~deb10u1/t/check-support-status.t debian-security-support-2020.04.16~deb10u2/t/check-support-status.t --- debian-security-support-2019.12.12~deb10u1/t/check-support-status.t 2018-03-16 14:39:59.000000000 +0000 +++ debian-security-support-2020.04.16~deb10u2/t/check-support-status.t 2020-02-21 13:48:56.000000000 +0000 @@ -855,6 +855,76 @@ ); } +diag ('exempt packages from listing'); + +foreach my $awk (@AWKs) { + diag ("exempt ($awk)"); + + my $tb = Testbed->new ($dpkg_version); + my ($list_ended, $list_limited, $query_list, $statusdb_file) = $tb->files; + my $exe = $tb->exe ( + $awk, + [ + '--type', 'limited', + '--no-heading', + '--list', $list_limited, + '--status-db', $statusdb_file, + '--except', 'hello,binutils-common', + ], + ); + + write_file ($list_limited, <<__EOS__); +binutils lorem ipsum dolor sit amet +php5 See README.Debian.security for the PHP security policy +__EOS__ + mock_query_list ( + $query_list, + [ + [ 'ioi', 'binutils', '2.34-2' ], + [ 'ioi', 'binutils-common:amd64', '2.34-2', 'binutils' ], + [ 'ioi', 'php5', '5.3.3-7+squeeze19' ], + ], + ); + + # run a first time + my $run = Test::Command->new ('cmd' => $exe); + $run->run; + $run->exit_is_num (0); + + my ($stdout, $stderr) = stdout_n_stderr ($run); + $stderr and diag ("stderr:\n" . $stderr); + my $expect_stdout = <<__EOS__; + +* Source:binutils + Details: lorem ipsum dolor sit amet + Affected binary package: + - binutils (installed version: 2.34-2) + +* Source:php5 + Details: See README.Debian.security for the PHP security policy + Affected binary package: + - php5 (installed version: 5.3.3-7+squeeze19) +__EOS__ + eq_or_diff ( + $stdout, + $expect_stdout, + 'stdout' + ); + + if (ok (-f $statusdb_file, 'status db file was created')) { + my $got = read_file ($statusdb_file); + my $expect = <<__EOS__; +binutils/2.34-2 +php5/5.3.3-7+squeeze19 +__EOS__ + eq_or_diff ( + $got, + $expect, + 'status db file content', + ); + } +} + done_testing; exit 0;