Package is arch-dependent now that it uses C extension.
authorBen Finney <[email protected]>
Tue, 16 Jun 2009 15:15:06 +0000 (17 01:15 +1000)
committerBen Finney <[email protected]>
Tue, 16 Jun 2009 15:15:06 +0000 (17 01:15 +1000)
debian/changelog
debian/control
debian/rules

index 936bec6..1030f73 100644 (file)
@@ -15,6 +15,8 @@ python-coverage (3.0-1) UNRELEASED; urgency=low
     + Migrate from python-central to python-support.
   * debian/rules:
     + Install upstream changelog.
+  * debian/control, debian/rules:
+    + Package is arch-dependent now that it uses C extension.
 
  --
 
index 56b3e08..9c73c34 100644 (file)
@@ -5,18 +5,19 @@ DM-Upload-Allowed: yes
 Section: python
 Priority: optional
 Standards-Version: 3.8.1
-Build-Depends-Indep:
-    python-setuptools,
-    python-support (>= 0.90)
 Build-Depends:
     debhelper (>= 7.0.50),
+    python-support (>= 0.90),
+    python-setuptools,
+    python-dev (>= 2.3),
     python (>= 2.3)
 Homepage: http://www.nedbatchelder.com/code/modules/coverage.html
 
 Package: python-coverage
-Architecture: all
+Architecture: any
 Depends: ${python:Depends},
     python-pkg-resources,
+    ${shlibs:Depends},
     ${misc:Depends}
 Provides: ${python:Provides}
 Description: code coverage tool for Python
index 0d11a95..93f96b2 100755 (executable)
@@ -26,10 +26,10 @@ install: build
 
 .PHONY: binary-indep
 binary-indep: build install
-       dh binary-indep
 
 .PHONY: binary-arch
 binary-arch: build install
+       dh binary-arch
 
 .PHONY: binary
 binary: build binary-indep binary-arch