Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (4)
Standards-Version: 4.2.1
· 1c824c7e
Andreas Tille
authored
Oct 26, 2018
1c824c7e
Respect DEB_BUILD_OPTIONS in override_dh_auto_test target
· 1ff0da59
Andreas Tille
authored
Oct 26, 2018
1ff0da59
Mark as team upload
· 27d6b49e
Andreas Tille
authored
Oct 26, 2018
27d6b49e
Do not parse d/changelog
· d40616ae
Andreas Tille
authored
Oct 26, 2018
d40616ae
Show whitespace changes
Inline
Side-by-side
debian/changelog
View file @
d40616ae
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
...
...
debian/control
View file @
d40616ae
...
...
@@ -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
...
...
debian/rules
View file @
d40616ae
...
...
@@ -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
)
...
...