From 4c84979cdf25207789a04e7a4bfdff71e4ea92e4 Mon Sep 17 00:00:00 2001 From: Matt Zimmerman Date: Tue, 23 Nov 2004 17:16:25 +0000 Subject: Remove apt-utils->bzip2 dependency --- debian/control | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian/control b/debian/control index 3ac70990..a1e376b9 100644 --- a/debian/control +++ b/debian/control @@ -52,7 +52,7 @@ Description: Documentation for APT development Package: apt-utils Architecture: any -Depends: bzip2, ${shlibs:Depends} +Depends: ${shlibs:Depends} Priority: optional Provides: ${libapt-inst:provides} Replaces: apt (<< 0.5.9) -- cgit v1.2.3 From 0493db1e1f4c80f1cba1ba277ccb2c11722bfff7 Mon Sep 17 00:00:00 2001 From: Matt Zimmerman Date: Tue, 23 Nov 2004 20:03:17 +0000 Subject: Fix apt_preferences(5) example to match text --- debian/changelog | 2 ++ doc/apt_preferences.5.xml | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/debian/changelog b/debian/changelog index f9c61537..7a287ecb 100644 --- a/debian/changelog +++ b/debian/changelog @@ -3,6 +3,8 @@ apt (0.5.31) unstable; urgency=low * New Romanian translation from Sorin Batariuc (Closes: #281458) * Merge changes from Hoary (0.5.30,0.5.30ubuntu2] + * Fix the example in apt_preferences(5) to match the text + (Closes: #222267) -- diff --git a/doc/apt_preferences.5.xml b/doc/apt_preferences.5.xml index 2aacc174..3e50bef8 100644 --- a/doc/apt_preferences.5.xml +++ b/doc/apt_preferences.5.xml @@ -192,8 +192,8 @@ and whose release Version number is "3.0". Package: * -Pin: release a=unstable, v=3.0 -Pin-Priority: 50 +Pin: release a=stable, v=3.0 +Pin-Priority: 500 -- cgit v1.2.3 -- cgit v1.2.3 From 9bd1cf874fd4ec2f67e0cb1a0af1c894b10f1d14 Mon Sep 17 00:00:00 2001 From: Matt Zimmerman Date: Tue, 23 Nov 2004 20:52:13 +0000 Subject: Add APT::Periodic::Autoclean setting * Add APT::Periodic::Autoclean setting, to allow "apt-get autoclean" to be run periodically. This is useful with APT::Periodic::Download-Upgradeable-Packages, and defaults to the same value, so that the cache size is bounded --- debian/apt.cron.daily | 11 +++++++++-- debian/changelog | 4 ++++ 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/debian/apt.cron.daily b/debian/apt.cron.daily index bb6c0151..17fe8fb7 100644 --- a/debian/apt.cron.daily +++ b/debian/apt.cron.daily @@ -38,8 +38,9 @@ update_stamp() UpdateInterval=0 DownloadUpgradeableInterval=0 -RES=`apt-config shell UpdateInterval APT::Periodic::Update-Package-Lists DownloadUpgradeableInterval APT::Periodic::Download-Upgradeable-Packages` -eval $RES +eval $(apt-config shell UpdateInterval APT::Periodic::Update-Package-Lists DownloadUpgradeableInterval APT::Periodic::Download-Upgradeable-Packages) +AutocleanInterval=$DownloadUpgradeableInterval +eval $(apt-config shell AutocleanInterval APT::Periodic::Autoclean) # laptop check, on_ac_power returns: # 0 (true) System is on mains power @@ -68,3 +69,9 @@ if check_stamp $DOWNLOAD_UPGRADEABLE_STAMP $DownloadUpgradeableInterval; then apt-get -qq -d dist-upgrade 2>/dev/null update_stamp $DOWNLOAD_UPGRADEABLE_STAMP fi + +AUTOCLEAN_STAMP=/var/lib/apt/periodic/autoclean-stamp +if check_stamp $AUTOCLEAN_STAMP $AutocleanInterval; then + apt-get -qq autoclean + update_stamp $AUTOCLEAN_STAMP +fi diff --git a/debian/changelog b/debian/changelog index 7a287ecb..17bd395d 100644 --- a/debian/changelog +++ b/debian/changelog @@ -5,6 +5,10 @@ apt (0.5.31) unstable; urgency=low * Merge changes from Hoary (0.5.30,0.5.30ubuntu2] * Fix the example in apt_preferences(5) to match the text (Closes: #222267) + * Add APT::Periodic::Autoclean setting, to allow "apt-get autoclean" to + be run periodically. This is useful with + APT::Periodic::Download-Upgradeable-Packages, and defaults to the same + value, so that the cache size is bounded -- -- cgit v1.2.3 From afaa83fe5fb2e694e2d0ff5e7b601e035d39a154 Mon Sep 17 00:00:00 2001 From: Matt Zimmerman Date: Tue, 23 Nov 2004 21:00:01 +0000 Subject: Finalize 0.5.31 --- configure.in | 2 +- debian/changelog | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.in b/configure.in index 10feee63..afaa4942 100644 --- a/configure.in +++ b/configure.in @@ -18,7 +18,7 @@ AC_CONFIG_AUX_DIR(buildlib) AC_CONFIG_HEADER(include/config.h:buildlib/config.h.in include/apti18n.h:buildlib/apti18n.h.in) dnl -- SET THIS TO THE RELEASE VERSION -- -AC_DEFINE_UNQUOTED(VERSION,"0.5.30ubuntu2") +AC_DEFINE_UNQUOTED(VERSION,"0.5.31") PACKAGE="apt" AC_DEFINE_UNQUOTED(PACKAGE,"$PACKAGE") AC_SUBST(PACKAGE) diff --git a/debian/changelog b/debian/changelog index 17bd395d..86838ee6 100644 --- a/debian/changelog +++ b/debian/changelog @@ -10,7 +10,7 @@ apt (0.5.31) unstable; urgency=low APT::Periodic::Download-Upgradeable-Packages, and defaults to the same value, so that the cache size is bounded - -- + -- Matt Zimmerman Tue, 23 Nov 2004 12:53:04 -0800 apt (0.5.30ubuntu2) hoary; urgency=low -- cgit v1.2.3 From 4845b8d50e9b1546127423aba675635024c93aa1 Mon Sep 17 00:00:00 2001 From: Matt Zimmerman Date: Wed, 24 Nov 2004 19:04:35 +0000 Subject: Open 0.5.32 --- configure.in | 2 +- debian/changelog | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/configure.in b/configure.in index afaa4942..bdffb2a0 100644 --- a/configure.in +++ b/configure.in @@ -18,7 +18,7 @@ AC_CONFIG_AUX_DIR(buildlib) AC_CONFIG_HEADER(include/config.h:buildlib/config.h.in include/apti18n.h:buildlib/apti18n.h.in) dnl -- SET THIS TO THE RELEASE VERSION -- -AC_DEFINE_UNQUOTED(VERSION,"0.5.31") +AC_DEFINE_UNQUOTED(VERSION,"0.5.32") PACKAGE="apt" AC_DEFINE_UNQUOTED(PACKAGE,"$PACKAGE") AC_SUBST(PACKAGE) diff --git a/debian/changelog b/debian/changelog index 86838ee6..1d6ca252 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +apt (0.5.32) unstable; urgency=low + + * + + -- + apt (0.5.31) unstable; urgency=low * New Romanian translation from Sorin Batariuc -- cgit v1.2.3 From 049c0171c286bbce536c2732ac17605fdea78410 Mon Sep 17 00:00:00 2001 From: Matt Zimmerman Date: Wed, 24 Nov 2004 20:08:16 +0000 Subject: Call setlocale and bindtextdomain in the http method --- debian/changelog | 3 ++- methods/http.cc | 3 +++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index 1d6ca252..28279ebf 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,6 +1,7 @@ apt (0.5.32) unstable; urgency=low - * + * Call setlocale and bindtextdomain in the http method, so that the + messages are properly localised (Closes: #282700) -- diff --git a/methods/http.cc b/methods/http.cc index 3bb29cde..68653fbb 100644 --- a/methods/http.cc +++ b/methods/http.cc @@ -1183,6 +1183,9 @@ int HttpMethod::Loop() int main() { + setlocale(LC_ALL, ""); + bindtextdomain(APT_DOMAIN, Cnf.FindDir("Dir::Locale").c_str()); + HttpMethod Mth; return Mth.Loop(); -- cgit v1.2.3 From 0800915dcfcc2a89e69715d494adf21e43bd00cc Mon Sep 17 00:00:00 2001 From: Matt Zimmerman Date: Thu, 25 Nov 2004 17:17:48 +0000 Subject: Fix error in patch-22 --- methods/http.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/methods/http.cc b/methods/http.cc index 68653fbb..e53667c0 100644 --- a/methods/http.cc +++ b/methods/http.cc @@ -1184,7 +1184,7 @@ int HttpMethod::Loop() int main() { setlocale(LC_ALL, ""); - bindtextdomain(APT_DOMAIN, Cnf.FindDir("Dir::Locale").c_str()); + bindtextdomain(APT_DOMAIN, _config->FindDir("Dir::Locale").c_str()); HttpMethod Mth; -- cgit v1.2.3 From 887fe3161534cc9ec9aae1810e5a2f0a7607193a Mon Sep 17 00:00:00 2001 From: Matt Zimmerman Date: Thu, 25 Nov 2004 18:15:00 +0000 Subject: Temporarily finalize 0.5.32 to resolve a conflict with apt--authentication--0 --- debian/changelog | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index 28279ebf..232bead2 100644 --- a/debian/changelog +++ b/debian/changelog @@ -3,7 +3,7 @@ apt (0.5.32) unstable; urgency=low * Call setlocale and bindtextdomain in the http method, so that the messages are properly localised (Closes: #282700) - -- + -- Matt Zimmerman Thu, 25 Nov 2004 10:13:36 -0800 apt (0.5.31) unstable; urgency=low -- cgit v1.2.3 From 9f412caca531bde1a4e30e3970aa20a8868b4e72 Mon Sep 17 00:00:00 2001 From: Matt Zimmerman Date: Thu, 25 Nov 2004 18:17:12 +0000 Subject: Un-finalize 0.5.32 --- debian/changelog | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index 232bead2..28279ebf 100644 --- a/debian/changelog +++ b/debian/changelog @@ -3,7 +3,7 @@ apt (0.5.32) unstable; urgency=low * Call setlocale and bindtextdomain in the http method, so that the messages are properly localised (Closes: #282700) - -- Matt Zimmerman Thu, 25 Nov 2004 10:13:36 -0800 + -- apt (0.5.31) unstable; urgency=low -- cgit v1.2.3 From afffee98ed0a3e04cebe1470fc592748467bad63 Mon Sep 17 00:00:00 2001 From: Matt Zimmerman Date: Thu, 25 Nov 2004 20:21:31 +0000 Subject: Update AUTHORS to reflect reality --- AUTHORS | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/AUTHORS b/AUTHORS index d8c341f9..355e66ae 100644 --- a/AUTHORS +++ b/AUTHORS @@ -3,6 +3,17 @@ The project hierachy stands at: CVS:jgg Jason Gunthorpe - The Mad Cow incarnate +CVS:mdz Matt Zimmerman +- Ongoing maintenance and coordination of development + +CVS:piefel Michael Piefel +- i18n and l10n + +Michael Vogt +- Development and bug fixes + +Past Contributures: + CVS:che Ben Gertzfield - Packaging and Releases @@ -12,7 +23,8 @@ CVS:bod Brendan O'Dea CVS:tausq Randolph Chung - Patches, Fixes, Debugging, GUIs and Releases -Past Contributures: +Isaac Jones and Colin Walters + Initial implementation of authentication support (Release.gpg) Brian White - Project originator Tom Lees - DPKG documentation and ideas -- cgit v1.2.3 From 51ef8263ad8c5dc6c11d9a6cf7922e01567d56da Mon Sep 17 00:00:00 2001 From: Matt Zimmerman Date: Thu, 25 Nov 2004 20:23:11 +0000 Subject: Fix spelling --- AUTHORS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AUTHORS b/AUTHORS index 355e66ae..fa4cf13f 100644 --- a/AUTHORS +++ b/AUTHORS @@ -12,7 +12,7 @@ CVS:piefel Michael Piefel Michael Vogt - Development and bug fixes -Past Contributures: +Past Contributors: CVS:che Ben Gertzfield - Packaging and Releases -- cgit v1.2.3