Skip to content
Commits on Source (4)
aegean (0.16.0+dfsg-2) UNRELEASED; urgency=medium
* Team upload
[ Jelmer Vernooij ]
* Move source package lintian overrides to debian/source.
-- Jelmer Vernooij <jelmer@debian.org> Mon, 08 Oct 2018 06:28:09 +0100
[ Andreas Tille ]
* Standards-Version: 4.2.1
* Respect DEB_BUILD_OPTIONS in override_dh_auto_test target
* Do not parse d/changelog
-- Andreas Tille <tille@debian.org> Fri, 26 Oct 2018 20:11:46 +0200
aegean (0.16.0+dfsg-1) unstable; urgency=medium
......
......@@ -8,7 +8,7 @@ Build-Depends: debhelper (>= 11),
libgenometools0-dev,
python,
git
Standards-Version: 4.1.4
Standards-Version: 4.2.1
Vcs-Browser: https://salsa.debian.org/med-team/aegean
Vcs-Git: https://salsa.debian.org/med-team/aegean.git
Homepage: http://standage.github.io/AEGeAn
......
......@@ -2,9 +2,7 @@
# -*- makefile -*-
DH_VERBOSE=1
DEBVERS := $(shell dpkg-parsechangelog | sed -n -e 's/^Version: //p')
VERSION := $(shell echo '$(DEBVERS)' | sed -e 's/^[[:digit:]]*://' -e 's/[~-].*//')
OVERSION := $(shell echo '$(DEBVERS)' | sed -e 's/^[[:digit:]]*://' -e 's/[+].*//')
export DESTDIR=$(CURDIR)/debian/tmp
export LC_ALL=C.UTF-8
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
......@@ -23,7 +21,9 @@ override_dh_auto_build:
dh_auto_build -- prefix=$(DESTDIR) 64bit=$(64BIT) errorcheck=no
override_dh_auto_test:
ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
dh_auto_test -- useshared=yes 64bit=$(64BIT) testthreads=5
endif
override_dh_auto_install:
dh_auto_install -- 64bit=$(64BIT) prefix=$(DESTDIR)
......