summaryrefslogtreecommitdiff
path: root/debian
diff options
context:
space:
mode:
authorMichael Vogt <michael.vogt@ubuntu.com>2006-09-16 12:30:38 +0200
committerMichael Vogt <michael.vogt@ubuntu.com>2006-09-16 12:30:38 +0200
commit3772dc74d3e7767980a011e01302dd688b3764fc (patch)
tree7b044fa1dc21f038acb95f6c506e6bd4b12882f6 /debian
parent42142a6cf63458599c6a11c398a25b301df2df55 (diff)
* reverted otavios patch again because it breaks the following behaviour:
A depends on X|Y B depends on Y With the old code we get: "apt-get install A B": we get "A B X Y" "apt-get install B A": we get "A B Y" With the new code there is no way to get this right and we always end up with "A B X Y" because we just go over the packages in the order that they are in the cache and run MarkInstall(AutoInstall=true) on them then. When A comes before B we always end up with the unneeded X dependency.
Diffstat (limited to 'debian')
-rw-r--r--debian/changelog4
1 files changed, 1 insertions, 3 deletions
diff --git a/debian/changelog b/debian/changelog
index 1ec80ca01..4c5841057 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-apt (0.6.46) unstable; urgency=low
+apt (0.6.45.1) unstable; urgency=low
* debian/control:
- switched to libdb4.4 for building (closes: #381019)
@@ -7,8 +7,6 @@ apt (0.6.46) unstable; urgency=low
versions of the package (closes: #257054)
- properly handle recommends/suggests or-groups when printing the list of
suggested/recommends packages (closes: #311619)
- - fix the way multiple packages are installed so that the order of
- packages on the commandline doesn't matter anymore
* methods/http.cc:
- check more careful for incorrect proxy settings (closes: #378868)
* methods/gzip.cc: