diff options
author | Daniel Baumann <mail@daniel-baumann.ch> | 2015-11-07 15:27:52 +0000 |
---|---|---|
committer | Daniel Baumann <mail@daniel-baumann.ch> | 2015-11-07 15:27:52 +0000 |
commit | 5177ee37fff136e3d1e5bc3ee939204e8fd74748 (patch) | |
tree | c02d6f034c1a1556f32327980688934bf68df7c0 | |
parent | Adding debian version 0.7-2. (diff) | |
download | plzip-5177ee37fff136e3d1e5bc3ee939204e8fd74748.tar.xz plzip-5177ee37fff136e3d1e5bc3ee939204e8fd74748.zip |
Adding debian version 0.7-3.debian/0.7-3
Signed-off-by: Daniel Baumann <mail@daniel-baumann.ch>
Diffstat (limited to '')
-rw-r--r-- | debian/changelog | 7 | ||||
-rw-r--r-- | debian/control | 2 | ||||
-rwxr-xr-x | debian/rules | 7 |
3 files changed, 15 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog index 196737e..23c7b20 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +plzip (0.7-3) unstable; urgency=low + + * Disabling test target in rules on sparc (Closes: #608642). + * Making build-depends on liblz-dev unversioned. + + -- Daniel Baumann <daniel.baumann@progress-technologies.net> Fri, 14 Jan 2011 22:46:07 +0100 + plzip (0.7-2) unstable; urgency=low * Updating maintainer and uploaders fields. diff --git a/debian/control b/debian/control index ed9f014..783fb23 100644 --- a/debian/control +++ b/debian/control @@ -2,7 +2,7 @@ Source: plzip Section: utils Priority: optional Maintainer: Daniel Baumann <daniel.baumann@progress-technologies.net> -Build-Depends: debhelper (>= 8), liblz-dev (>= 1.0), texinfo +Build-Depends: debhelper (>= 8), liblz-dev, texinfo Standards-Version: 3.9.1 Homepage: http://www.nongnu.org/lzip/plzip.html diff --git a/debian/rules b/debian/rules index 2497ef8..fee7030 100755 --- a/debian/rules +++ b/debian/rules @@ -1,8 +1,15 @@ #!/usr/bin/make -f +DEB_BUILD_ARCH ?= $(shell dpkg-architecture -qDEB_BUILD_ARCH) + %: dh ${@} +ifeq ($(DEB_BUILD_ARCH),sparc) +override_dh_auto_test: + # disabled, see #608642 for more information +endif + override_dh_auto_install: dh_auto_install -- DESTDIR=$(CURDIR)/debian/plzip |