[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Bug#823911: jessie-pu: package debian-security-support/2016.05.09+nmu1~deb8u1



El 27/05/16 a las 18:17, Adam D. Barratt escribió:
> Control: tags -1 + confirmed
> 
> On Tue, 2016-05-10 at 12:41 +0200, Santiago Ruano Rincón wrote:
> > Please find attached the debdiff of a debian-security-support between
> > current version in Jessie and 2016.05.09+nmu1~deb8u1. The new version:
> > * updates the list of packages with particular support conditions
> > * updates French and Spanish l10n.
> > * includes a new --type earlyend to warn the user about upcoming EOLs.
> > * closes fixes such as:
> > 
> > https://bugs.debian.org/819493 FTBFS in jessie.
> > https://bugs.debian.org/762594 Unify binary package along all suites.
> > https://bugs.debian.org/809249 Solve missing help
> > 
> > This version has been uploaded to unstable and wheezy-security.
> 
> Please go ahead.
> 
> Regards,
> 
> Adam
> 

Hi Adam,

A more recent version of debian-security-support fixes two additional
bugs:

https://bugs.debian.org/824015
https://bugs.debian.org/824081

This new package also updates the security support status for different
packages, and updates several localization files. Please, find the diff
below.

Should I go ahead with this new release?
Retitling this same bug report is enough, or a new bug is needed?

Thanks,

Santiago


diff --git a/Makefile.PL b/Makefile.PL
index 52cbde1..03de236 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -11,6 +11,8 @@ my $dchfile = 'debian/changelog';
 my $changelog = changelog_parse(file => $dchfile);
 my $VERSION=$changelog->{Version};
 
+$VERSION =~ s/~deb(.*)//;
+
 WriteMakefile (
     'NAME' =>       'debian-security-support',
     'AUTHOR' =>     'Christoph Biedl <debian.axhn@manchmal.in-ulm.de>',
diff --git a/check-support-status.hook b/check-support-status.hook
index 35005ef..4f8a42b 100755
--- a/check-support-status.hook
+++ b/check-support-status.hook
@@ -30,7 +30,18 @@ LIB_DIR="/var/lib/$USERNAME"
     TEMPDIR="$(mktemp --tmpdir --directory debian-security-support.postinst.XXXXX)"
     trap "rm -rf '$TEMPDIR'" EXIT
 
-    for MODE in earlyend ended limited ; do
+    # 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
+
+    for MODE in $MODES ; do
         OUTPUT="$TEMPDIR/output"
         su "$USERNAME" --shell /bin/bash --command "
         check-support-status \
diff --git a/check-support-status.in b/check-support-status.in
index be7f61f..83c5c97 100755
--- a/check-support-status.in
+++ b/check-support-status.in
@@ -276,7 +276,7 @@ if [ -z "$NOHEADING" ] ; then
             gettext \
 "Future end of support for one or more packages
 
-Unfortunately, it will be needed to end security support for some
+Unfortunately, it will be necessary to end security support for some
 packages before the end of the regular security maintenance life cycle.
 
 The following packages found on this system are affected by this:"
diff --git a/debian/changelog b/debian/changelog
index c89a134..0ec1309 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,52 @@
+debian-security-support (2016.05.24~deb8u1) jessie; urgency=medium
+
+  * Team upload.
+
+  [ Santiago Ruano Rincón ]
+  * Rebuild for Jessie.
+
+ -- Santiago Ruano Rincón <santiagorr@riseup.net>  Wed, 29 Jun 2016 15:53:01 +0200
+
+debian-security-support (2016.05.24) unstable; urgency=medium
+
+  * Team upload.
+
+  [ Santiago Ruano Rincón ]
+  * check-support-status.hook, debian-security-support.postinst: only
+    invoke --type earlyend when running a version that supports it,
+    i.e. >= 2016.03.30.
+  * check-support-status.hook: Make sure to run check-support-status
+    from an accessibe directory. Thanks to Raphaël Hertzog (Closes: #824081).
+  * Include missing earlyend debconf template.
+  * Update Spanish debconf template translation.
+  * Update French debconf template translation.
+  * Mark as not supported in Wheezy LTS:
+    - libv8
+    - mediawiki (also not supported in Jessie)
+    - vlc
+  * Update Danish debconf templates translation.
+    Thanks to Joe Dalton <joedalton2@yahoo.dk> (Closes: #824467)
+  * Update Telugu debconf templates translation.
+    Thanks to Praveen Illa <mail2ipn@gmail.com> (Closes: #824638)
+  * Update Polish debconf templates translation.
+    Thanks to Łukasz Dulny <BartekChom@poczta.onet.pl (Closes: #824864)
+
+  [ Markus Koschany ]
+  * Mark as not supported in Wheezy LTS:
+    - sogo
+
+  [ Salvatore Bonaccorso ]
+  * Update Russian debconf templates translations.
+    Thanks to Yuri Kozlov <yuray@komyakino.ru> (Closes: #824245)
+  * Update Portuguese debconf template translations.
+    Thanks to Américo Monteiro <a_monteiro@gmx.com> (Closes: #824145)
+  * Updated German debconf template translation.
+    Thanks to Chris Leick <c.leick@vollbio.de> (Closes: #824488)
+  * Update Brazilian Portuguese debconf templates translation.
+    Thanks to Adriano Rafael Gomes <adrianorg@arg.eti.br> (Closes: #824643)
+
+ -- Santiago Ruano Rincón <santiagorr@riseup.net>  Tue, 24 May 2016 19:53:10 +0200
+
 debian-security-support (2016.05.09+nmu1) unstable; urgency=medium
 
   * Non-maintainer upload.
diff --git a/debian/debian-security-support.postinst b/debian/debian-security-support.postinst
index c8ba251..0663b46 100644
--- a/debian/debian-security-support.postinst
+++ b/debian/debian-security-support.postinst
@@ -27,7 +27,15 @@ configure)
     TEMPDIR="$(mktemp --tmpdir --directory debian-security-support.postinst.XXXXX)"
     trap "rm -rf '$TEMPDIR'" EXIT
 
-    for MODE in earlyend ended limited ; do
+    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
+
+    for MODE in $MODES ; do
         OUTPUT="$TEMPDIR/output"
         su "$USERNAME" --shell /bin/bash --command "
         check-support-status \
diff --git a/debian/debian-security-support.templates b/debian/debian-security-support.templates
index 4f8c0f4..b8518cf 100644
--- a/debian/debian-security-support.templates
+++ b/debian/debian-security-support.templates
@@ -28,3 +28,14 @@ _Description: Limited security support for one or more packages
  The following packages found on this system are affected by this:
  .
  ${MESSAGE}
+
+Template: debian-security-support/earlyend
+Type: text
+#flag:translate!:4
+_Description: Future end of support for one or more packages
+ Unfortunately, it will be necessary to end security support for some
+ packages before the end of the regular security maintenance life cycle.
+ .
+ The following packages found on this system are affected by this:
+ .
+ ${MESSAGE}
diff --git a/debian/po/da.po b/debian/po/da.po
index 36a881e..4e8d9bf 100644
--- a/debian/po/da.po
+++ b/debian/po/da.po
@@ -1,59 +1,80 @@
-# Danish translation debian-security-support.
-# This file is distributed under the same license as the debian-security-support package.
-# Copyright (C) 2014 debian-security-support & nedenstående oversættere.
-# Joe Hansen <joedalton2@yahoo.dk>, 2014.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: debian-security-support\n"
-"Report-Msgid-Bugs-To: debian-security-support@packages.debian.org\n"
-"POT-Creation-Date: 2014-06-05 06:50+0200\n"
-"PO-Revision-Date: 2014-06-05 17:34+0000\n"
-"Last-Translator: Joe Hansen <joedalton2@yahoo.dk>\n"
-"Language-Team: Danish <debian-l10n-danish@lists.debian.org>\n"
-"Language: da\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#. Type: text
-#. Description
-#: ../debian-security-support.templates:2001
-msgid "Ended security support for one or more packages"
-msgstr "Afsluttet sikkerhedsunderstøttelse for en eller flere pakker"
-
-#. Type: text
-#. Description
-#: ../debian-security-support.templates:2001
-msgid ""
-"Unfortunately, it has been necessary to end security support for some "
-"packages before the end of the regular security maintenance life cycle."
-msgstr ""
-"Desværre har det været nødvendigt at afslutte sikkerhedsunderstøttelse for "
-"nogle pakker før slutningen på den normale livscyklus for "
-"sikkerhedsvedligeholdelse."
-
-#. Type: text
-#. Description
-#. Type: text
-#. Description
-#: ../debian-security-support.templates:2001
-#: ../debian-security-support.templates:3001
-msgid "The following packages found on this system are affected by this:"
-msgstr "De følgende pakker fundet på dit system er påvirket af dette:"
-
-#. Type: text
-#. Description
-#: ../debian-security-support.templates:3001
-msgid "Limited security support for one or more packages"
-msgstr "Begrænset sikkerhedsunderstøttelse for en eller flere pakker"
-
-#. Type: text
-#. Description
-#: ../debian-security-support.templates:3001
-msgid ""
-"Unfortunately, it has been necessary to limit security support for some "
-"packages."
-msgstr ""
-"Desværre har det været nødvendigt at begrænse sikkerhedsunderstøttelse for "
-"nogle pakker."
+# 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 <joedalton2@yahoo.dk>, 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-05-12 09:42+0200\n"
+"PO-Revision-Date: 2016-05-16 17:34+0000\n"
+"Last-Translator: Joe Hansen <joedalton2@yahoo.dk>\n"
+"Language-Team: Danish <debian-l10n-danish@lists.debian.org>\n"
+"Language: da\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. Type: text
+#. Description
+#: ../debian-security-support.templates:2001
+msgid "Ended security support for one or more packages"
+msgstr "Afsluttet sikkerhedsunderstøttelse for en eller flere pakker"
+
+#. Type: text
+#. Description
+#: ../debian-security-support.templates:2001
+msgid ""
+"Unfortunately, it has been necessary to end security support for some "
+"packages before the end of the regular security maintenance life cycle."
+msgstr ""
+"Desværre har det været nødvendigt at afslutte sikkerhedsunderstøttelse for "
+"nogle pakker før slutningen på den normale livscyklus for "
+"sikkerhedsvedligeholdelse."
+
+#. Type: text
+#. Description
+#. Type: text
+#. Description
+#. Type: text
+#. Description
+#: ../debian-security-support.templates:2001
+#: ../debian-security-support.templates:3001
+#: ../debian-security-support.templates:4001
+msgid "The following packages found on this system are affected by this:"
+msgstr "De følgende pakker fundet på dit system er påvirket af dette:"
+
+#. Type: text
+#. Description
+#: ../debian-security-support.templates:3001
+msgid "Limited security support for one or more packages"
+msgstr "Begrænset sikkerhedsunderstøttelse for en eller flere pakker"
+
+#. Type: text
+#. Description
+#: ../debian-security-support.templates:3001
+msgid ""
+"Unfortunately, it has been necessary to limit security support for some "
+"packages."
+msgstr ""
+"Desværre har det været nødvendigt at begrænse sikkerhedsunderstøttelse for "
+"nogle pakker."
+
+#. Type: text
+#. Description
+#: ../debian-security-support.templates:4001
+msgid "Future end of support for one or more packages"
+msgstr "Fremtidig stop for understøttelse for en eller flere pakker"
+
+#. Type: text
+#. Description
+#: ../debian-security-support.templates:4001
+msgid ""
+"Unfortunately, it will be necessary to end security support for some "
+"packages before the end of the regular security maintenance life cycle."
+msgstr ""
+"Desværre har det været nødvendigt at afslutte sikkerhedsunderstøttelse for "
+"nogle pakker før slutningen på den normale livscyklus for "
+"sikkerhedsvedligeholdelse."
+
diff --git a/debian/po/de.po b/debian/po/de.po
index 9f7a648..31d431f 100644
--- a/debian/po/de.po
+++ b/debian/po/de.po
@@ -1,63 +1,86 @@
-# 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 <c.leick@vollbio.de>, 2014.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: debian-security-support 2014.05.16\n"
-"Report-Msgid-Bugs-To: debian-security-support@packages.debian.org\n"
-"POT-Creation-Date: 2014-06-05 06:50+0200\n"
-"PO-Revision-Date: 2014-06-05 22:36+0100\n"
-"Last-Translator: Chris Leick <c.leick@vollbio.de>\n"
-"Language-Team: German <debian-l10n-german@lists.debian.org>\n"
-"Language: de\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Lokalize 1.0\n"
-"Plural-Forms: nplurals=2; plural=n != 1;\n"
-
-#. Type: text
-#. Description
-#: ../debian-security-support.templates:2001
-msgid "Ended security support for one or more packages"
-msgstr "Ende der Sicherheitsaktualisierungen für eines oder mehrere Pakete"
-
-#. Type: text
-#. Description
-#: ../debian-security-support.templates:2001
-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 Unterstützung von Sicherheitsaktualisierungen für "
-"einige Pakete vor dem regulären Ende ihres Sicherheitswartungszyklus zu "
-"beenden."
-
-#. Type: text
-#. Description
-#. Type: text
-#. Description
-#: ../debian-security-support.templates:2001
-#: ../debian-security-support.templates:3001
-msgid "The following packages found on this system are affected by this:"
-msgstr ""
-"Davon sind die folgenden auf diesem System gefundenen Pakete betroffen:"
-
-#. Type: text
-#. Description
-#: ../debian-security-support.templates:3001
-msgid "Limited security support for one or more packages"
-msgstr ""
-"Eingeschränkte Sicherheitsaktualisierungen für eines oder mehrere Pakete"
-
-#. Type: text
-#. Description
-#: ../debian-security-support.templates:3001
-msgid ""
-"Unfortunately, it has been necessary to limit security support for some "
-"packages."
-msgstr ""
-"Leider war es nötig, die Unterstützung von Sicherheitsaktualisierungen für "
-"einige Pakete einzuschränken."
+# 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 <c.leick@vollbio.de>, 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-05-12 09:42+0200\n"
+"PO-Revision-Date: 2016-05-12 19:01+0100\n"
+"Last-Translator: Chris Leick <c.leick@vollbio.de>\n"
+"Language-Team: German <debian-l10n-german@lists.debian.org>\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"
+
+#. Type: text
+#. Description
+#: ../debian-security-support.templates:2001
+msgid "Ended security support for one or more packages"
+msgstr ""
+"Ende der Versorgung mit Sicherheitsaktualisierungen für eines oder mehrere "
+"Pakete"
+
+#. Type: text
+#. Description
+#: ../debian-security-support.templates:2001
+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."
+
+#. Type: text
+#. Description
+#. Type: text
+#. Description
+#. Type: text
+#. Description
+#: ../debian-security-support.templates:2001
+#: ../debian-security-support.templates:3001
+#: ../debian-security-support.templates:4001
+msgid "The following packages found on this system are affected by this:"
+msgstr ""
+"Davon sind die folgenden auf diesem System gefundenen Pakete betroffen:"
+
+#. Type: text
+#. Description
+#: ../debian-security-support.templates:3001
+msgid "Limited security support for one or more packages"
+msgstr ""
+"Eingeschränkte Versorgung mit Sicherheitsaktualisierungen für eines oder "
+"mehrere Pakete"
+
+#. Type: text
+#. Description
+#: ../debian-security-support.templates:3001
+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."
+
+#. Type: text
+#. Description
+#: ../debian-security-support.templates:4001
+msgid "Future end of support for one or more packages"
+msgstr ""
+"Zukünftiges Ende der Versorgung mit Sicherheitsaktualisierungen für eines "
+"oder mehrere Pakete"
+
+#. Type: text
+#. Description
+#: ../debian-security-support.templates:4001
+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."
diff --git a/debian/po/es.po b/debian/po/es.po
index 9ba4b44..8381002 100644
--- a/debian/po/es.po
+++ b/debian/po/es.po
@@ -6,7 +6,7 @@
 # - Initial translation
 #       Matías Bellone <matiasbellone+debian@gmail.com>, 2014
 #
-#  Traductores, si no conoce el formato PO, merece la pena leer la 
+#  Traductores, si no conoce el formato PO, merece la pena leer la
 #  documentación de gettext, especialmente las secciones dedicadas a este
 #  formato, por ejemplo ejecutando:
 #         info -n '(gettext)PO Files'
@@ -28,9 +28,9 @@ msgid ""
 msgstr ""
 "Project-Id-Version: debian-security-support\n"
 "Report-Msgid-Bugs-To: debian-security-support@packages.debian.org\n"
-"POT-Creation-Date: 2014-06-05 06:50+0200\n"
-"PO-Revision-Date: 2014-06-13 21:22-0300\n"
-"Last-Translator: Matías Bellone <matiasbellone+debian@gmail.com>\n"
+"POT-Creation-Date: 2016-05-12 09:42+0200\n"
+"PO-Revision-Date: 2016-05-12 10:04+0200\n"
+"Last-Translator: Santiago R.R. <santiagorr@riseup.net>\n"
 "Language-Team: Debian Spanish <debian-l10n-spanish@lists.debian.org>\n"
 "Language: es\n"
 "MIME-Version: 1.0\n"
@@ -58,8 +58,11 @@ msgstr ""
 #. Description
 #. Type: text
 #. Description
+#. Type: text
+#. Description
 #: ../debian-security-support.templates:2001
 #: ../debian-security-support.templates:3001
+#: ../debian-security-support.templates:4001
 msgid "The following packages found on this system are affected by this:"
 msgstr "Los siguientes paquetes de este sistema se ven afectados:"
 
@@ -78,3 +81,22 @@ msgid ""
 msgstr ""
 "Desafortunadamente, ha sido necesario limitar el soporte de seguridad para "
 "algunos paquetes."
+
+#. Type: text
+#. Description
+#: ../debian-security-support.templates:4001
+msgid "Future end of support for one or more packages"
+msgstr "El soporte de seguridad finalizará para uno o más paquetes"
+
+#. Type: text
+#. Description
+#: ../debian-security-support.templates:4001
+#| msgid ""
+#| "Unfortunately, it has been necessary to end security support for some "
+#| "packages before the end of the regular security maintenance life cycle."
+msgid ""
+"Unfortunately, it will be necessary to end security support for some "
+"packages before the end of the regular security maintenance life cycle."
+msgstr ""
+"Desafortunadamente, es necesario interrumpir el soporte de seguridad antes "
+"del fin del ciclo de vida convencional de mantenimiento de seguridad."
diff --git a/debian/po/fr.po b/debian/po/fr.po
index 004363c..b264beb 100644
--- a/debian/po/fr.po
+++ b/debian/po/fr.po
@@ -7,9 +7,9 @@ msgid ""
 msgstr ""
 "Project-Id-Version: debian-security-support\n"
 "Report-Msgid-Bugs-To: debian-security-support@packages.debian.org\n"
-"POT-Creation-Date: 2014-06-05 06:50+0200\n"
-"PO-Revision-Date: 2014-06-05 10:15+0100\n"
-"Last-Translator: Julien Patriarca <leatherface@debian.org>\n"
+"POT-Creation-Date: 2016-05-12 09:42+0200\n"
+"PO-Revision-Date: 2016-05-12 10:12+0200\n"
+"Last-Translator: Santiago R.R. <santiagorr@riseup.net>\n"
 "Language-Team: FRENCH <debian-l10n-french@lists.debian.org>\n"
 "Language: fr\n"
 "MIME-Version: 1.0\n"
@@ -38,8 +38,11 @@ msgstr ""
 #. Description
 #. Type: text
 #. Description
+#. Type: text
+#. Description
 #: ../debian-security-support.templates:2001
 #: ../debian-security-support.templates:3001
+#: ../debian-security-support.templates:4001
 msgid "The following packages found on this system are affected by this:"
 msgstr "Les paquets suivants trouvés sur ce système sont affectés par ceci :"
 
@@ -58,3 +61,22 @@ msgid ""
 msgstr ""
 "Malheureusement, il a été nécessaire de limiter le suivi des mises à jour de "
 "sécurité pour certains paquets."
+
+#. Type: text
+#. Description
+#: ../debian-security-support.templates:4001
+msgid "Future end of support for one or more packages"
+msgstr ""
+"Le suivi des mises à jour de sécurité sera bientôt arrêté pour un ou "
+"plusieurs paquets"
+
+#. Type: text
+#. Description
+#: ../debian-security-support.templates:4001
+msgid ""
+"Unfortunately, it will be necessary to end security support for some "
+"packages before the end of the regular security maintenance life cycle."
+msgstr ""
+"Malheureusement, il est nécessaire d'interrompre le suivi des mises à jour "
+"de sécurité de certains paquets avant la fin du cycle de maintenance "
+"théorique."
diff --git a/debian/po/pl.po b/debian/po/pl.po
index 2f7657c..14f7ab8 100644
--- a/debian/po/pl.po
+++ b/debian/po/pl.po
@@ -3,21 +3,22 @@
 # This file is distributed under the same license as the debian-security-support package.
 #
 # Michał Kułach <michal.kulach@gmail.com>, 2014.
+# Łukasz Dulny <BartekChom@poczta.onet.pl>, 2016.
 msgid ""
 msgstr ""
 "Project-Id-Version: debian-security-support\n"
 "Report-Msgid-Bugs-To: debian-security-support@packages.debian.org\n"
-"POT-Creation-Date: 2014-06-05 06:50+0200\n"
-"PO-Revision-Date: 2014-06-07 18:38+0200\n"
-"Last-Translator: Michał Kułach <michal.kulach@gmail.com>\n"
+"POT-Creation-Date: 2016-05-12 09:42+0200\n"
+"PO-Revision-Date: 2016-05-19 18:33+0100\n"
+"Last-Translator: Łukasz Dulny <BartekChom@poczta.onet.pl>\n"
 "Language-Team: Polish <debian-l10n-polish@lists.debian.org>\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 1.4\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"
 
 #. Type: text
 #. Description
@@ -39,8 +40,11 @@ msgstr ""
 #. Description
 #. Type: text
 #. Description
+#. Type: text
+#. Description
 #: ../debian-security-support.templates:2001
 #: ../debian-security-support.templates:3001
+#: ../debian-security-support.templates:4001
 msgid "The following packages found on this system are affected by this:"
 msgstr "Dotyczy to następujących pakietów zainstalowanych w tym systemie:"
 
@@ -59,3 +63,20 @@ msgid ""
 msgstr ""
 "Niestety, konieczne było ograniczenie wsparcia bezpieczeństwa dla pewnych "
 "pakietów."
+
+#. Type: text
+#. Description
+#: ../debian-security-support.templates:4001
+msgid "Future end of support for one or more packages"
+msgstr "Zbliża się koniec wsparcia dla co najmniej jednego pakietu"
+
+#. Type: text
+#. Description
+#: ../debian-security-support.templates:4001
+msgid ""
+"Unfortunately, it will be necessary to end security support for some "
+"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."
+
diff --git a/debian/po/pt.po b/debian/po/pt.po
index 5d573df..f57a15e 100644
--- a/debian/po/pt.po
+++ b/debian/po/pt.po
@@ -2,13 +2,13 @@
 # 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 <a_monteiro@gmx.com>, 2014.
+# Américo Monteiro <a_monteiro@gmx.com>, 2014 - 2016.
 msgid ""
 msgstr ""
-"Project-Id-Version: debian-security-support 2014.05.16\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: 2014-06-05 06:50+0200\n"
-"PO-Revision-Date: 2014-06-05 21:04+0100\n"
+"POT-Creation-Date: 2016-05-12 09:42+0200\n"
+"PO-Revision-Date: 2016-05-12 21:40+0100\n"
 "Last-Translator: Américo Monteiro <a_monteiro@gmx.com>\n"
 "Language-Team: Portuguese <traduz@debianpt.org>\n"
 "Language: pt\n"
@@ -38,8 +38,11 @@ msgstr ""
 #. Description
 #. Type: text
 #. Description
+#. Type: text
+#. Description
 #: ../debian-security-support.templates:2001
 #: ../debian-security-support.templates:3001
+#: ../debian-security-support.templates:4001
 msgid "The following packages found on this system are affected by this:"
 msgstr "São afectados por isto os seguintes pacotes encontrados neste sistema:"
 
@@ -58,3 +61,24 @@ msgid ""
 msgstr ""
 "Infelizmente, foi necessário limitar o suporte de segurança para alguns "
 "pacotes."
+
+#. Type: text
+#. Description
+#: ../debian-security-support.templates:4001
+#| msgid "Limited security support for one or more packages"
+msgid "Future end of support for one or more packages"
+msgstr "Futuro final de suporte para um ou mais pacotes"
+
+#. Type: text
+#. Description
+#: ../debian-security-support.templates:4001
+#| msgid ""
+#| "Unfortunately, it has been necessary to end security support for some "
+#| "packages before the end of the regular security maintenance life cycle."
+msgid ""
+"Unfortunately, it will be necessary to end security support for some "
+"packages before the end of the regular security maintenance life cycle."
+msgstr ""
+"Infelizmente, irá ser necessário terminar o suporte de segurança para alguns "
+"pacotes antes do fim do ciclo de vida normal da manutenção de segurança."
+
diff --git a/debian/po/pt_BR.po b/debian/po/pt_BR.po
index 6947a68..8772007 100644
--- a/debian/po/pt_BR.po
+++ b/debian/po/pt_BR.po
@@ -1,14 +1,14 @@
 # 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 <adrianorg@arg.eti.br>, 2014.
+# Adriano Rafael Gomes <adrianorg@arg.eti.br>, 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: 2014-06-05 06:50+0200\n"
-"PO-Revision-Date: 2014-06-20 21:33-0300\n"
+"POT-Creation-Date: 2016-05-12 09:42+0200\n"
+"PO-Revision-Date: 2016-05-12 09:02-0300\n"
 "Last-Translator: Adriano Rafael Gomes <adrianorg@arg.eti.br>\n"
 "Language-Team: Brazilian Portuguese <debian-l10n-portuguese@lists.debian."
 "org>\n"
@@ -37,8 +37,11 @@ msgstr ""
 #. Description
 #. Type: text
 #. Description
+#. Type: text
+#. Description
 #: ../debian-security-support.templates:2001
 #: ../debian-security-support.templates:3001
+#: ../debian-security-support.templates:4001
 msgid "The following packages found on this system are affected by this:"
 msgstr "Os seguintes pacotes encontrados neste sistema são afetados por isso:"
 
@@ -57,3 +60,23 @@ msgid ""
 msgstr ""
 "Infelizmente, foi necessário limitar o suporte de segurança para alguns "
 "pacotes."
+
+#. Type: text
+#. Description
+#: ../debian-security-support.templates:4001
+#| msgid "Limited security support for one or more packages"
+msgid "Future end of support for one or more packages"
+msgstr "Futuro fim de suporte para um ou mais pacotes"
+
+#. Type: text
+#. Description
+#: ../debian-security-support.templates:4001
+#| msgid ""
+#| "Unfortunately, it has been necessary to end security support for some "
+#| "packages before the end of the regular security maintenance life cycle."
+msgid ""
+"Unfortunately, it will be necessary to end security support for some "
+"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."
diff --git a/debian/po/ru.po b/debian/po/ru.po
index db43ccc..5edd676 100644
--- a/debian/po/ru.po
+++ b/debian/po/ru.po
@@ -1,13 +1,13 @@
 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the debian-security-support package.
 #
-# Yuri Kozlov <yuray@komyakino.ru>, 2014.
+# Yuri Kozlov <yuray@komyakino.ru>, 2014, 2016.
 msgid ""
 msgstr ""
-"Project-Id-Version: debian-security-support 2014.05.16\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: 2014-06-05 06:50+0200\n"
-"PO-Revision-Date: 2014-06-06 17:47+0400\n"
+"POT-Creation-Date: 2016-05-12 09:42+0200\n"
+"PO-Revision-Date: 2016-05-14 07:43+0300\n"
 "Last-Translator: Yuri Kozlov <yuray@komyakino.ru>\n"
 "Language-Team: Russian <debian-l10n-russian@lists.debian.org>\n"
 "Language: ru\n"
@@ -41,8 +41,11 @@ msgstr ""
 #. Description
 #. Type: text
 #. Description
+#. Type: text
+#. Description
 #: ../debian-security-support.templates:2001
 #: ../debian-security-support.templates:3001
+#: ../debian-security-support.templates:4001
 msgid "The following packages found on this system are affected by this:"
 msgstr "Это относится к следующим пакетам в системе:"
 
@@ -63,3 +66,27 @@ msgid ""
 msgstr ""
 "К сожалению, было необходимо ограничить выпуск обновлений безопасности для "
 "некоторых пакетов."
+
+#. Type: text
+#. Description
+#: ../debian-security-support.templates:4001
+#| msgid "Limited security support for one or more packages"
+msgid "Future end of support for one or more packages"
+msgstr ""
+"Дальнейшая поддержка обновлений безопасности для одного или нескольких "
+"пакетов"
+
+#. Type: text
+#. Description
+#: ../debian-security-support.templates:4001
+#| msgid ""
+#| "Unfortunately, it has been necessary to end security support for some "
+#| "packages before the end of the regular security maintenance life cycle."
+msgid ""
+"Unfortunately, it will be necessary to end security support for some "
+"packages before the end of the regular security maintenance life cycle."
+msgstr ""
+"К сожалению, необходимо закончить выпуск обновлений безопасности для "
+"некоторых пакетов раньше конца обычного цикла поддержки обновлений "
+"безопасности."
+
diff --git a/debian/po/te.po b/debian/po/te.po
new file mode 100644
index 0000000..3152c15
--- /dev/null
+++ b/debian/po/te.po
@@ -0,0 +1,86 @@
+#
+# Note to translators:
+# Some more messages that require translation are in the po/
+# directory. Additionally, there's also a manpage at
+# "man/check-support-status.txt", in the docbook format. If you
+# provide a translated version, use the file name
+# "man/check-support-status.txt.$LANG", and it will be added to the
+# package.
+#
+# Telugu translation for Debian-security-support.
+# Copyright (C) 2016 Telugu Contributors
+# This file is distributed under the same license as the debian-security-support package.
+# Praveen Illa <mail2ipn@gmail.com>, 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-05-12 09:42+0200\n"
+"PO-Revision-Date: 2016-05-18 11:26+0530\n"
+"Last-Translator: Praveen Illa <mail2ipn@gmail.com>\n"
+"Language-Team: Telugu <indlinux-telugu@lists.sourceforge.net>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Gtranslator 2.91.6\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Language: te\n"
+
+#. Type: text
+#. Description
+#: ../debian-security-support.templates:2001
+msgid "Ended security support for one or more packages"
+msgstr "ఒకటి లేదా మరిన్ని ప్యాకేజీలకు భద్రతా తోడ్పాటు ముగిసింది"
+
+#. Type: text
+#. Description
+#: ../debian-security-support.templates:2001
+msgid ""
+"Unfortunately, it has been necessary to end security support for some "
+"packages before the end of the regular security maintenance life cycle."
+msgstr ""
+"దురదృష్టవశాత్తు, సాధారణ భద్రతా నిర్వహణ కాలం కంటే ముందే కొన్ని ప్యాకేజీలకు భద్రతా తోడ్పాటు ముగించడం "
+"ఆవశ్యకమైంది."
+
+#. Type: text
+#. Description
+#. Type: text
+#. Description
+#. Type: text
+#. Description
+#: ../debian-security-support.templates:2001
+#: ../debian-security-support.templates:3001
+#: ../debian-security-support.templates:4001
+msgid "The following packages found on this system are affected by this:"
+msgstr "దీని వల్ల వ్యవస్థలో క్రింద పేర్కొన్న ప్యాకేజీలు ప్రభావితమవుతాయి:"
+
+#. Type: text
+#. Description
+#: ../debian-security-support.templates:3001
+msgid "Limited security support for one or more packages"
+msgstr "ఒకటి లేదా మరిన్ని ప్యాకేజీలకు పరిమిత భద్రతా తోడ్పాటు"
+
+#. Type: text
+#. Description
+#: ../debian-security-support.templates:3001
+msgid ""
+"Unfortunately, it has been necessary to limit security support for some "
+"packages."
+msgstr "దురదృష్టవశాత్తు, కొన్ని ప్యాకేజీలకు భద్రతా తోడ్పాటు పరిమితం చేయడం ఆవశ్యకమైంది."
+
+#. Type: text
+#. Description
+#: ../debian-security-support.templates:4001
+msgid "Future end of support for one or more packages"
+msgstr "ఒకటి లేదా మరిన్ని ప్యాకేజీలకు తోడ్పాడు భవిష్యత్తులో ముగింపు అయ్యేవి"
+
+#. Type: text
+#. Description
+#: ../debian-security-support.templates:4001
+msgid ""
+"Unfortunately, it will be necessary to end security support for some "
+"packages before the end of the regular security maintenance life cycle."
+msgstr ""
+"దురదృష్టవశాత్తు, సాధారణ భద్రతా నిర్వహణ కాలం కంటే ముందే కొన్ని ప్యాకేజీలకు భద్రతా తోడ్పాటు ముగించడం "
+"ఆవశ్యకమవుతుంది."
diff --git a/debian/po/templates.pot b/debian/po/templates.pot
index 1b5610e..84590e0 100644
--- a/debian/po/templates.pot
+++ b/debian/po/templates.pot
@@ -9,7 +9,7 @@
 #
 # SOME DESCRIPTIVE TITLE.
 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
+# This file is distributed under the same license as the debian-security-support package.
 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 #
 #, fuzzy
@@ -17,7 +17,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: debian-security-support\n"
 "Report-Msgid-Bugs-To: debian-security-support@packages.debian.org\n"
-"POT-Creation-Date: 2014-06-05 06:50+0200\n"
+"POT-Creation-Date: 2016-05-12 09:42+0200\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -44,8 +44,11 @@ msgstr ""
 #. Description
 #. Type: text
 #. Description
+#. Type: text
+#. Description
 #: ../debian-security-support.templates:2001
 #: ../debian-security-support.templates:3001
+#: ../debian-security-support.templates:4001
 msgid "The following packages found on this system are affected by this:"
 msgstr ""
 
@@ -62,3 +65,17 @@ msgid ""
 "Unfortunately, it has been necessary to limit security support for some "
 "packages."
 msgstr ""
+
+#. Type: text
+#. Description
+#: ../debian-security-support.templates:4001
+msgid "Future end of support for one or more packages"
+msgstr ""
+
+#. Type: text
+#. Description
+#: ../debian-security-support.templates:4001
+msgid ""
+"Unfortunately, it will be necessary to end security support for some "
+"packages before the end of the regular security maintenance life cycle."
+msgstr ""
diff --git a/po/es.po b/po/es.po
index 3d4ba35..68e7eca 100644
--- a/po/es.po
+++ b/po/es.po
@@ -28,7 +28,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2016-05-01 19:01+0200\n"
+"POT-Creation-Date: 2016-05-12 09:43+0200\n"
 "PO-Revision-Date: 2016-05-01 19:03+0200\n"
 "Last-Translator: Santiago R.R. <santiagorr@riseup.net>\n"
 "Language-Team: Debian Spanish <debian-l10n-spanish@lists.debian.org>\n"
@@ -77,7 +77,7 @@ msgstr "E: no se pudo detectar la versión de dpkg, se asume wheezy o más nuevo
 msgid ""
 "Future end of support for one or more packages\n"
 "\n"
-"Unfortunately, it will be needed to end security support for some\n"
+"Unfortunately, it will be necessary to end security support for some\n"
 "packages before the end of the regular security maintenance life cycle.\n"
 "\n"
 "The following packages found on this system are affected by this:"
diff --git a/po/fr.po b/po/fr.po
index e3ba651..4855ee0 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: debian-security-support\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2016-05-01 19:01+0200\n"
+"POT-Creation-Date: 2016-05-12 09:43+0200\n"
 "PO-Revision-Date: 2016-05-01 19:04+0200\n"
 "Last-Translator: Santiago R.R. <santiagorr@riseup.net>\n"
 "Language-Team: FRENCH <debian-l10n-french@lists.debian.org>\n"
@@ -15,7 +15,6 @@ msgstr ""
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Poedit 1.8.7.1\n"
 
 #: check-support-status.in:24
 #, sh-format
@@ -58,7 +57,7 @@ msgstr ""
 msgid ""
 "Future end of support for one or more packages\n"
 "\n"
-"Unfortunately, it will be needed to end security support for some\n"
+"Unfortunately, it will be necessary to end security support for some\n"
 "packages before the end of the regular security maintenance life cycle.\n"
 "\n"
 "The following packages found on this system are affected by this:"
diff --git a/po/messages.po b/po/messages.po
index d8e865a..75fe95a 100644
--- a/po/messages.po
+++ b/po/messages.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2016-05-01 19:01+0200\n"
+"POT-Creation-Date: 2016-05-12 09:43+0200\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -54,7 +54,7 @@ msgstr ""
 msgid ""
 "Future end of support for one or more packages\n"
 "\n"
-"Unfortunately, it will be needed to end security support for some\n"
+"Unfortunately, it will be necessary to end security support for some\n"
 "packages before the end of the regular security maintenance life cycle.\n"
 "\n"
 "The following packages found on this system are affected by this:"
diff --git a/security-support-ended.deb7 b/security-support-ended.deb7
index b8f65c7..afdb925 100644
--- a/security-support-ended.deb7
+++ b/security-support-ended.deb7
@@ -25,10 +25,14 @@ typo3-src                4.5.19+dfsg1-5+wheezy4  2015-07-23  https://lists.debia
 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)
+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)
diff --git a/security-support-ended.deb8 b/security-support-ended.deb8
index d3a6c33..e6fd7f7 100644
--- a/security-support-ended.deb8
+++ b/security-support-ended.deb8
@@ -10,4 +10,5 @@
 # 4. Descriptive text or URL with more details (optional)
 #    In the program's output, this is prefixed with "Details:"
 
+mediawiki                1:1.19.20+dfsg-2.3      2016-04-26  https://www.debian.org/releases/jessie/amd64/release-notes/ch-information.html#mediawiki-security
 tomcat6                  6.0.41-3                2016-12-31  https://lists.debian.org/debian-java/2016/01/msg00069.html

Attachment: signature.asc
Description: PGP signature


Reply to: