summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulian Andres Klode <jak@debian.org>2009-07-30 14:10:35 +0200
committerJulian Andres Klode <jak@debian.org>2009-07-30 14:10:35 +0200
commit0181690f1cdc4ffbc3192b9b93d13d9a9a1f8f83 (patch)
treee1950f000b3ef212d8f5acdc7f330648ef781287
parent4d211f682d1fb100049898b4f0675eed1faa5c4e (diff)
downloadpython-apt-0181690f1cdc4ffbc3192b9b93d13d9a9a1f8f83.tar.gz
* python/cache.cc:
- Support Breaks, Enhances dependency types (Closes: #416247)
-rw-r--r--debian/changelog7
-rw-r--r--python/cache.cc2
2 files changed, 8 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog
index a47510c4..7fb62a1d 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+python-apt (0.7.11.2) unstable; urgency=low
+
+ * python/cache.cc:
+ - Support Breaks, Enhances dependency types (Closes: #416247)
+
+ -- Julian Andres Klode <jak@debian.org> Thu, 30 Jul 2009 14:08:30 +0200
+
python-apt (0.7.11.1) unstable; urgency=low
[ Stephan Peijnik ]
diff --git a/python/cache.cc b/python/cache.cc
index 0c59f561..c7e5e76e 100644
--- a/python/cache.cc
+++ b/python/cache.cc
@@ -502,7 +502,7 @@ static PyObject *MakeDepends(PyObject *Owner,pkgCache::VerIterator &Ver,
{
"", "Depends","PreDepends","Suggests",
"Recommends","Conflicts","Replaces",
- "Obsoletes"
+ "Obsoletes", "Breaks", "Enhances"
};
PyObject *Dep = PyString_FromString(Types[Start->Type]);
LastDepType = Start->Type;