[Debtags-commits] [SCM] Command line debtags tool. branch, master, updated. 1ab6e8e957d7a682ec34f5ce4bf74109f752f521

Enrico Zini enrico at enricozini.org
Sun May 9 21:21:00 UTC 2010


The following commit has been merged in the master branch:
commit 1ab6e8e957d7a682ec34f5ce4bf74109f752f521
Author: Enrico Zini <enrico at enricozini.org>
Date:   Fri Jan 23 16:54:19 2009 +0100

    Build with new libept

diff --git a/debian/changelog b/debian/changelog
index 217c144..599cbe5 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,10 @@
-debtags (1.7.8) unstable; urgency=low
+debtags (1.7.9) unstable; urgency=low
+
+  * Build with new libept
+
+ -- Enrico Zini <enrico at debian.org>  Fri, 23 Jan 2009 16:45:54 +0100
+
+debtags (1.7.8) testing-proposed-updates; urgency=low
 
   * Solve name confusion between enum values and template parameters.
     Closes: #512640
diff --git a/debian/control b/debian/control
index 7cf53c3..86bd6e2 100644
--- a/debian/control
+++ b/debian/control
@@ -3,7 +3,7 @@ Section: admin
 Priority: optional
 Maintainer: Enrico Zini <enrico at debian.org>
 Uploaders: Arnaud Fontaine <arnaud at andesi.org>
-Build-Depends: c++abi2-dev, cdbs, debhelper (>> 4.1), dh-buildinfo, pkg-config, apt, libept-dev (>= 0.5.17), libept-dev (<< 0.6), zlib1g-dev, python-dev, python-docutils, libtagcoll2-dev (>= 2.0.4), libtagcoll2-dev (<<2.1), libwibble-dev (>= 0.1.15), libwibble-dev (<< 0.2)
+Build-Depends: c++abi2-dev, cdbs, debhelper (>> 4.1), dh-buildinfo, pkg-config, apt, libept-dev (>= 0.5.26), libept-dev (<< 0.6), zlib1g-dev, python-dev, python-docutils, libtagcoll2-dev (>= 2.0.4), libtagcoll2-dev (<<2.1), libwibble-dev (>= 0.1.15), libwibble-dev (<< 0.2)
 Standards-Version: 3.8.0.0
 Vcs-Svn: svn://svn.debian.org/svn/debtags/debtags/1.7
 Vcs-Browser: http://svn.debian.org/wsvn/debtags/debtags/1.7
diff --git a/tools/debtags.cc b/tools/debtags.cc
index 221bd65..7ab1c4d 100644
--- a/tools/debtags.cc
+++ b/tools/debtags.cc
@@ -229,7 +229,7 @@ public:
 				i != data.first.end(); ++i)
 		{
 			PackageState s = env().apt().state(*i);
-			if (!(s.isInstalled() || s.isUpgradable() || s.isBroken()))
+			if (!(s.isInstalled() || s.upgradable() || s.nowBroken()))
 				continue;
 			std::set<string> tags;
 			for (typename TAGS::const_iterator j = data.second.begin();
@@ -546,7 +546,7 @@ public:
 				i != data.first.end(); ++i)
 		{
 			PackageState s = env().apt().state(*i);
-			bool installed = (s.isInstalled() || s.isUpgradable() || s.isBroken());
+			bool installed = (s.isInstalled() || s.upgradable() || s.nowBroken());
 
 			if (!installed)
 				// Take note of uninstalled packages

-- 
Command line debtags tool.



More information about the Debtags-commits mailing list