[Python-modules-commits] r9632 - in packages/python-djvulibre/trunk/debian (changelog rules)
jwilk-guest at users.alioth.debian.org
jwilk-guest at users.alioth.debian.org
Thu Sep 3 11:58:23 UTC 2009
Date: Thursday, September 3, 2009 @ 11:58:22
Author: jwilk-guest
Revision: 9632
Don't assume that the build target will be called with Build-Depends-Indep satisfied.
Modified:
packages/python-djvulibre/trunk/debian/changelog
packages/python-djvulibre/trunk/debian/rules
Modified: packages/python-djvulibre/trunk/debian/changelog
===================================================================
--- packages/python-djvulibre/trunk/debian/changelog 2009-09-03 11:08:03 UTC (rev 9631)
+++ packages/python-djvulibre/trunk/debian/changelog 2009-09-03 11:58:22 UTC (rev 9632)
@@ -1,8 +1,10 @@
-python-djvulibre (0.1.13-2) UNRELEASED; urgency=low
+python-djvulibre (0.1.13-2) unstable; urgency=low
* Make debian/rules safe for parallel builds.
+ * Don't assume that the build target will be called with
+ Build-Depends-Indep satisfied (does not close #544781).
- -- Jakub Wilk <ubanus at users.sf.net> Tue, 25 Aug 2009 11:37:31 +0200
+ -- Jakub Wilk <ubanus at users.sf.net> Thu, 03 Sep 2009 13:55:02 +0200
python-djvulibre (0.1.13-1) unstable; urgency=low
Modified: packages/python-djvulibre/trunk/debian/rules
===================================================================
--- packages/python-djvulibre/trunk/debian/rules 2009-09-03 11:08:03 UTC (rev 9631)
+++ packages/python-djvulibre/trunk/debian/rules 2009-09-03 11:58:22 UTC (rev 9632)
@@ -3,7 +3,8 @@
PYTHONPATH = $(wildcard $(CURDIR)/build/lib.*-$(shell pyversions -dv))
.PHONY: build
-build: build-arch build-indep
+build: build-arch
+# build does not depend on build-indep due to #544781/#374029
.PHONY: build-arch
build-arch: build/stamp
@@ -40,7 +41,7 @@
dh install -i
.PHONY: binary
-binary:
+binary: install-arch install-indep
dh binary
.PHONY: binary-arch
More information about the Python-modules-commits
mailing list