summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--debian/changelog1
-rw-r--r--python/cache.cc2
2 files changed, 2 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog
index dc8d1545..29927989 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -4,6 +4,7 @@ python-apt (0.7.11) UNRELEASED; urgency=low
- Support 'key in mapping' for TagSections
* Replace support for file objects with a more generic support for any object
providing a fileno() method and for file descriptors (integers).
+ * Add support for the Breaks fields
-- Julian Andres Klode <jak@debian.org> Mon, 13 Apr 2009 18:08:10 +0200
diff --git a/python/cache.cc b/python/cache.cc
index 0c59f561..4db097c7 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"
};
PyObject *Dep = PyString_FromString(Types[Start->Type]);
LastDepType = Start->Type;