From 9c9d7a81217873c1c0dc453cac4b66850084f522 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Thu, 3 Jan 2008 09:55:53 +0100 Subject: * debian/control: - build against libdb-dev (instead of libdb4.4-dev) --- debian/control | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'debian') diff --git a/debian/control b/debian/control index 742e8ca5c..2e9e306c8 100644 --- a/debian/control +++ b/debian/control @@ -4,7 +4,7 @@ Priority: important Maintainer: APT Development Team Uploaders: Jason Gunthorpe , Adam Heath , Matt Zimmerman , Michael Vogt , Otavio Salvador Standards-Version: 3.7.2.2 -Build-Depends: debhelper (>= 5.0), libdb4.4-dev, gettext (>= 0.12), libcurl4-gnutls-dev | libcurl3-gnutls-dev (>= 7.15.5) +Build-Depends: debhelper (>= 5.0), libdb-dev, gettext (>= 0.12), libcurl4-gnutls-dev | libcurl3-gnutls-dev (>= 7.15.5) Build-Depends-Indep: debiandoc-sgml, docbook-utils (>= 0.6.12-1) XS-Vcs-Bzr: http://bzr.debian.org/apt/debian-sid/ -- cgit v1.2.3 From 3a6d37fdcfbdb152eb00371ff69b8871c9a02527 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Thu, 3 Jan 2008 11:25:58 +0100 Subject: * apt-pkg/packagemanager.{cc,h}: - propergate the Immediate flag to make hitting the "E: Internal Error, Could not perform immediate configuration (2)" harder --- debian/changelog | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'debian') diff --git a/debian/changelog b/debian/changelog index ef9784178..4f22e9d92 100644 --- a/debian/changelog +++ b/debian/changelog @@ -43,6 +43,10 @@ apt (0.7.10) UNRELEASED; urgency=low * apt-pkg/acquire-item.{cc,h}: - make the authentication download code more robust against servers/proxies with broken If-Range implementations + * apt-pkg/packagemanager.{cc,h}: + - propergate the Immediate flag to make hitting the + "E: Internal Error, Could not perform immediate configuration (2)" + harder [ Chris Cheney ] * ftparchive/contents.cc: -- cgit v1.2.3 From 110277098f846c98cbb1f155fe7d53ecca64cc1a Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Thu, 3 Jan 2008 13:46:54 +0100 Subject: add missing changelog entry --- debian/changelog | 2 ++ 1 file changed, 2 insertions(+) (limited to 'debian') diff --git a/debian/changelog b/debian/changelog index 4f22e9d92..52625ee2d 100644 --- a/debian/changelog +++ b/debian/changelog @@ -47,6 +47,8 @@ apt (0.7.10) UNRELEASED; urgency=low - propergate the Immediate flag to make hitting the "E: Internal Error, Could not perform immediate configuration (2)" harder + * debian/control: + - build against libdb-dev (instead of libdb4.4-dev) [ Chris Cheney ] * ftparchive/contents.cc: -- cgit v1.2.3 From 760d4968005c97f0d5fd6403633f367aac89c763 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Mon, 7 Jan 2008 16:47:40 +0100 Subject: * move the ListUpdate() code from cachefile.h into algorithms.{cc,h} as it does not require a cachefile at all --- debian/changelog | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'debian') diff --git a/debian/changelog b/debian/changelog index ee5384c42..9f78d5916 100644 --- a/debian/changelog +++ b/debian/changelog @@ -50,7 +50,7 @@ apt (0.7.10) UNRELEASED; urgency=low * debian/control: - build against libdb-dev (instead of libdb4.4-dev) * merged the apt--DoListUpdate branch, this provides a common interface - for apt-get update like operations for the frontends and also provides + for "apt-get update" like operations for the frontends and also provides hooks to run stuff in APT::Update::{Pre,Post}-Invoke [ Chris Cheney ] -- cgit v1.2.3 From 51f13f6ab9c793b6972f6dd945149a4f97549e04 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Mon, 7 Jan 2008 21:41:08 +0100 Subject: finalize changelog and upload as 0.7.10 --- debian/changelog | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'debian') diff --git a/debian/changelog b/debian/changelog index 9f78d5916..ef4a21b6f 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,4 +1,4 @@ -apt (0.7.10) UNRELEASED; urgency=low +apt (0.7.10) unstable; urgency=low [ Otavio Salvador ] * Applied patch from Mike O'Connor to add a manpage to @@ -68,7 +68,7 @@ apt (0.7.10) UNRELEASED; urgency=low * Fix wording for "After unpacking...". Thans to Michael Gilbert for the patch. Closes: #260825 - -- Christian Perrier Mon, 17 Dec 2007 10:10:17 +0530 + -- Michael Vogt Mon, 07 Jan 2008 21:40:47 +0100 apt (0.7.9) unstable; urgency=low -- cgit v1.2.3 From b7c5ca8c3138c2a8045bb4ef3545cb348a05e67b Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Thu, 10 Jan 2008 12:08:21 +0100 Subject: * apt-pkg/algorithms.cc: - Since APT::Get::List-Cleanup and APT::List-Cleanup both default to true, the effect of the compatibility code was to require both of them to be set to false in order to disable list cleanup; this broke the installer. Instead, disable list cleanup if either of them is set to false. --- debian/changelog | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'debian') diff --git a/debian/changelog b/debian/changelog index ef4a21b6f..700e93af7 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,15 @@ +apt (0.7.11) UNRELEASED; urgency=low + + [ Colin Watson ] + * apt-pkg/algorithms.cc: + - Since APT::Get::List-Cleanup and APT::List-Cleanup both default to + true, the effect of the compatibility code was to require both of them + to be set to false in order to disable list cleanup; this broke the + installer. Instead, disable list cleanup if either of them is set to + false. + + -- Michael Vogt Thu, 10 Jan 2008 12:06:12 +0100 + apt (0.7.10) unstable; urgency=low [ Otavio Salvador ] -- cgit v1.2.3 From 7fbe42c07e7dae58477819d25b1d6b2b53367aa7 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Wed, 16 Jan 2008 16:41:06 +0100 Subject: * cmdline/apt-key: - add support for a master-keyring that contains signing keys that can be used to sign the archive signing keys. This should make key-rollover easier. --- debian/changelog | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'debian') diff --git a/debian/changelog b/debian/changelog index 700e93af7..92fdcf57c 100644 --- a/debian/changelog +++ b/debian/changelog @@ -7,6 +7,12 @@ apt (0.7.11) UNRELEASED; urgency=low to be set to false in order to disable list cleanup; this broke the installer. Instead, disable list cleanup if either of them is set to false. + + [ Michael Vogt ] + * cmdline/apt-key: + - add support for a master-keyring that contains signing keys + that can be used to sign the archive signing keys. This should + make key-rollover easier. -- Michael Vogt Thu, 10 Jan 2008 12:06:12 +0100 -- cgit v1.2.3 From 51dbf3686ee62584d7c2a21b6209a45ebceac5c9 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Thu, 31 Jan 2008 10:06:00 +0100 Subject: * apt-pkg/deb/dpkgpm.cc: - merged patch from Kees Cook to fix anoying upper-case display on amd64 in sbuild --- debian/changelog | 3 +++ 1 file changed, 3 insertions(+) (limited to 'debian') diff --git a/debian/changelog b/debian/changelog index 92fdcf57c..d0e0c754d 100644 --- a/debian/changelog +++ b/debian/changelog @@ -13,6 +13,9 @@ apt (0.7.11) UNRELEASED; urgency=low - add support for a master-keyring that contains signing keys that can be used to sign the archive signing keys. This should make key-rollover easier. + * apt-pkg/deb/dpkgpm.cc: + - merged patch from Kees Cook to fix anoying upper-case display + on amd64 in sbuild -- Michael Vogt Thu, 10 Jan 2008 12:06:12 +0100 -- cgit v1.2.3 From e06c72cd8d39433b04883f35dea81619b8464b0e Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Fri, 1 Feb 2008 16:55:44 +0100 Subject: * apt-pkg/algorithms.cc: - add APT::Update::Post-Invoke-Success script slot --- debian/changelog | 2 ++ 1 file changed, 2 insertions(+) (limited to 'debian') diff --git a/debian/changelog b/debian/changelog index d0e0c754d..497053111 100644 --- a/debian/changelog +++ b/debian/changelog @@ -16,6 +16,8 @@ apt (0.7.11) UNRELEASED; urgency=low * apt-pkg/deb/dpkgpm.cc: - merged patch from Kees Cook to fix anoying upper-case display on amd64 in sbuild + * apt-pkg/algorithms.cc: + - add APT::Update::Post-Invoke-Success script slot -- Michael Vogt Thu, 10 Jan 2008 12:06:12 +0100 -- cgit v1.2.3