summaryrefslogtreecommitdiff
path: root/debian
diff options
context:
space:
mode:
authorAndrew Shadura <andrewsh@debian.org>2013-10-22 14:49:50 +0200
committerAndrew Shadura <andrewsh@debian.org>2013-10-22 14:49:50 +0200
commit8167ba4f6e0ecb99fac1cbd9e7aec94a0b448601 (patch)
tree68522c9301d1af7fe59f196fe243005cf1d5fce3 /debian
parent64fd5c4e705708e078f7c96783e223fd1c6fb34f (diff)
Import 1.1-2.
Diffstat (limited to 'debian')
-rw-r--r--debian/changelog9
-rw-r--r--debian/control6
-rwxr-xr-xdebian/rules9
3 files changed, 19 insertions, 5 deletions
diff --git a/debian/changelog b/debian/changelog
index e6edebd..5aeed21 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,12 @@
+libguess (1.1-2) unstable; urgency=low
+
+ * Remove autotools-dev dependency.
+ * Depend on debhelper 9.
+ * Update Standards-Version to 3.9.4 (no changes).
+ * Fix FTBFS with latest debhelper (Closes: #724184).
+
+ -- Andrew Shadura <andrewsh@debian.org> Mon, 21 Oct 2013 11:17:08 +0200
+
libguess (1.1-1) unstable; urgency=low
* New upstream release, drop patches which were applied upstream.
diff --git a/debian/control b/debian/control
index b459a36..c3e93ff 100644
--- a/debian/control
+++ b/debian/control
@@ -1,9 +1,9 @@
Source: libguess
Priority: optional
-Maintainer: Andrew O. Shadura <bugzilla@tut.by>
+Maintainer: Andrew Shadura <andrewsh@debian.org>
Uploaders: Jakub Wilk <jwilk@debian.org>
-Build-Depends: debhelper (>= 8.1.3~), autotools-dev (>= 20100122.1), dh-autoreconf, libmowgli-dev (>= 0.7.0), pkg-config, gauche
-Standards-Version: 3.9.2
+Build-Depends: debhelper (>= 9), dh-autoreconf, libmowgli-dev (>= 0.7.0), pkg-config, gauche
+Standards-Version: 3.9.4
Section: libs
Homepage: http://www.atheme.org/project/libguess
Vcs-hg: http://hg.debian.org/hg/collab-maint/libguess
diff --git a/debian/rules b/debian/rules
index 9579d46..887215c 100755
--- a/debian/rules
+++ b/debian/rules
@@ -7,7 +7,7 @@ export LDFLAGS := $(shell dpkg-buildflags --get LDFLAGS) -Wl,--version-script=$(
export ACLOCAL := aclocal -I m4
%:
- dh $@ --with=autotools-dev --with=autoreconf
+ dh $@ --with=autoreconf
override_dh_auto_build:
gosh src/libguess/guess.scm src/libguess/guess_tab.c
@@ -17,7 +17,12 @@ override_dh_auto_build:
override_dh_compress:
dh_compress -Xguessconv.c
-ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
+override_dh_auto_clean:
+ [ ! -f buildsys.mk ] || dh_auto_clean
+
override_dh_auto_test:
+ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
LD_LIBRARY_PATH=$(LD_LIBRARY_PATH):$(CURDIR)/src/libguess make -C src/tests/testbench --no-print-directory run
endif
+
+.PHONY: override_dh_auto_build override_dh_compress override_dh_auto_clean override_dh_auto_test