summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulian Andres Klode <julian.klode@canonical.com>2019-03-19 17:49:39 +0100
committerJulian Andres Klode <julian.klode@canonical.com>2019-03-19 17:49:39 +0100
commit0f51535e9b26fd7973e72bae21e35e48da605f25 (patch)
tree1db3b21e256f511938329e34fe82db52e97d3b9c
parent01b936bea24cee3afd08c6d345ca17d962b3352b (diff)
Tighten dependencies from apt and apt-utils on libs
Make apt pull in at least the same version of libapt-pkg, and apt-utils at least the same version of libapt-inst, so that upgrading only apt also upgrades the libraries.
-rw-r--r--debian/control6
1 files changed, 5 insertions, 1 deletions
diff --git a/debian/control b/debian/control
index 1362bd984..cc573c176 100644
--- a/debian/control
+++ b/debian/control
@@ -37,6 +37,7 @@ Package: apt
Architecture: any
Depends: adduser,
gpgv | gpgv2 | gpgv1,
+ libapt-pkg6.0 (>= ${binary:Version}),
${apt:keyring},
${misc:Depends},
${shlibs:Depends}
@@ -143,7 +144,10 @@ Description: documentation for APT development
Package: apt-utils
Architecture: any
-Depends: apt (= ${binary:Version}), ${misc:Depends}, ${shlibs:Depends}
+Depends: apt (= ${binary:Version}),
+ libapt-inst3.0 (>= ${binary:Version}),
+ ${misc:Depends},
+ ${shlibs:Depends}
Description: package management related utility programs
This package contains some less used commandline utilities related
to package management with APT.