From 63884d7ca4fc7e4f722cdd13c505c6c889e922e5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=CE=98=CE=B1=CE=BD=CE=AC=CF=83=CE=B7=CF=82=20=CE=9D=CE=AC?= =?UTF-8?q?=CF=84=CF=83=CE=B7=CF=82?= Date: Sun, 1 Jul 2012 08:22:04 +0200 Subject: =?UTF-8?q?Greek=20program=20translation=20(=CE=98=CE=B1=CE=BD?= =?UTF-8?q?=CE=AC=CF=83=CE=B7=CF=82=20=CE=9D=CE=AC=CF=84=CF=83=CE=B7=CF=82?= =?UTF-8?q?)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- debian/changelog | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'debian') diff --git a/debian/changelog b/debian/changelog index 1505aad53..92ba8a557 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +apt (0.9.7.2) UNRELEASED; urgency=low + + [ Program translation updates ] + * Greek (Θανάσης Νάτσης) + + -- David Kalnischkies Sun, 01 Jul 2012 08:20:57 +0200 + apt (0.9.7.1) unstable; urgency=low [ Program translation updates ] -- cgit v1.2.3 From 776dacc01908cb48ff378d8ea127587651dd05df Mon Sep 17 00:00:00 2001 From: Kenshi Muto Date: Sun, 1 Jul 2012 08:25:17 +0200 Subject: Japanese program translation (Kenshi Muto) (Closes: #679662) --- debian/changelog | 2 ++ 1 file changed, 2 insertions(+) (limited to 'debian') diff --git a/debian/changelog b/debian/changelog index 92ba8a557..696345dec 100644 --- a/debian/changelog +++ b/debian/changelog @@ -2,6 +2,8 @@ apt (0.9.7.2) UNRELEASED; urgency=low [ Program translation updates ] * Greek (Θανάσης Νάτσης) + * Japanese (Kenshi Muto) (Closes: #679662) + -- David Kalnischkies Sun, 01 Jul 2012 08:20:57 +0200 -- cgit v1.2.3 From c944d16cf0b61d4d78aef3bef151e93edf00a0c8 Mon Sep 17 00:00:00 2001 From: Yuri Kozlov Date: Sun, 1 Jul 2012 08:33:26 +0200 Subject: Russian program translation (Yuri Kozlov) (Closes: #679599) --- debian/changelog | 1 + 1 file changed, 1 insertion(+) (limited to 'debian') diff --git a/debian/changelog b/debian/changelog index 696345dec..01126d5f5 100644 --- a/debian/changelog +++ b/debian/changelog @@ -3,6 +3,7 @@ apt (0.9.7.2) UNRELEASED; urgency=low [ Program translation updates ] * Greek (Θανάσης Νάτσης) * Japanese (Kenshi Muto) (Closes: #679662) + * Russian (Yuri Kozlov) (Closes: #679599) -- David Kalnischkies Sun, 01 Jul 2012 08:20:57 +0200 -- cgit v1.2.3 From 49d8379b0d89e14ae45eaac1270b2f278755d7da Mon Sep 17 00:00:00 2001 From: Chris Leick Date: Sun, 1 Jul 2012 22:35:47 +0200 Subject: German manpage translation (Chris Leick) --- debian/changelog | 2 ++ 1 file changed, 2 insertions(+) (limited to 'debian') diff --git a/debian/changelog b/debian/changelog index 01126d5f5..a5a74e0ad 100644 --- a/debian/changelog +++ b/debian/changelog @@ -5,6 +5,8 @@ apt (0.9.7.2) UNRELEASED; urgency=low * Japanese (Kenshi Muto) (Closes: #679662) * Russian (Yuri Kozlov) (Closes: #679599) + [ Manpage translation updates ] + * German (Chris Leick) -- David Kalnischkies Sun, 01 Jul 2012 08:20:57 +0200 -- cgit v1.2.3 From fe21cadff2f3e09e712a91c984ce05fd462bb2fd Mon Sep 17 00:00:00 2001 From: Joe Dalton Date: Wed, 4 Jul 2012 22:36:18 +0200 Subject: Danish program translation (Joe Dalton) (Closes: #680119) --- debian/changelog | 1 + 1 file changed, 1 insertion(+) (limited to 'debian') diff --git a/debian/changelog b/debian/changelog index a5a74e0ad..c36a171e7 100644 --- a/debian/changelog +++ b/debian/changelog @@ -4,6 +4,7 @@ apt (0.9.7.2) UNRELEASED; urgency=low * Greek (Θανάσης Νάτσης) * Japanese (Kenshi Muto) (Closes: #679662) * Russian (Yuri Kozlov) (Closes: #679599) + * Danish (Joe Dalton) (Closes: #680119) [ Manpage translation updates ] * German (Chris Leick) -- cgit v1.2.3 From a3b76cde9b0be9a83ca1548e8a6a91d26d8fa29e Mon Sep 17 00:00:00 2001 From: David Kalnischkies Date: Wed, 4 Jul 2012 22:46:06 +0200 Subject: * debian/apt.cron.daily: - do not try to backup extended_states file if it doesn't exist (Closes: #680287) --- debian/apt.cron.daily | 14 ++++++++------ debian/changelog | 5 +++++ 2 files changed, 13 insertions(+), 6 deletions(-) (limited to 'debian') diff --git a/debian/apt.cron.daily b/debian/apt.cron.daily index 6f6dc92a4..5c00f22db 100644 --- a/debian/apt.cron.daily +++ b/debian/apt.cron.daily @@ -327,12 +327,14 @@ check_power(){ # ------------------------ main ---------------------------- -# Backup the 7 last versions of APT's extended_states file -# shameless copy from dpkg cron -if cd /var/backups ; then - if ! cmp -s apt.extended_states.0 /var/lib/apt/extended_states; then - cp -p /var/lib/apt/extended_states apt.extended_states - savelog -c 7 apt.extended_states >/dev/null +if test -r /var/lib/apt/extended_states; then + # Backup the 7 last versions of APT's extended_states file + # shameless copy from dpkg cron + if cd /var/backups ; then + if ! cmp -s apt.extended_states.0 /var/lib/apt/extended_states; then + cp -p /var/lib/apt/extended_states apt.extended_states + savelog -c 7 apt.extended_states >/dev/null + fi fi fi diff --git a/debian/changelog b/debian/changelog index c36a171e7..11652d557 100644 --- a/debian/changelog +++ b/debian/changelog @@ -9,6 +9,11 @@ apt (0.9.7.2) UNRELEASED; urgency=low [ Manpage translation updates ] * German (Chris Leick) + [ David Kalnischkies ] + * debian/apt.cron.daily: + - do not try to backup extended_states file if it doesn't + exist (Closes: #680287) + -- David Kalnischkies Sun, 01 Jul 2012 08:20:57 +0200 apt (0.9.7.1) unstable; urgency=low -- cgit v1.2.3 From 8e5d47a3a4e735835498574a58e0a33de04a0377 Mon Sep 17 00:00:00 2001 From: David Kalnischkies Date: Wed, 4 Jul 2012 22:50:09 +0200 Subject: * ftparchive/writer.cc: - handle the APT::FTPArchive::Packages::SHA512 option correctly instead of overriding SHA256, thanks Christian Marillat! (Closes: #680252) --- debian/changelog | 3 +++ 1 file changed, 3 insertions(+) (limited to 'debian') diff --git a/debian/changelog b/debian/changelog index 11652d557..4fe8a800e 100644 --- a/debian/changelog +++ b/debian/changelog @@ -13,6 +13,9 @@ apt (0.9.7.2) UNRELEASED; urgency=low * debian/apt.cron.daily: - do not try to backup extended_states file if it doesn't exist (Closes: #680287) + * ftparchive/writer.cc: + - handle the APT::FTPArchive::Packages::SHA512 option correctly instead + of overriding SHA256, thanks Christian Marillat! (Closes: #680252) -- David Kalnischkies Sun, 01 Jul 2012 08:20:57 +0200 -- cgit v1.2.3 From b855a40058f99a0f10184c410b3bbf3c2ee4ae83 Mon Sep 17 00:00:00 2001 From: David Kalnischkies Date: Wed, 4 Jul 2012 23:54:48 +0200 Subject: * cmdline/apt-mark.cc: - arch:all packages are treated as arch:native packages, but dpkg expects pkg:all for selections, so use the arch of the installed version instead of the package structure if possible. Thanks to Stepan Golosunov for the report! (Closes: #680041) --- debian/changelog | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'debian') diff --git a/debian/changelog b/debian/changelog index 4fe8a800e..9d3c2b2fc 100644 --- a/debian/changelog +++ b/debian/changelog @@ -16,6 +16,11 @@ apt (0.9.7.2) UNRELEASED; urgency=low * ftparchive/writer.cc: - handle the APT::FTPArchive::Packages::SHA512 option correctly instead of overriding SHA256, thanks Christian Marillat! (Closes: #680252) + * cmdline/apt-mark.cc: + - arch:all packages are treated as arch:native packages, but dpkg + expects pkg:all for selections, so use the arch of the installed + version instead of the package structure if possible. + Thanks to Stepan Golosunov for the report! (Closes: #680041) -- David Kalnischkies Sun, 01 Jul 2012 08:20:57 +0200 -- cgit v1.2.3 From 469b02781dfb4517282da4d497c5f7fd0dcb97f4 Mon Sep 17 00:00:00 2001 From: David Kalnischkies Date: Thu, 5 Jul 2012 08:59:52 +0200 Subject: * apt-pkg/clean.cc: - run autoclean against pkg:arch and not always against pkg:native as this removes valid cache entries (Closes: #679371) --- debian/changelog | 3 +++ 1 file changed, 3 insertions(+) (limited to 'debian') diff --git a/debian/changelog b/debian/changelog index 9d3c2b2fc..1c98bf356 100644 --- a/debian/changelog +++ b/debian/changelog @@ -21,6 +21,9 @@ apt (0.9.7.2) UNRELEASED; urgency=low expects pkg:all for selections, so use the arch of the installed version instead of the package structure if possible. Thanks to Stepan Golosunov for the report! (Closes: #680041) + * apt-pkg/clean.cc: + - run autoclean against pkg:arch and not always against pkg:native as + this removes valid cache entries (Closes: #679371) -- David Kalnischkies Sun, 01 Jul 2012 08:20:57 +0200 -- cgit v1.2.3 From 25792e39cf2218f1c9bae74217e4f91682e14837 Mon Sep 17 00:00:00 2001 From: Miguel Figueiredo Date: Sat, 7 Jul 2012 15:01:23 +0200 Subject: Portuguese program translation (Miguel Figueiredo) (Closes: #680616) --- debian/changelog | 1 + 1 file changed, 1 insertion(+) (limited to 'debian') diff --git a/debian/changelog b/debian/changelog index 1c98bf356..e0692a40e 100644 --- a/debian/changelog +++ b/debian/changelog @@ -5,6 +5,7 @@ apt (0.9.7.2) UNRELEASED; urgency=low * Japanese (Kenshi Muto) (Closes: #679662) * Russian (Yuri Kozlov) (Closes: #679599) * Danish (Joe Dalton) (Closes: #680119) + * Portuguese (Miguel Figueiredo) (Closes: #680616) [ Manpage translation updates ] * German (Chris Leick) -- cgit v1.2.3