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

Bug#875695: marked as done (stretch-pu: package apt/1.4.8)



Your message dated Sat, 07 Oct 2017 11:33:55 +0100
with message-id <1507372435.18586.64.camel@adam-barratt.org.uk>
and subject line Closing bugs for 9.2 point release
has caused the Debian Bug report #875695,
regarding stretch-pu: package apt/1.4.8
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact owner@bugs.debian.org
immediately.)


-- 
875695: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=875695
Debian Bug Tracking System
Contact owner@bugs.debian.org with problems
--- Begin Message ---
Package: release.debian.org
Severity: normal
Tags: stretch
User: release.debian.org@packages.debian.org
Usertags: pu

Hi, I'd like to upload apt 1.4.8 to stretch.

It fixes a crash in the mirror method, reduces chances of
unattended-upgrades from being killed during shutdown
when installing updates, and fixes a complex boot performance regression
by moving the dependency of network-online.target from apt-daily.timer
to apt-daily.service (which is the one actually needing it).

Not technically qualifying, but a one-line change to not issue warnings
for multiple legacy Contents file targets is also included (see bug #839259
or launchpad #1697120), as this was really annoying some people.

A full diff against 1.4.7 (from the last point release) is attached.

diff -Nru apt-1.4.7/debian/changelog apt-1.4.8/debian/changelog
--- apt-1.4.7/debian/changelog	2017-07-13 23:45:39.000000000 +0200
+++ apt-1.4.8/debian/changelog	2017-09-13 18:47:33.000000000 +0200
@@ -1,3 +1,21 @@
+apt (1.4.8) stretch; urgency=medium
+
+  [ Balint Reczey ]
+  * Gracefully terminate process when stopping apt-daily-upgrade (LP: #1690980)
+
+  [ David Kalnischkies ]
+  * don't ask an uninit _system for supported archs, this
+    crashes the mirror method (LP: #1613184)
+
+  [ Julian Andres Klode ]
+  * Do not warn about duplicate "legacy" targets (Closes: #839259)
+    (LP: #1697120)
+  * apt-daily: Pull in network-online.target in service, not timer
+    - this can cause a severe boot performance regression / hang
+    (LP: #1716973)
+
+ -- Julian Andres Klode <jak@debian.org>  Wed, 13 Sep 2017 18:47:33 +0200
+


-- System Information:
Debian Release: buster/sid
  APT prefers unstable
  APT policy: (900, 'unstable'), (900, 'testing'), (500, 'unstable-debug'), (500, 'buildd-unstable'), (100, 'experimental'), (1, 'experimental-debug')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.12.0-1-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_IE.UTF-8, LC_CTYPE=en_IE.UTF-8 (charmap=UTF-8), LANGUAGE=en_IE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /usr/bin/dash
Init: systemd (via /run/systemd/system)

-- 
Debian Developer - deb.li/jak | jak-linux.org - free software dev
                  |  Ubuntu Core Developer |
When replying, only quote what is necessary, and write each reply
directly below the part(s) it pertains to ('inline').  Thank you.
diff -Nru apt-1.4.7/apt-pkg/aptconfiguration.cc apt-1.4.8/apt-pkg/aptconfiguration.cc
--- apt-1.4.7/apt-pkg/aptconfiguration.cc	2017-07-13 23:45:39.000000000 +0200
+++ apt-1.4.8/apt-pkg/aptconfiguration.cc	2017-09-13 18:47:33.000000000 +0200
@@ -322,7 +322,7 @@
 	string const arch = _config->Find("APT::Architecture");
 	archs = _config->FindVector("APT::Architectures");
 
-	if (archs.empty() == true)
+	if (archs.empty() == true && _system != nullptr)
 	   archs = _system->ArchitecturesSupported();
 
 	if (archs.empty() == true ||
diff -Nru apt-1.4.7/apt-pkg/deb/debmetaindex.cc apt-1.4.8/apt-pkg/deb/debmetaindex.cc
--- apt-1.4.7/apt-pkg/deb/debmetaindex.cc	2017-07-13 23:45:39.000000000 +0200
+++ apt-1.4.8/apt-pkg/deb/debmetaindex.cc	2017-09-13 18:47:33.000000000 +0200
@@ -274,11 +274,14 @@
 		     if (dup != IndexTargets.end())
 		     {
 			std::string const dupEntry = dup->Option(IndexTarget::SOURCESENTRY);
-			//TRANSLATOR: an identifier like Packages; Releasefile key indicating
-			// a file like main/binary-amd64/Packages; filename and linenumber of
-			// two sources.list entries
-			_error->Warning(_("Target %s (%s) is configured multiple times in %s and %s"),
-			      T->c_str(), MetaKey.c_str(), dupEntry.c_str(), E->sourcesEntry.c_str());
+			if (T->find("legacy") == std::string::npos)
+			{
+			   //TRANSLATOR: an identifier like Packages; Releasefile key indicating
+			   // a file like main/binary-amd64/Packages; filename and linenumber of
+			   // two sources.list entries
+			   _error->Warning(_("Target %s (%s) is configured multiple times in %s and %s"),
+					   T->c_str(), MetaKey.c_str(), dupEntry.c_str(), E->sourcesEntry.c_str());
+			}
 			if (tplMetaKey.find(BreakPoint) == std::string::npos)
 			   break;
 			continue;
diff -Nru apt-1.4.7/CMakeLists.txt apt-1.4.8/CMakeLists.txt
--- apt-1.4.7/CMakeLists.txt	2017-07-13 23:45:39.000000000 +0200
+++ apt-1.4.8/CMakeLists.txt	2017-09-13 18:47:33.000000000 +0200
@@ -172,7 +172,7 @@
 # Configure some variables like package, version and architecture.
 set(PACKAGE ${PROJECT_NAME})
 set(PACKAGE_MAIL "APT Development Team <deity@lists.debian.org>")
-set(PACKAGE_VERSION "1.4.7")
+set(PACKAGE_VERSION "1.4.8")
 
 if (NOT DEFINED DPKG_DATADIR)
   execute_process(COMMAND ${PERL_EXECUTABLE} -MDpkg -e "print $Dpkg::DATADIR;"
diff -Nru apt-1.4.7/debian/apt-daily.service apt-1.4.8/debian/apt-daily.service
--- apt-1.4.7/debian/apt-daily.service	2017-07-13 23:45:39.000000000 +0200
+++ apt-1.4.8/debian/apt-daily.service	2017-09-13 18:47:33.000000000 +0200
@@ -2,6 +2,8 @@
 Description=Daily apt download activities
 Documentation=man:apt(8)
 ConditionACPower=true
+After=network-online.target
+Wants=network-online.target
 
 [Service]
 Type=oneshot
diff -Nru apt-1.4.7/debian/apt-daily.timer apt-1.4.8/debian/apt-daily.timer
--- apt-1.4.7/debian/apt-daily.timer	2017-07-13 23:45:39.000000000 +0200
+++ apt-1.4.8/debian/apt-daily.timer	2017-09-13 18:47:33.000000000 +0200
@@ -1,7 +1,5 @@
 [Unit]
 Description=Daily apt download activities
-After=network-online.target
-Wants=network-online.target
 
 [Timer]
 OnCalendar=*-*-* 6,18:00
diff -Nru apt-1.4.7/debian/apt-daily-upgrade.service apt-1.4.8/debian/apt-daily-upgrade.service
--- apt-1.4.7/debian/apt-daily-upgrade.service	2017-07-13 23:45:39.000000000 +0200
+++ apt-1.4.8/debian/apt-daily-upgrade.service	2017-09-13 18:47:33.000000000 +0200
@@ -7,3 +7,5 @@
 [Service]
 Type=oneshot
 ExecStart=/usr/lib/apt/apt.systemd.daily install
+KillMode=process
+TimeoutStopSec=900
diff -Nru apt-1.4.7/debian/changelog apt-1.4.8/debian/changelog
--- apt-1.4.7/debian/changelog	2017-07-13 23:45:39.000000000 +0200
+++ apt-1.4.8/debian/changelog	2017-09-13 18:47:33.000000000 +0200
@@ -1,3 +1,21 @@
+apt (1.4.8) stretch; urgency=medium
+
+  [ Balint Reczey ]
+  * Gracefully terminate process when stopping apt-daily-upgrade (LP: #1690980)
+
+  [ David Kalnischkies ]
+  * don't ask an uninit _system for supported archs, this
+    crashes the mirror method (LP: #1613184)
+
+  [ Julian Andres Klode ]
+  * Do not warn about duplicate "legacy" targets (Closes: #839259)
+    (LP: #1697120)
+  * apt-daily: Pull in network-online.target in service, not timer
+    - this can cause a severe boot performance regression / hang
+    (LP: #1716973)
+
+ -- Julian Andres Klode <jak@debian.org>  Wed, 13 Sep 2017 18:47:33 +0200
+
 apt (1.4.7) stretch; urgency=medium
 
   * New release with important fixes up to 1.5~beta1; also see LP: #1702326
diff -Nru apt-1.4.7/doc/apt-verbatim.ent apt-1.4.8/doc/apt-verbatim.ent
--- apt-1.4.7/doc/apt-verbatim.ent	2017-07-13 23:45:39.000000000 +0200
+++ apt-1.4.8/doc/apt-verbatim.ent	2017-09-13 18:47:33.000000000 +0200
@@ -239,7 +239,7 @@
 ">
 
 <!-- this will be updated by 'prepare-release' -->
-<!ENTITY apt-product-version "1.4.7">
+<!ENTITY apt-product-version "1.4.8">
 
 <!-- (Code)names for various things used all over the place -->
 <!ENTITY debian-oldstable-codename "jessie">
diff -Nru apt-1.4.7/doc/po/apt-doc.pot apt-1.4.8/doc/po/apt-doc.pot
--- apt-1.4.7/doc/po/apt-doc.pot	2017-07-13 23:45:39.000000000 +0200
+++ apt-1.4.8/doc/po/apt-doc.pot	2017-09-13 18:47:33.000000000 +0200
@@ -5,9 +5,9 @@
 #, fuzzy
 msgid ""
 msgstr ""
-"Project-Id-Version: apt-doc 1.4.7\n"
+"Project-Id-Version: apt-doc 1.4.8\n"
 "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2017-07-13 23:47+0200\n"
+"POT-Creation-Date: 2017-09-13 17:18+0000\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"
diff -Nru apt-1.4.7/doc/po/de.po apt-1.4.8/doc/po/de.po
--- apt-1.4.7/doc/po/de.po	2017-07-13 23:45:39.000000000 +0200
+++ apt-1.4.8/doc/po/de.po	2017-09-13 18:47:33.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: apt-doc 1.3\n"
 "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2017-07-13 23:47+0200\n"
+"POT-Creation-Date: 2017-09-13 17:18+0000\n"
 "PO-Revision-Date: 2016-11-15 21:51+0200\n"
 "Last-Translator: Chris Leick <c.leick@vollbio.de>\n"
 "Language-Team: German <debian-l10n-german@lists.debian.org>\n"
diff -Nru apt-1.4.7/doc/po/es.po apt-1.4.8/doc/po/es.po
--- apt-1.4.7/doc/po/es.po	2017-07-13 23:45:39.000000000 +0200
+++ apt-1.4.8/doc/po/es.po	2017-09-13 18:47:33.000000000 +0200
@@ -38,7 +38,7 @@
 msgstr ""
 "Project-Id-Version: apt-doc 1.0.5\n"
 "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2017-07-13 23:47+0200\n"
+"POT-Creation-Date: 2017-09-13 17:18+0000\n"
 "PO-Revision-Date: 2014-07-04 01:31+0200\n"
 "Last-Translator: Omar Campagne <ocampagne@gmail.com>\n"
 "Language-Team: Debian l10n Spanish <debian-l10n-spanish@lists.debian.org>\n"
diff -Nru apt-1.4.7/doc/po/fr.po apt-1.4.8/doc/po/fr.po
--- apt-1.4.7/doc/po/fr.po	2017-07-13 23:45:39.000000000 +0200
+++ apt-1.4.8/doc/po/fr.po	2017-09-13 18:47:33.000000000 +0200
@@ -12,7 +12,7 @@
 msgstr ""
 "Project-Id-Version: apt-doc 1.0.5\n"
 "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2017-07-13 23:47+0200\n"
+"POT-Creation-Date: 2017-09-13 17:18+0000\n"
 "PO-Revision-Date: 2017-01-24 22:43+0100\n"
 "Last-Translator: Jean-Pierre Giraud <jean-pierregiraud@neuf.fr>\n"
 "Language-Team: French <debian-l10n-french@lists.debian.org>\n"
diff -Nru apt-1.4.7/doc/po/it.po apt-1.4.8/doc/po/it.po
--- apt-1.4.7/doc/po/it.po	2017-07-13 23:45:39.000000000 +0200
+++ apt-1.4.8/doc/po/it.po	2017-09-13 18:47:33.000000000 +0200
@@ -10,7 +10,7 @@
 msgstr ""
 "Project-Id-Version: apt-doc 1.0.5\n"
 "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2017-07-13 23:47+0200\n"
+"POT-Creation-Date: 2017-09-13 17:18+0000\n"
 "PO-Revision-Date: 2015-12-27 21:26+0200\n"
 "Last-Translator: Beatrice Torracca <beatricet@libero.it>\n"
 "Language-Team: Italian <debian-l10n-italian@lists.debian.org>\n"
diff -Nru apt-1.4.7/doc/po/ja.po apt-1.4.8/doc/po/ja.po
--- apt-1.4.7/doc/po/ja.po	2017-07-13 23:45:39.000000000 +0200
+++ apt-1.4.8/doc/po/ja.po	2017-09-13 18:47:33.000000000 +0200
@@ -10,7 +10,7 @@
 msgstr ""
 "Project-Id-Version: apt-doc 1.4\n"
 "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2017-07-13 23:47+0200\n"
+"POT-Creation-Date: 2017-09-13 17:18+0000\n"
 "PO-Revision-Date: 2017-01-06 04:50+0900\n"
 "Last-Translator: Takuma Yamada <tyamada@takumayamada.com>\n"
 "Language-Team: Japanese <debian-japanese@lists.debian.org>\n"
diff -Nru apt-1.4.7/doc/po/nl.po apt-1.4.8/doc/po/nl.po
--- apt-1.4.7/doc/po/nl.po	2017-07-13 23:45:39.000000000 +0200
+++ apt-1.4.8/doc/po/nl.po	2017-09-13 18:47:33.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: apt-doc 1.4~beta4-nl\n"
 "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2017-07-13 23:47+0200\n"
+"POT-Creation-Date: 2017-09-13 17:18+0000\n"
 "PO-Revision-Date: 2017-01-19 17:53+0100\n"
 "Last-Translator: Frans Spiesschaert <Frans.Spiesschaert@yucom.be>\n"
 "Language-Team: Debian Dutch l10n Team <debian-l10n-dutch@lists.debian.org>\n"
diff -Nru apt-1.4.7/doc/po/pl.po apt-1.4.8/doc/po/pl.po
--- apt-1.4.7/doc/po/pl.po	2017-07-13 23:45:39.000000000 +0200
+++ apt-1.4.8/doc/po/pl.po	2017-09-13 18:47:33.000000000 +0200
@@ -11,7 +11,7 @@
 msgstr ""
 "Project-Id-Version: apt-doc 1.0.5\n"
 "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2017-07-13 23:47+0200\n"
+"POT-Creation-Date: 2017-09-13 17:18+0000\n"
 "PO-Revision-Date: 2014-07-04 02:13+0200\n"
 "Last-Translator: Robert Luberda <robert@debian.org>\n"
 "Language-Team: Polish <manpages-pl-list@lists.sourceforge.net>\n"
diff -Nru apt-1.4.7/doc/po/pt_BR.po apt-1.4.8/doc/po/pt_BR.po
--- apt-1.4.7/doc/po/pt_BR.po	2017-07-13 23:45:39.000000000 +0200
+++ apt-1.4.8/doc/po/pt_BR.po	2017-09-13 18:47:33.000000000 +0200
@@ -9,7 +9,7 @@
 msgstr ""
 "Project-Id-Version: apt-doc 1.0.5\n"
 "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2017-07-13 23:47+0200\n"
+"POT-Creation-Date: 2017-09-13 17:18+0000\n"
 "PO-Revision-Date: 2004-09-20 17:02+0000\n"
 "Last-Translator: André Luís Lopes <andrelop@debian.org>\n"
 "Language-Team: <debian-l10n-portuguese@lists.debian.org>\n"
diff -Nru apt-1.4.7/doc/po/pt.po apt-1.4.8/doc/po/pt.po
--- apt-1.4.7/doc/po/pt.po	2017-07-13 23:45:39.000000000 +0200
+++ apt-1.4.8/doc/po/pt.po	2017-09-13 18:47:33.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: apt-doc 1.0.7\n"
 "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2017-07-13 23:47+0200\n"
+"POT-Creation-Date: 2017-09-13 17:18+0000\n"
 "PO-Revision-Date: 2014-08-29 00:34+0100\n"
 "Last-Translator: Américo Monteiro <a_monteiro@gmx.com>\n"
 "Language-Team: Portuguese <traduz@debianpt.org>\n"
diff -Nru apt-1.4.7/po/apt-all.pot apt-1.4.8/po/apt-all.pot
--- apt-1.4.7/po/apt-all.pot	2017-07-13 23:45:39.000000000 +0200
+++ apt-1.4.8/po/apt-all.pot	2017-09-13 18:47:33.000000000 +0200
@@ -5,9 +5,9 @@
 #, fuzzy
 msgid ""
 msgstr ""
-"Project-Id-Version: apt 1.4.7\n"
+"Project-Id-Version: apt 1.4.8\n"
 "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2017-07-13 23:47+0200\n"
+"POT-Creation-Date: 2017-09-13 17:18+0000\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"
diff -Nru apt-1.4.7/po/ar.po apt-1.4.8/po/ar.po
--- apt-1.4.7/po/ar.po	2017-07-13 23:45:39.000000000 +0200
+++ apt-1.4.8/po/ar.po	2017-09-13 18:47:33.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: apt 1.0.5\n"
 "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2017-02-06 14:41+0100\n"
+"POT-Creation-Date: 2017-09-13 17:18+0000\n"
 "PO-Revision-Date: 2006-10-20 21:28+0300\n"
 "Last-Translator: Ossama M. Khayat <okhayat@yahoo.com>\n"
 "Language-Team: Arabic <support@arabeyes.org>\n"
diff -Nru apt-1.4.7/po/ast.po apt-1.4.8/po/ast.po
--- apt-1.4.7/po/ast.po	2017-07-13 23:45:39.000000000 +0200
+++ apt-1.4.8/po/ast.po	2017-09-13 18:47:33.000000000 +0200
@@ -4,7 +4,7 @@
 msgstr ""
 "Project-Id-Version: apt 0.7.18\n"
 "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2017-02-06 14:41+0100\n"
+"POT-Creation-Date: 2017-09-13 17:18+0000\n"
 "PO-Revision-Date: 2010-10-02 23:35+0100\n"
 "Last-Translator: Iñigo Varela <ivarela@softastur.org>\n"
 "Language-Team: Asturian (ast)\n"
diff -Nru apt-1.4.7/po/bg.po apt-1.4.8/po/bg.po
--- apt-1.4.7/po/bg.po	2017-07-13 23:45:39.000000000 +0200
+++ apt-1.4.8/po/bg.po	2017-09-13 18:47:33.000000000 +0200
@@ -10,7 +10,7 @@
 msgstr ""
 "Project-Id-Version: apt 0.7.21\n"
 "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2017-02-06 14:41+0100\n"
+"POT-Creation-Date: 2017-09-13 17:18+0000\n"
 "PO-Revision-Date: 2012-06-25 17:23+0300\n"
 "Last-Translator: Damyan Ivanov <dmn@debian.org>\n"
 "Language-Team: Bulgarian <dict@fsa-bg.org>\n"
diff -Nru apt-1.4.7/po/bs.po apt-1.4.8/po/bs.po
--- apt-1.4.7/po/bs.po	2017-07-13 23:45:39.000000000 +0200
+++ apt-1.4.8/po/bs.po	2017-09-13 18:47:33.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: apt 0.5.26\n"
 "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2017-02-06 14:41+0100\n"
+"POT-Creation-Date: 2017-09-13 17:18+0000\n"
 "PO-Revision-Date: 2004-05-06 15:25+0100\n"
 "Last-Translator: Safir Šećerović <sapphire@linux.org.ba>\n"
 "Language-Team: Bosnian <lokal@lugbih.org>\n"
diff -Nru apt-1.4.7/po/ca.po apt-1.4.8/po/ca.po
--- apt-1.4.7/po/ca.po	2017-07-13 23:45:39.000000000 +0200
+++ apt-1.4.8/po/ca.po	2017-09-13 18:47:33.000000000 +0200
@@ -9,7 +9,7 @@
 msgstr ""
 "Project-Id-Version: apt 1.4~beta1\n"
 "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2017-02-06 14:41+0100\n"
+"POT-Creation-Date: 2017-09-13 17:18+0000\n"
 "PO-Revision-Date: 2016-12-05 21:09+0100\n"
 "Last-Translator: Oriol Debian <oriol.debian@gmail.com>\n"
 "Language-Team: Catalan <debian-l10n-catalan@lists.debian.org>\n"
diff -Nru apt-1.4.7/po/cs.po apt-1.4.8/po/cs.po
--- apt-1.4.7/po/cs.po	2017-07-13 23:45:39.000000000 +0200
+++ apt-1.4.8/po/cs.po	2017-09-13 18:47:33.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: apt 1.4.2\n"
 "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2017-02-06 14:41+0100\n"
+"POT-Creation-Date: 2017-09-13 17:18+0000\n"
 "PO-Revision-Date: 2017-05-06 11:08+0200\n"
 "Last-Translator: Miroslav Kure <kurem@debian.cz>\n"
 "Language-Team: Czech <debian-l10n-czech@lists.debian.org>\n"
@@ -208,8 +208,8 @@
 "See apt-secure(8) manpage for repository creation and user configuration "
 "details."
 msgstr ""
-"Podrobnosti o vytváření a nastavení repositářů naleznete v manuálové "
-"stránce apt-secure(8)."
+"Podrobnosti o vytváření a nastavení repositářů naleznete v manuálové stránce "
+"apt-secure(8)."
 
 #: apt-pkg/acquire-item.cc
 #, c-format
@@ -1039,7 +1039,6 @@
 "Release soubor %s neobsahuje Hash záznam, který by byl pro bezpečnost "
 "považován za dostatečně silný"
 
-
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
 msgid "Invalid '%s' entry in Release file %s"
diff -Nru apt-1.4.7/po/cy.po apt-1.4.8/po/cy.po
--- apt-1.4.7/po/cy.po	2017-07-13 23:45:39.000000000 +0200
+++ apt-1.4.8/po/cy.po	2017-09-13 18:47:33.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: apt 1.0.5\n"
 "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2017-02-06 14:41+0100\n"
+"POT-Creation-Date: 2017-09-13 17:18+0000\n"
 "PO-Revision-Date: 2005-06-06 13:46+0100\n"
 "Last-Translator: Dafydd Harries <daf@muse.19inch.net>\n"
 "Language-Team: Welsh <cy@pengwyn.linux.org.uk>\n"
diff -Nru apt-1.4.7/po/da.po apt-1.4.8/po/da.po
--- apt-1.4.7/po/da.po	2017-07-13 23:45:39.000000000 +0200
+++ apt-1.4.8/po/da.po	2017-09-13 18:47:33.000000000 +0200
@@ -12,7 +12,7 @@
 msgstr ""
 "Project-Id-Version: apt 1.4~rc2\n"
 "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2017-02-06 14:41+0100\n"
+"POT-Creation-Date: 2017-09-13 17:18+0000\n"
 "PO-Revision-Date: 2017-03-02 23:51+0200\n"
 "Last-Translator: Joe Hansen <joedalton2@yahoo.dk>\n"
 "Language-Team: Danish <debian-l10n-danish@lists.debian.org>\n"
@@ -205,8 +205,8 @@
 "Data from such a repository can't be authenticated and is therefore "
 "potentially dangerous to use."
 msgstr ""
-"Data, fra et sådant arkiv, kan ikke godkendes og er derfor potentielt "
-"farlig at anvende."
+"Data, fra et sådant arkiv, kan ikke godkendes og er derfor potentielt farlig "
+"at anvende."
 
 #: apt-pkg/acquire-item.cc
 msgid ""
@@ -260,7 +260,9 @@
 
 #: apt-pkg/acquire-item.cc
 msgid "Insufficient information available to perform this download securely"
-msgstr "Utilstrækkelig information er tilgængelig for at udføre denne overførsel sikkert"
+msgstr ""
+"Utilstrækkelig information er tilgængelig for at udføre denne overførsel "
+"sikkert"
 
 #: apt-pkg/acquire-item.cc apt-pkg/contrib/fileutl.cc
 #, c-format
@@ -295,8 +297,8 @@
 "An error occurred during the signature verification. The repository is not "
 "updated and the previous index files will be used. GPG error: %s: %s"
 msgstr ""
-"Der opstod en fejl under signaturbekræftelse. Arkivet er ikke opdateret "
-"og den forrige indeksfil vil blive brugt. GPG-fejl: %s: %s"
+"Der opstod en fejl under signaturbekræftelse. Arkivet er ikke opdateret og "
+"den forrige indeksfil vil blive brugt. GPG-fejl: %s: %s"
 
 #. Invalid signature file, reject (LP: #346386) (Closes: #627642)
 #: apt-pkg/acquire-item.cc
@@ -310,8 +312,8 @@
 "Skipping acquire of configured file '%s' as repository '%s' doesn't support "
 "architecture '%s'"
 msgstr ""
-"Udelader erhvervelse af konfigureret fil »%s«, da arkivet »%s« ikke understøtter "
-"arkitekturen »%s«"
+"Udelader erhvervelse af konfigureret fil »%s«, da arkivet »%s« ikke "
+"understøtter arkitekturen »%s«"
 
 #: apt-pkg/acquire-item.cc
 #, c-format
@@ -403,8 +405,7 @@
 #, c-format
 msgid ""
 "Please insert the disc labeled: '%s' in the drive '%s' and press [Enter]."
-msgstr ""
-"Indsæt venligst disken med navnet: »%s« i drevet »%s« og tryk [Retur]."
+msgstr "Indsæt venligst disken med navnet: »%s« i drevet »%s« og tryk [Retur]."
 
 #: apt-pkg/acquire.cc apt-pkg/cdrom.cc
 #, c-format
@@ -667,8 +668,7 @@
 "Command line option %s is not understood in combination with the other "
 "options"
 msgstr ""
-"Kommandolinjetilvalget %s forstås ikke i kombination med de andre "
-"tilvalg"
+"Kommandolinjetilvalget %s forstås ikke i kombination med de andre tilvalg"
 
 #: apt-pkg/contrib/cmndline.cc
 #, c-format
@@ -1056,7 +1056,8 @@
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
 msgid "Conflicting values set for option %s regarding source %s %s"
-msgstr "Værdisæt er ikke i overensstemmelse for tilvalget %s jævnfør kilden %s %s"
+msgstr ""
+"Værdisæt er ikke i overensstemmelse for tilvalget %s jævnfør kilden %s %s"
 
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
@@ -1066,7 +1067,9 @@
 #: apt-pkg/deb/debmetaindex.cc
 #, c-format
 msgid "Conflicting values set for option %s regarding source %s %s: %s != %s"
-msgstr "Værdisæt er ikke i overenstemmelse for tilvalget %s jævnfør kilden %s %s: %s != %s"
+msgstr ""
+"Værdisæt er ikke i overenstemmelse for tilvalget %s jævnfør kilden %s %s: "
+"%s != %s"
 
 #: apt-pkg/deb/debrecords.cc apt-pkg/tagfile.cc
 #, c-format
@@ -1522,7 +1525,9 @@
 #: apt-pkg/policy.cc
 #, c-format
 msgid "%s: Value %s is outside the range of valid pin priorities (%d to %d)"
-msgstr "%s: Værdien %s er uden for intervallet med gyldige pin-prioriteringer (%d til %d)"
+msgstr ""
+"%s: Værdien %s er uden for intervallet med gyldige pin-prioriteringer (%d "
+"til %d)"
 
 #: apt-pkg/policy.cc
 msgid "No priority (or zero) specified for pin"
@@ -1734,7 +1739,8 @@
 #: apt-private/private-cacheset.cc apt-private/private-install.cc
 #, c-format
 msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n"
-msgstr "Pakken »%s« er ikke installeret, så blev ikke fjernet. Mente du »%s«?\n"
+msgstr ""
+"Pakken »%s« er ikke installeret, så blev ikke fjernet. Mente du »%s«?\n"
 
 #: apt-private/private-cacheset.cc apt-private/private-install.cc
 #, c-format
@@ -1801,8 +1807,8 @@
 "--force-yes is deprecated, use one of the options starting with --allow "
 "instead."
 msgstr ""
-"--force-yes er forældet, brug i stedet for et af tilvalgene startende "
-"med --allow"
+"--force-yes er forældet, brug i stedet for et af tilvalgene startende med --"
+"allow"
 
 #: apt-private/private-download.cc
 msgid ""
@@ -3835,4 +3841,3 @@
 #: methods/store.cc
 msgid "Empty files can't be valid archives"
 msgstr "Tomme filer kan ikke være gyldige arkiver"
-
diff -Nru apt-1.4.7/po/de.po apt-1.4.8/po/de.po
--- apt-1.4.7/po/de.po	2017-07-13 23:45:39.000000000 +0200
+++ apt-1.4.8/po/de.po	2017-09-13 18:47:33.000000000 +0200
@@ -10,7 +10,7 @@
 msgstr ""
 "Project-Id-Version: apt 1.0.8\n"
 "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2017-02-06 14:41+0100\n"
+"POT-Creation-Date: 2017-09-13 17:18+0000\n"
 "PO-Revision-Date: 2014-09-19 13:04+0100\n"
 "Last-Translator: Holger Wansing <linux@wansing-online.de>\n"
 "Language-Team: Debian German <debian-l10n-german@lists.debian.org>\n"
diff -Nru apt-1.4.7/po/dz.po apt-1.4.8/po/dz.po
--- apt-1.4.7/po/dz.po	2017-07-13 23:45:39.000000000 +0200
+++ apt-1.4.8/po/dz.po	2017-09-13 18:47:33.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: apt 1.0.5\n"
 "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2017-02-06 14:41+0100\n"
+"POT-Creation-Date: 2017-09-13 17:18+0000\n"
 "PO-Revision-Date: 2006-09-19 09:49+0530\n"
 "Last-Translator: Kinley Tshering <gasepkuenden2k3@hotmail.com>\n"
 "Language-Team: Dzongkha <pgeyleg@dit.gov.bt>\n"
diff -Nru apt-1.4.7/po/el.po apt-1.4.8/po/el.po
--- apt-1.4.7/po/el.po	2017-07-13 23:45:39.000000000 +0200
+++ apt-1.4.8/po/el.po	2017-09-13 18:47:33.000000000 +0200
@@ -16,7 +16,7 @@
 msgstr ""
 "Project-Id-Version: apt 1.0.5\n"
 "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2017-02-06 14:41+0100\n"
+"POT-Creation-Date: 2017-09-13 17:18+0000\n"
 "PO-Revision-Date: 2008-08-26 18:25+0300\n"
 "Last-Translator: Θανάσης Νάτσης <natsisthanasis@gmail.com>\n"
 "Language-Team: Greek <debian-l10n-greek@lists.debian.org>\n"
diff -Nru apt-1.4.7/po/es.po apt-1.4.8/po/es.po
--- apt-1.4.7/po/es.po	2017-07-13 23:45:39.000000000 +0200
+++ apt-1.4.8/po/es.po	2017-09-13 18:47:33.000000000 +0200
@@ -34,7 +34,7 @@
 msgstr ""
 "Project-Id-Version: apt 0.8.10\n"
 "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2017-02-06 14:41+0100\n"
+"POT-Creation-Date: 2017-09-13 17:18+0000\n"
 "PO-Revision-Date: 2016-01-26 01:51+0100\n"
 "Last-Translator: Manuel \"Venturi\" Porras Peralta <venturi@openmailbox."
 "org>\n"
diff -Nru apt-1.4.7/po/eu.po apt-1.4.8/po/eu.po
--- apt-1.4.7/po/eu.po	2017-07-13 23:45:39.000000000 +0200
+++ apt-1.4.8/po/eu.po	2017-09-13 18:47:33.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: apt 1.0.5\n"
 "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2017-02-06 14:41+0100\n"
+"POT-Creation-Date: 2017-09-13 17:18+0000\n"
 "PO-Revision-Date: 2009-05-17 00:41+0200\n"
 "Last-Translator: Piarres Beobide <pi@beobide.net>\n"
 "Language-Team: Euskara <debian-l10n-basque@lists.debian.org>\n"
diff -Nru apt-1.4.7/po/fi.po apt-1.4.8/po/fi.po
--- apt-1.4.7/po/fi.po	2017-07-13 23:45:39.000000000 +0200
+++ apt-1.4.8/po/fi.po	2017-09-13 18:47:33.000000000 +0200
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: apt 0.5.26\n"
 "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2017-02-06 14:41+0100\n"
+"POT-Creation-Date: 2017-09-13 17:18+0000\n"
 "PO-Revision-Date: 2008-12-11 14:52+0200\n"
 "Last-Translator: Tapio Lehtonen <tale@debian.org>\n"
 "Language-Team: Finnish <debian-l10n-finnish@lists.debian.org>\n"
diff -Nru apt-1.4.7/po/fr.po apt-1.4.8/po/fr.po
--- apt-1.4.7/po/fr.po	2017-07-13 23:45:39.000000000 +0200
+++ apt-1.4.8/po/fr.po	2017-09-13 18:47:33.000000000 +0200
@@ -9,7 +9,7 @@
 msgstr ""
 "Project-Id-Version: apt 1.0.5\n"
 "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2017-02-06 14:41+0100\n"
+"POT-Creation-Date: 2017-09-13 17:18+0000\n"
 "PO-Revision-Date: 2013-12-15 16:45+0100\n"
 "Last-Translator: Julien Patriarca <leatherface@debian.org>\n"
 "Language-Team: French <debian-l10n-french@lists.debian.org>\n"
diff -Nru apt-1.4.7/po/gl.po apt-1.4.8/po/gl.po
--- apt-1.4.7/po/gl.po	2017-07-13 23:45:39.000000000 +0200
+++ apt-1.4.8/po/gl.po	2017-09-13 18:47:33.000000000 +0200
@@ -10,7 +10,7 @@
 msgstr ""
 "Project-Id-Version: apt 1.0.5\n"
 "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2017-02-06 14:41+0100\n"
+"POT-Creation-Date: 2017-09-13 17:18+0000\n"
 "PO-Revision-Date: 2011-05-12 15:28+0100\n"
 "Last-Translator: Miguel Anxo Bouzada <mbouzada@gmail.com>\n"
 "Language-Team: galician <proxecto@trasno.net>\n"
diff -Nru apt-1.4.7/po/hu.po apt-1.4.8/po/hu.po
--- apt-1.4.7/po/hu.po	2017-07-13 23:45:39.000000000 +0200
+++ apt-1.4.8/po/hu.po	2017-09-13 18:47:33.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: apt 1.0.5\n"
 "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2017-02-06 14:41+0100\n"
+"POT-Creation-Date: 2017-09-13 17:18+0000\n"
 "PO-Revision-Date: 2016-04-10 19:46+0200\n"
 "Last-Translator: Gabor Kelemen <kelemeng@ubuntu.com>\n"
 "Language-Team: Hungarian <gnome-hu-list@gnome.org>\n"
diff -Nru apt-1.4.7/po/it.po apt-1.4.8/po/it.po
--- apt-1.4.7/po/it.po	2017-07-13 23:45:39.000000000 +0200
+++ apt-1.4.8/po/it.po	2017-09-13 18:47:33.000000000 +0200
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: apt 1.0.5\n"
 "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2017-02-06 14:41+0100\n"
+"POT-Creation-Date: 2017-09-13 17:18+0000\n"
 "PO-Revision-Date: 2015-04-07 16:51+0100\n"
 "Last-Translator: Milo Casagrande <milo@milo.name>\n"
 "Language-Team: Italian <tp@lists.linux.it>\n"
diff -Nru apt-1.4.7/po/ja.po apt-1.4.8/po/ja.po
--- apt-1.4.7/po/ja.po	2017-07-13 23:45:39.000000000 +0200
+++ apt-1.4.8/po/ja.po	2017-09-13 18:47:33.000000000 +0200
@@ -10,7 +10,7 @@
 msgstr ""
 "Project-Id-Version: apt 1.4\n"
 "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2017-01-27 21:41+0100\n"
+"POT-Creation-Date: 2017-09-13 17:18+0000\n"
 "PO-Revision-Date: 2017-01-06 04:50+0900\n"
 "Last-Translator: Takuma Yamada <tyamada@takumayamada.com>\n"
 "Language-Team: Japanese <debian-japanese@lists.debian.org>\n"
diff -Nru apt-1.4.7/po/km.po apt-1.4.8/po/km.po
--- apt-1.4.7/po/km.po	2017-07-13 23:45:39.000000000 +0200
+++ apt-1.4.8/po/km.po	2017-09-13 18:47:33.000000000 +0200
@@ -10,7 +10,7 @@
 msgstr ""
 "Project-Id-Version: apt 1.0.5\n"
 "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2017-02-06 14:41+0100\n"
+"POT-Creation-Date: 2017-09-13 17:18+0000\n"
 "PO-Revision-Date: 2006-10-10 09:48+0700\n"
 "Last-Translator: Khoem Sokhem <khoemsokhem@khmeros.info>\n"
 "Language-Team: Khmer <support@khmeros.info>\n"
diff -Nru apt-1.4.7/po/ko.po apt-1.4.8/po/ko.po
--- apt-1.4.7/po/ko.po	2017-07-13 23:45:39.000000000 +0200
+++ apt-1.4.8/po/ko.po	2017-09-13 18:47:33.000000000 +0200
@@ -5,7 +5,7 @@
 msgstr ""
 "Project-Id-Version: apt 1.0.5\n"
 "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2017-02-06 14:41+0100\n"
+"POT-Creation-Date: 2017-09-13 17:18+0000\n"
 "PO-Revision-Date: 2010-08-30 02:31+0900\n"
 "Last-Translator: Changwoo Ryu <cwryu@debian.org>\n"
 "Language-Team: Korean <debian-l10n-korean@lists.debian.org>\n"
diff -Nru apt-1.4.7/po/ku.po apt-1.4.8/po/ku.po
--- apt-1.4.7/po/ku.po	2017-07-13 23:45:39.000000000 +0200
+++ apt-1.4.8/po/ku.po	2017-09-13 18:47:33.000000000 +0200
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: apt 1.0.5\n"
 "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2017-02-06 14:41+0100\n"
+"POT-Creation-Date: 2017-09-13 17:18+0000\n"
 "PO-Revision-Date: 2008-05-08 12:48+0200\n"
 "Last-Translator: Erdal Ronahi <erdal.ronahi@gmail.com>\n"
 "Language-Team: ku <ubuntu-l10n-kur@lists.ubuntu.com>\n"
diff -Nru apt-1.4.7/po/lt.po apt-1.4.8/po/lt.po
--- apt-1.4.7/po/lt.po	2017-07-13 23:45:39.000000000 +0200
+++ apt-1.4.8/po/lt.po	2017-09-13 18:47:33.000000000 +0200
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: apt 1.0.5\n"
 "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2017-02-06 14:41+0100\n"
+"POT-Creation-Date: 2017-09-13 17:18+0000\n"
 "PO-Revision-Date: 2008-08-02 01:47-0400\n"
 "Last-Translator: Gintautas Miliauskas <gintas@akl.lt>\n"
 "Language-Team: Lithuanian <komp_lt@konferencijos.lt>\n"
diff -Nru apt-1.4.7/po/mr.po apt-1.4.8/po/mr.po
--- apt-1.4.7/po/mr.po	2017-07-13 23:45:39.000000000 +0200
+++ apt-1.4.8/po/mr.po	2017-09-13 18:47:33.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: apt 1.0.5\n"
 "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2017-02-06 14:41+0100\n"
+"POT-Creation-Date: 2017-09-13 17:18+0000\n"
 "PO-Revision-Date: 2008-11-20 23:27+0530\n"
 "Last-Translator: Sampada <sampadanakhare@gmail.com>\n"
 "Language-Team: Marathi, janabhaaratii, C-DAC, Mumbai, India "
diff -Nru apt-1.4.7/po/nb.po apt-1.4.8/po/nb.po
--- apt-1.4.7/po/nb.po	2017-07-13 23:45:39.000000000 +0200
+++ apt-1.4.8/po/nb.po	2017-09-13 18:47:33.000000000 +0200
@@ -12,7 +12,7 @@
 msgstr ""
 "Project-Id-Version: apt 1.0.5\n"
 "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2017-02-06 14:41+0100\n"
+"POT-Creation-Date: 2017-09-13 17:18+0000\n"
 "PO-Revision-Date: 2016-06-11 22:38+0200\n"
 "Last-Translator: Petter Reinholdtsen <pere@hungry.com>\n"
 "Language-Team: Norwegian Bokmål <i18n-no@lister.ping.uio.no>\n"
diff -Nru apt-1.4.7/po/ne.po apt-1.4.8/po/ne.po
--- apt-1.4.7/po/ne.po	2017-07-13 23:45:39.000000000 +0200
+++ apt-1.4.8/po/ne.po	2017-09-13 18:47:33.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: apt 1.0.5\n"
 "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2017-02-06 14:41+0100\n"
+"POT-Creation-Date: 2017-09-13 17:18+0000\n"
 "PO-Revision-Date: 2006-06-12 14:35+0545\n"
 "Last-Translator: Shiva Pokharel <pokharelshiva@hotmail.com>\n"
 "Language-Team: Nepali <info@mpp.org.np>\n"
diff -Nru apt-1.4.7/po/nl.po apt-1.4.8/po/nl.po
--- apt-1.4.7/po/nl.po	2017-07-13 23:45:39.000000000 +0200
+++ apt-1.4.8/po/nl.po	2017-09-13 18:47:33.000000000 +0200
@@ -12,7 +12,7 @@
 msgstr ""
 "Project-Id-Version: apt 1.4~beta4\n"
 "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2017-02-06 14:20+0100\n"
+"POT-Creation-Date: 2017-09-13 17:18+0000\n"
 "PO-Revision-Date: 2017-01-19 17:32+0100\n"
 "Last-Translator: Frans Spiesschaert <Frans.Spiesschaert@yucom.be>\n"
 "Language-Team: Debian Dutch l10n Team <debian-l10n-dutch@lists.debian.org>\n"
diff -Nru apt-1.4.7/po/nn.po apt-1.4.8/po/nn.po
--- apt-1.4.7/po/nn.po	2017-07-13 23:45:39.000000000 +0200
+++ apt-1.4.8/po/nn.po	2017-09-13 18:47:33.000000000 +0200
@@ -9,7 +9,7 @@
 msgstr ""
 "Project-Id-Version: apt 1.0.5\n"
 "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2017-02-06 14:41+0100\n"
+"POT-Creation-Date: 2017-09-13 17:18+0000\n"
 "PO-Revision-Date: 2005-02-14 23:30+0100\n"
 "Last-Translator: Havard Korsvoll <korsvoll@skulelinux.no>\n"
 "Language-Team: Norwegian nynorsk <i18n-nn@lister.ping.uio.no>\n"
diff -Nru apt-1.4.7/po/pl.po apt-1.4.8/po/pl.po
--- apt-1.4.7/po/pl.po	2017-07-13 23:45:39.000000000 +0200
+++ apt-1.4.8/po/pl.po	2017-09-13 18:47:33.000000000 +0200
@@ -11,7 +11,7 @@
 msgstr ""
 "Project-Id-Version: apt 0.9.7.3\n"
 "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2017-02-06 14:41+0100\n"
+"POT-Creation-Date: 2017-09-13 17:18+0000\n"
 "PO-Revision-Date: 2012-07-28 21:53+0200\n"
 "Last-Translator: Michał Kułach <michal.kulach@gmail.com>\n"
 "Language-Team: Polish <debian-l10n-polish@lists.debian.org>\n"
diff -Nru apt-1.4.7/po/pt_BR.po apt-1.4.8/po/pt_BR.po
--- apt-1.4.7/po/pt_BR.po	2017-07-13 23:45:39.000000000 +0200
+++ apt-1.4.8/po/pt_BR.po	2017-09-13 18:47:33.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: apt 1.0.5\n"
 "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2017-02-06 14:41+0100\n"
+"POT-Creation-Date: 2017-09-13 17:18+0000\n"
 "PO-Revision-Date: 2008-11-17 02:33-0200\n"
 "Last-Translator: Felipe Augusto van de Wiel (faw) <faw@debian.org>\n"
 "Language-Team: Brazilian Portuguese <debian-l10n-portuguese@lists.debian."
diff -Nru apt-1.4.7/po/pt.po apt-1.4.8/po/pt.po
--- apt-1.4.7/po/pt.po	2017-07-13 23:45:39.000000000 +0200
+++ apt-1.4.8/po/pt.po	2017-09-13 18:47:33.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: apt 1.0.5\n"
 "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2017-02-06 14:41+0100\n"
+"POT-Creation-Date: 2017-09-13 17:18+0000\n"
 "PO-Revision-Date: 2012-06-29 15:45+0100\n"
 "Last-Translator: Miguel Figueiredo <elmig@debianpt.org>\n"
 "Language-Team: Portuguese <traduz@debianpt.org>\n"
diff -Nru apt-1.4.7/po/ro.po apt-1.4.8/po/ro.po
--- apt-1.4.7/po/ro.po	2017-07-13 23:45:39.000000000 +0200
+++ apt-1.4.8/po/ro.po	2017-09-13 18:47:33.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: apt 1.0.5\n"
 "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2017-02-06 14:41+0100\n"
+"POT-Creation-Date: 2017-09-13 17:18+0000\n"
 "PO-Revision-Date: 2008-11-15 02:21+0200\n"
 "Last-Translator: Eddy Petrișor <eddy.petrisor@gmail.com>\n"
 "Language-Team: Romanian <debian-l10n-romanian@lists.debian.org>\n"
diff -Nru apt-1.4.7/po/ru.po apt-1.4.8/po/ru.po
--- apt-1.4.7/po/ru.po	2017-07-13 23:45:39.000000000 +0200
+++ apt-1.4.8/po/ru.po	2017-09-13 18:47:33.000000000 +0200
@@ -12,7 +12,7 @@
 msgstr ""
 "Project-Id-Version: apt 1.2.12\n"
 "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2017-02-06 14:41+0100\n"
+"POT-Creation-Date: 2017-09-13 17:18+0000\n"
 "PO-Revision-Date: 2016-05-19 20:50+0300\n"
 "Last-Translator: Yuri Kozlov <yuray@komyakino.ru>\n"
 "Language-Team: Russian <debian-l10n-russian@lists.debian.org>\n"
diff -Nru apt-1.4.7/po/sk.po apt-1.4.8/po/sk.po
--- apt-1.4.7/po/sk.po	2017-07-13 23:45:39.000000000 +0200
+++ apt-1.4.8/po/sk.po	2017-09-13 18:47:33.000000000 +0200
@@ -10,7 +10,7 @@
 msgstr ""
 "Project-Id-Version: apt 1.0.5\n"
 "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2017-02-06 14:41+0100\n"
+"POT-Creation-Date: 2017-09-13 17:18+0000\n"
 "PO-Revision-Date: 2012-06-28 20:49+0100\n"
 "Last-Translator: Ivan Masár <helix84@centrum.sk>\n"
 "Language-Team: Slovak <sk-i18n@lists.linux.sk>\n"
diff -Nru apt-1.4.7/po/sl.po apt-1.4.8/po/sl.po
--- apt-1.4.7/po/sl.po	2017-07-13 23:45:39.000000000 +0200
+++ apt-1.4.8/po/sl.po	2017-09-13 18:47:33.000000000 +0200
@@ -4,7 +4,7 @@
 msgstr ""
 "Project-Id-Version: apt 0.5.5\n"
 "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2017-02-06 14:41+0100\n"
+"POT-Creation-Date: 2017-09-13 17:18+0000\n"
 "PO-Revision-Date: 2012-06-27 21:29+0000\n"
 "Last-Translator: Andrej Znidarsic <andrej.znidarsic@gmail.com>\n"
 "Language-Team: Slovenian <sl@li.org>\n"
diff -Nru apt-1.4.7/po/sv.po apt-1.4.8/po/sv.po
--- apt-1.4.7/po/sv.po	2017-07-13 23:45:39.000000000 +0200
+++ apt-1.4.8/po/sv.po	2017-09-13 18:47:33.000000000 +0200
@@ -10,7 +10,7 @@
 msgstr ""
 "Project-Id-Version: apt\n"
 "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2017-02-06 14:41+0100\n"
+"POT-Creation-Date: 2017-09-13 17:18+0000\n"
 "PO-Revision-Date: 2015-08-19 21:33+0200\n"
 "Last-Translator: Anders Jonsson <anders.jonsson@norsjovallen.se>\n"
 "Language-Team: Swedish <debian-l10n-swedish@debian.org>\n"
diff -Nru apt-1.4.7/po/th.po apt-1.4.8/po/th.po
--- apt-1.4.7/po/th.po	2017-07-13 23:45:39.000000000 +0200
+++ apt-1.4.8/po/th.po	2017-09-13 18:47:33.000000000 +0200
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: apt 1.0.5\n"
 "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2017-02-06 14:41+0100\n"
+"POT-Creation-Date: 2017-09-13 17:18+0000\n"
 "PO-Revision-Date: 2014-12-12 13:00+0700\n"
 "Last-Translator: Theppitak Karoonboonyanan <thep@debian.org>\n"
 "Language-Team: Thai <thai-l10n@googlegroups.com>\n"
diff -Nru apt-1.4.7/po/tl.po apt-1.4.8/po/tl.po
--- apt-1.4.7/po/tl.po	2017-07-13 23:45:39.000000000 +0200
+++ apt-1.4.8/po/tl.po	2017-09-13 18:47:33.000000000 +0200
@@ -10,7 +10,7 @@
 msgstr ""
 "Project-Id-Version: apt 1.0.5\n"
 "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2017-02-06 14:41+0100\n"
+"POT-Creation-Date: 2017-09-13 17:18+0000\n"
 "PO-Revision-Date: 2007-03-29 21:36+0800\n"
 "Last-Translator: Eric Pareja <xenos@upm.edu.ph>\n"
 "Language-Team: Tagalog <debian-tl@banwa.upm.edu.ph>\n"
diff -Nru apt-1.4.7/po/tr.po apt-1.4.8/po/tr.po
--- apt-1.4.7/po/tr.po	2017-07-13 23:45:39.000000000 +0200
+++ apt-1.4.8/po/tr.po	2017-09-13 18:47:33.000000000 +0200
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: apt 1.0.5\n"
 "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2017-02-06 14:41+0100\n"
+"POT-Creation-Date: 2017-09-13 17:18+0000\n"
 "PO-Revision-Date: 2016-09-24 03:24+0300\n"
 "Last-Translator: Mert Dirik <mertdirik@gmail.com>\n"
 "Language-Team: Debian l10n Turkish <debian-l10n-turkish@lists.debian.org>\n"
diff -Nru apt-1.4.7/po/uk.po apt-1.4.8/po/uk.po
--- apt-1.4.7/po/uk.po	2017-07-13 23:45:39.000000000 +0200
+++ apt-1.4.8/po/uk.po	2017-09-13 18:47:33.000000000 +0200
@@ -12,7 +12,7 @@
 msgstr ""
 "Project-Id-Version: apt 1.0.5\n"
 "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2017-02-06 14:41+0100\n"
+"POT-Creation-Date: 2017-09-13 17:18+0000\n"
 "PO-Revision-Date: 2012-09-25 20:19+0300\n"
 "Last-Translator: A. Bondarenko <artem.brz@gmail.com>\n"
 "Language-Team: Українська <uk@li.org>\n"
diff -Nru apt-1.4.7/po/vi.po apt-1.4.8/po/vi.po
--- apt-1.4.7/po/vi.po	2017-07-13 23:45:39.000000000 +0200
+++ apt-1.4.8/po/vi.po	2017-09-13 18:47:33.000000000 +0200
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: apt 1.0.8\n"
 "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2017-02-06 14:41+0100\n"
+"POT-Creation-Date: 2017-09-13 17:18+0000\n"
 "PO-Revision-Date: 2014-09-12 13:48+0700\n"
 "Last-Translator: Trần Ngọc Quân <vnwildman@gmail.com>\n"
 "Language-Team: Vietnamese <translation-team-vi@lists.sourceforge.net>\n"
diff -Nru apt-1.4.7/po/zh_CN.po apt-1.4.8/po/zh_CN.po
--- apt-1.4.7/po/zh_CN.po	2017-07-13 23:45:39.000000000 +0200
+++ apt-1.4.8/po/zh_CN.po	2017-09-13 18:47:33.000000000 +0200
@@ -10,7 +10,7 @@
 msgstr ""
 "Project-Id-Version: apt 1.4.x\n"
 "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2017-02-06 14:41+0100\n"
+"POT-Creation-Date: 2017-09-13 17:18+0000\n"
 "PO-Revision-Date: 2017-01-26 12:00+0000\n"
 "Last-Translator: Zhou Mo <cdluminate@gmail.com>\n"
 "Language-Team: Chinese (simplified) <i18n-zh@googlegroups.com>\n"
diff -Nru apt-1.4.7/po/zh_TW.po apt-1.4.8/po/zh_TW.po
--- apt-1.4.7/po/zh_TW.po	2017-07-13 23:45:39.000000000 +0200
+++ apt-1.4.8/po/zh_TW.po	2017-09-13 18:47:33.000000000 +0200
@@ -10,7 +10,7 @@
 msgstr ""
 "Project-Id-Version: apt 1.2.X\n"
 "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2017-02-06 14:41+0100\n"
+"POT-Creation-Date: 2017-09-13 17:18+0000\n"
 "PO-Revision-Date: 2009-01-28 10:41+0800\n"
 "Last-Translator: Tetralet <tetralet@gmail.com>\n"
 "Language-Team: Debian-user in Chinese [Big5] <debian-chinese-big5@lists."

--- End Message ---
--- Begin Message ---
Version: 9.2

Hi.

The updates referenced by each of these bugs was included in today's
point release of stretch.

Regards,

Adam

--- End Message ---

Reply to: