From 9c3dd488d7e03f9849c4ce1a35d3592156097562 Mon Sep 17 00:00:00 2001 From: "bubulle@debian.org" <> Date: Tue, 24 Feb 2009 08:35:02 +0100 Subject: French translation update --- debian/changelog | 1 + 1 file changed, 1 insertion(+) (limited to 'debian') diff --git a/debian/changelog b/debian/changelog index dfc18316b..867b66f08 100644 --- a/debian/changelog +++ b/debian/changelog @@ -5,6 +5,7 @@ apt (0.7.20.3) UNRELEASED; urgency=low - bg.po. Closes: #513211 - zh_TW.po. Closes: #513311 - nb.po. Closes: #513843 + - fr.po -- Michael Vogt Sun, 08 Feb 2009 11:47:48 +0100 -- cgit v1.2.3 From 1ba20bc48f7e4e109682f5be7b3d6343af0eeb93 Mon Sep 17 00:00:00 2001 From: "bubulle@debian.org" <> Date: Wed, 4 Mar 2009 21:37:32 +0100 Subject: Swedish translation update --- debian/changelog | 1 + 1 file changed, 1 insertion(+) (limited to 'debian') diff --git a/debian/changelog b/debian/changelog index 867b66f08..7dcdd81b6 100644 --- a/debian/changelog +++ b/debian/changelog @@ -6,6 +6,7 @@ apt (0.7.20.3) UNRELEASED; urgency=low - zh_TW.po. Closes: #513311 - nb.po. Closes: #513843 - fr.po + - sv.po. Closes: #518070 -- Michael Vogt Sun, 08 Feb 2009 11:47:48 +0100 -- cgit v1.2.3 From 8bd7c0c1f2407a51a67749b025952611e2ad563c Mon Sep 17 00:00:00 2001 From: "bubulle@debian.org" <> Date: Thu, 19 Mar 2009 19:49:14 +0100 Subject: Slovak translation update --- debian/changelog | 1 + 1 file changed, 1 insertion(+) (limited to 'debian') diff --git a/debian/changelog b/debian/changelog index 7dcdd81b6..c0baa263e 100644 --- a/debian/changelog +++ b/debian/changelog @@ -7,6 +7,7 @@ apt (0.7.20.3) UNRELEASED; urgency=low - nb.po. Closes: #513843 - fr.po - sv.po. Closes: #518070 + - sk.po. Closes: #520403 -- Michael Vogt Sun, 08 Feb 2009 11:47:48 +0100 -- cgit v1.2.3 From 6187ad8b5ceaf88cd48cedf3021bd8a61c6eafd0 Mon Sep 17 00:00:00 2001 From: "bubulle@debian.org" <> Date: Thu, 19 Mar 2009 19:52:21 +0100 Subject: French translation update was reported in the BTS --- debian/changelog | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'debian') diff --git a/debian/changelog b/debian/changelog index c0baa263e..0d80ba4c8 100644 --- a/debian/changelog +++ b/debian/changelog @@ -5,7 +5,7 @@ apt (0.7.20.3) UNRELEASED; urgency=low - bg.po. Closes: #513211 - zh_TW.po. Closes: #513311 - nb.po. Closes: #513843 - - fr.po + - fr.po. Closes: #520430 - sv.po. Closes: #518070 - sk.po. Closes: #520403 -- cgit v1.2.3 From d784cd85944c31a58b92e3235101b52d73712612 Mon Sep 17 00:00:00 2001 From: "bubulle@debian.org" <> Date: Thu, 2 Apr 2009 07:31:41 +0200 Subject: Italian translation --- debian/changelog | 1 + 1 file changed, 1 insertion(+) (limited to 'debian') diff --git a/debian/changelog b/debian/changelog index 0d80ba4c8..b63fcaeab 100644 --- a/debian/changelog +++ b/debian/changelog @@ -8,6 +8,7 @@ apt (0.7.20.3) UNRELEASED; urgency=low - fr.po. Closes: #520430 - sv.po. Closes: #518070 - sk.po. Closes: #520403 + - it.po. Closes: #522222 -- Michael Vogt Sun, 08 Feb 2009 11:47:48 +0100 -- cgit v1.2.3 From 7704f93346f55878348de8ce58d5ee5443a4d14d Mon Sep 17 00:00:00 2001 From: "bubulle@debian.org" <> Date: Wed, 8 Apr 2009 19:52:19 +0200 Subject: Slovak translation update --- debian/changelog | 1 + 1 file changed, 1 insertion(+) (limited to 'debian') diff --git a/debian/changelog b/debian/changelog index b63fcaeab..94abad0bf 100644 --- a/debian/changelog +++ b/debian/changelog @@ -9,6 +9,7 @@ apt (0.7.20.3) UNRELEASED; urgency=low - sv.po. Closes: #518070 - sk.po. Closes: #520403 - it.po. Closes: #522222 + - sk.po. Closes: #520403 -- Michael Vogt Sun, 08 Feb 2009 11:47:48 +0100 -- cgit v1.2.3 From a7c526b6288aa21b64be5991a3f406fd9509db05 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Wed, 8 Apr 2009 22:37:40 +0200 Subject: apt.cron.daily: catch invalid dates due to DST time changes in the stamp files --- debian/apt.cron.daily | 21 +++++++++++++++++++-- debian/changelog | 6 +++++- 2 files changed, 24 insertions(+), 3 deletions(-) (limited to 'debian') diff --git a/debian/apt.cron.daily b/debian/apt.cron.daily index 32fbafc57..5c5ca88c7 100644 --- a/debian/apt.cron.daily +++ b/debian/apt.cron.daily @@ -50,8 +50,25 @@ check_stamp() fi # compare midnight today to midnight the day the stamp was updated - stamp=$(date --date=$(date -r $stamp --iso-8601) +%s) - now=$(date --date=$(date --iso-8601) +%s) + stamp_file="$stamp" + stamp=$(date --date=$(date -r $stamp_file --iso-8601) +%s 2>/dev/null) + if [ "$?" != "0" ]; then + # Due to some timezones returning 'invalid date' for midnight on + # certain dates (eg America/Sao_Paulo), if date returns with error + # remove the stamp file and return 0. See coreutils bug: + # http://lists.gnu.org/archive/html/bug-coreutils/2007-09/msg00176.html + rm -f "$stamp_file" + return 0 + fi + + now=$(date --date=$(date --iso-8601) +%s 2>/dev/null) + if [ "$?" != "0" ]; then + # As above, due to some timezones returning 'invalid date' for midnight + # on certain dates (eg America/Sao_Paulo), if date returns with error + # return 0. + return 0 + fi + delta=$(($now-$stamp)) # intervall is in days, diff --git a/debian/changelog b/debian/changelog index 94abad0bf..2b84d16a6 100644 --- a/debian/changelog +++ b/debian/changelog @@ -10,8 +10,12 @@ apt (0.7.20.3) UNRELEASED; urgency=low - sk.po. Closes: #520403 - it.po. Closes: #522222 - sk.po. Closes: #520403 + + [ Jamie Strandboge ] + * apt.cron.daily: catch invalid dates due to DST time changes + in the stamp files - -- Michael Vogt Sun, 08 Feb 2009 11:47:48 +0100 + -- Michael Vogt Wed, 08 Apr 2009 22:37:01 +0200 apt (0.7.20.2) unstable; urgency=medium -- cgit v1.2.3 From a06f61bbb328ee218afbd367248f6f2338186e19 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Wed, 8 Apr 2009 22:49:23 +0200 Subject: * methods/gpgv.cc: - properly check for expired and revoked keys (closes: #433091) --- debian/changelog | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'debian') diff --git a/debian/changelog b/debian/changelog index 2b84d16a6..5ddd98a0d 100644 --- a/debian/changelog +++ b/debian/changelog @@ -15,6 +15,10 @@ apt (0.7.20.3) UNRELEASED; urgency=low * apt.cron.daily: catch invalid dates due to DST time changes in the stamp files + [ Michael Vogt ] + * methods/gpgv.cc: + - properly check for expired and revoked keys (closes: #433091) + -- Michael Vogt Wed, 08 Apr 2009 22:37:01 +0200 apt (0.7.20.2) unstable; urgency=medium -- cgit v1.2.3 From 09fab2442c2ab9a503841d3dcd56b3c0c3efb502 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Thu, 9 Apr 2009 04:36:34 +0200 Subject: * apt-pkg/contrib/strutl.cc: - fix TimeToStr i18n (LP: #289807) * [ABI break] merge support for http redirects, thanks to Jeff Licquia and Anthony Towns * [ABI break] use int for the package IDs (thanks to Steve Cotton) * apt-pkg/pkgcache.cc: - do not run "dpkg --configure pkg" if pkg is in trigger-awaited state (LP: #322955) * methods/https.cc: - add Acquire::https::AllowRedirect support * Clarify the --help for 'purge' (LP: #243948) * cmdline/apt-get.cc - fix "apt-get source pkg" if there is a binary package and a source package of the same name but from different packages (LP: #330103) * cmdline/acqprogress.cc: - Call pkgAcquireStatus::Pulse even if quiet, so that we still get dlstatus messages on the status-fd (LP: #290234). --- debian/changelog | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) (limited to 'debian') diff --git a/debian/changelog b/debian/changelog index 5ddd98a0d..6fe3b7a70 100644 --- a/debian/changelog +++ b/debian/changelog @@ -18,6 +18,26 @@ apt (0.7.20.3) UNRELEASED; urgency=low [ Michael Vogt ] * methods/gpgv.cc: - properly check for expired and revoked keys (closes: #433091) + * apt-pkg/contrib/strutl.cc: + - fix TimeToStr i18n (LP: #289807) + * [ABI break] merge support for http redirects, thanks to + Jeff Licquia and Anthony Towns + * [ABI break] use int for the package IDs (thanks to Steve Cotton) + * apt-pkg/pkgcache.cc: + - do not run "dpkg --configure pkg" if pkg is in trigger-awaited + state (LP: #322955) + * methods/https.cc: + - add Acquire::https::AllowRedirect support + * Clarify the --help for 'purge' (LP: #243948) + * cmdline/apt-get.cc + - fix "apt-get source pkg" if there is a binary package and + a source package of the same name but from different + packages (LP: #330103) + + [ Colin Watson ] + * cmdline/acqprogress.cc: + - Call pkgAcquireStatus::Pulse even if quiet, so that we still get + dlstatus messages on the status-fd (LP: #290234). -- Michael Vogt Wed, 08 Apr 2009 22:37:01 +0200 -- cgit v1.2.3 From f0bb64930676131f8df667e064ed8b1d1b14145b Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Tue, 14 Apr 2009 14:17:40 +0200 Subject: build fixes, change version 0.7.21 --- debian/changelog | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'debian') diff --git a/debian/changelog b/debian/changelog index 6fe3b7a70..58fa99d7a 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,4 +1,4 @@ -apt (0.7.20.3) UNRELEASED; urgency=low +apt (0.7.21) unstable; urgency=low [ Christian Perrier ] * Translations: @@ -39,7 +39,7 @@ apt (0.7.20.3) UNRELEASED; urgency=low - Call pkgAcquireStatus::Pulse even if quiet, so that we still get dlstatus messages on the status-fd (LP: #290234). - -- Michael Vogt Wed, 08 Apr 2009 22:37:01 +0200 + -- Michael Vogt Tue, 14 Apr 2009 14:12:51 +0200 apt (0.7.20.2) unstable; urgency=medium -- cgit v1.2.3 From 26356e000d19b9e39bf6194778225eb1bccc8012 Mon Sep 17 00:00:00 2001 From: "bubulle@debian.org" <> Date: Wed, 22 Apr 2009 10:15:08 +0200 Subject: Fix typo in French translation --- debian/changelog | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'debian') diff --git a/debian/changelog b/debian/changelog index 58fa99d7a..f4c013146 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,11 @@ +apt (0.7.22) UNRELEASED; urgency=low + + * Documentation translations: + - Fix a typo in apt-get(8 French translation. Closes: #525043 + Thanks to Guillaume Delacour for spotting it. + + -- Christian Perrier Wed, 22 Apr 2009 10:13:54 +0200 + apt (0.7.21) unstable; urgency=low [ Christian Perrier ] -- cgit v1.2.3 From 3a1a4a55ccaea9f9fa38d7fd0cf6acfb5efbf824 Mon Sep 17 00:00:00 2001 From: "bubulle@debian.org" <> Date: Thu, 23 Apr 2009 08:05:00 +0200 Subject: Update French translation --- debian/changelog | 2 ++ 1 file changed, 2 insertions(+) (limited to 'debian') diff --git a/debian/changelog b/debian/changelog index f4c013146..0d4ed4e78 100644 --- a/debian/changelog +++ b/debian/changelog @@ -3,6 +3,8 @@ apt (0.7.22) UNRELEASED; urgency=low * Documentation translations: - Fix a typo in apt-get(8 French translation. Closes: #525043 Thanks to Guillaume Delacour for spotting it. + * Translations: + - fr.po -- Christian Perrier Wed, 22 Apr 2009 10:13:54 +0200 -- cgit v1.2.3 From 0365a8b90cd13a4010006c9cf087657dcf6dac7a Mon Sep 17 00:00:00 2001 From: "bubulle@debian.org" <> Date: Tue, 28 Apr 2009 20:18:01 +0200 Subject: Slovak translation update --- debian/changelog | 1 + 1 file changed, 1 insertion(+) (limited to 'debian') diff --git a/debian/changelog b/debian/changelog index 0d4ed4e78..23416bd70 100644 --- a/debian/changelog +++ b/debian/changelog @@ -5,6 +5,7 @@ apt (0.7.22) UNRELEASED; urgency=low Thanks to Guillaume Delacour for spotting it. * Translations: - fr.po + - sk.po. Closes: #525857 -- Christian Perrier Wed, 22 Apr 2009 10:13:54 +0200 -- cgit v1.2.3 From 0d7c7d52dce1aef916bd4777cac75a6a85e71bf1 Mon Sep 17 00:00:00 2001 From: "bubulle@debian.org" <> Date: Sun, 17 May 2009 08:50:40 +0200 Subject: Basque translation update --- debian/changelog | 2 ++ 1 file changed, 2 insertions(+) (limited to 'debian') diff --git a/debian/changelog b/debian/changelog index 23416bd70..09c0bb05c 100644 --- a/debian/changelog +++ b/debian/changelog @@ -6,6 +6,8 @@ apt (0.7.22) UNRELEASED; urgency=low * Translations: - fr.po - sk.po. Closes: #525857 + - ru.po. Closes: #526816 + - eu.po. Closes: #528985 -- Christian Perrier Wed, 22 Apr 2009 10:13:54 +0200 -- cgit v1.2.3 From 92df274bc1b1c633ee7475293503e6cf8a008cf2 Mon Sep 17 00:00:00 2001 From: "bubulle@debian.org" <> Date: Sun, 17 May 2009 12:43:09 +0200 Subject: Asturian translation added --- debian/changelog | 2 ++ 1 file changed, 2 insertions(+) (limited to 'debian') diff --git a/debian/changelog b/debian/changelog index 09c0bb05c..6b98a1d67 100644 --- a/debian/changelog +++ b/debian/changelog @@ -8,6 +8,8 @@ apt (0.7.22) UNRELEASED; urgency=low - sk.po. Closes: #525857 - ru.po. Closes: #526816 - eu.po. Closes: #528985 + * Added translations + - ast.po (Asturian by Marcos Alvareez Costales). Closes: #529007 -- Christian Perrier Wed, 22 Apr 2009 10:13:54 +0200 -- cgit v1.2.3 From a25b11935ea957309265a2cbaa4955a5feeca0b9 Mon Sep 17 00:00:00 2001 From: "bubulle@debian.org" <> Date: Thu, 21 May 2009 12:19:01 +0200 Subject: Updated Asturian translation --- debian/changelog | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'debian') diff --git a/debian/changelog b/debian/changelog index 6b98a1d67..1982d5c3c 100644 --- a/debian/changelog +++ b/debian/changelog @@ -9,7 +9,8 @@ apt (0.7.22) UNRELEASED; urgency=low - ru.po. Closes: #526816 - eu.po. Closes: #528985 * Added translations - - ast.po (Asturian by Marcos Alvareez Costales). Closes: #529007 + - ast.po (Asturian by Marcos Alvareez Costales). + Closes: #529007, #529730 -- Christian Perrier Wed, 22 Apr 2009 10:13:54 +0200 -- cgit v1.2.3 From 56e571b210beed5d9c91be6a6a191cf315cc0d59 Mon Sep 17 00:00:00 2001 From: Deng Xiyue Date: Mon, 1 Jun 2009 10:55:26 +0200 Subject: Simplified Chinese translation update --- debian/changelog | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'debian') diff --git a/debian/changelog b/debian/changelog index 1982d5c3c..19dc02e04 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,13 +1,14 @@ apt (0.7.22) UNRELEASED; urgency=low * Documentation translations: - - Fix a typo in apt-get(8 French translation. Closes: #525043 + - Fix a typo in apt-get(8) French translation. Closes: #525043 Thanks to Guillaume Delacour for spotting it. * Translations: - fr.po - sk.po. Closes: #525857 - ru.po. Closes: #526816 - eu.po. Closes: #528985 + - zh_CN.po. Closes: #531390 * Added translations - ast.po (Asturian by Marcos Alvareez Costales). Closes: #529007, #529730 -- cgit v1.2.3 From 8f700229c7fd085ed572560cacfba332342b7d2e Mon Sep 17 00:00:00 2001 From: "bubulle@debian.org" <> Date: Tue, 2 Jun 2009 07:37:38 +0200 Subject: Update French translation --- debian/changelog | 1 + 1 file changed, 1 insertion(+) (limited to 'debian') diff --git a/debian/changelog b/debian/changelog index 19dc02e04..170170f21 100644 --- a/debian/changelog +++ b/debian/changelog @@ -9,6 +9,7 @@ apt (0.7.22) UNRELEASED; urgency=low - ru.po. Closes: #526816 - eu.po. Closes: #528985 - zh_CN.po. Closes: #531390 + - fr.po * Added translations - ast.po (Asturian by Marcos Alvareez Costales). Closes: #529007, #529730 -- cgit v1.2.3 From 331b0e8e913ebb78a16cc88e3962396ff33315cc Mon Sep 17 00:00:00 2001 From: "bubulle@debian.org" <> Date: Fri, 5 Jun 2009 20:37:49 +0200 Subject: Pending translations --- debian/changelog | 2 ++ 1 file changed, 2 insertions(+) (limited to 'debian') diff --git a/debian/changelog b/debian/changelog index 170170f21..5d3a801a8 100644 --- a/debian/changelog +++ b/debian/changelog @@ -10,6 +10,8 @@ apt (0.7.22) UNRELEASED; urgency=low - eu.po. Closes: #528985 - zh_CN.po. Closes: #531390 - fr.po + - it.po. Closes: #531758 + - ca.po. Closes: #531921 * Added translations - ast.po (Asturian by Marcos Alvareez Costales). Closes: #529007, #529730 -- cgit v1.2.3