summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apt-pkg/cacheset.cc2
-rw-r--r--debian/changelog11
-rw-r--r--debian/control2
3 files changed, 13 insertions, 2 deletions
diff --git a/apt-pkg/cacheset.cc b/apt-pkg/cacheset.cc
index f17a9e0d5..84021a2b7 100644
--- a/apt-pkg/cacheset.cc
+++ b/apt-pkg/cacheset.cc
@@ -464,7 +464,7 @@ PackageSet CacheSetHelper::canNotFindPackage(pkgCacheFile &Cache, std::string co
VersionSet CacheSetHelper::canNotFindAllVer(pkgCacheFile &Cache,
pkgCache::PkgIterator const &Pkg) {
if (ShowError == true)
- _error->Error(_("Can't select versions from package '%s' as it purely virtual"), Pkg.FullName(true).c_str());
+ _error->Notice(_("Can't select versions from package '%s' as it purely virtual"), Pkg.FullName(true).c_str());
return VersionSet();
}
/*}}}*/
diff --git a/debian/changelog b/debian/changelog
index 1829e067c..928a4b3d8 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,14 @@
+apt (0.7.26~exp11ubuntu3) maverick; urgency=low
+
+ * debian/control:
+ - add dependency on zlib-dev for libapt-pkg-dev
+ * apt-pkg/cacheset.cc:
+ - make CacheSetHelper::canNotFindAllVer display a notice
+ only (for compat reasons). Otherwise tools like sbuild
+ blow up
+
+ -- Michael Vogt <michael.vogt@ubuntu.com> Fri, 30 Jul 2010 08:57:15 +0200
+
apt (0.7.26~exp11ubuntu2) maverick; urgency=low
* remove debian-archive-keyring dependency and readd
diff --git a/debian/control b/debian/control
index 5d709ab8e..7b3292ffb 100644
--- a/debian/control
+++ b/debian/control
@@ -39,7 +39,7 @@ Description: Documentation for APT
Package: libapt-pkg-dev
Architecture: any
Priority: optional
-Depends: apt (= ${binary:Version}), apt-utils (= ${binary:Version}), ${libapt-pkg:provides}, ${libapt-inst:provides}, ${misc:Depends}
+Depends: apt (= ${binary:Version}), apt-utils (= ${binary:Version}), ${libapt-pkg:provides}, ${libapt-inst:provides}, ${misc:Depends}, zlib1g-dev | zlib-dev
Section: libdevel
Description: Development files for APT's libapt-pkg and libapt-inst
This package contains the header files and libraries for