Skip to content
Commits on Source (6)
parsnp (1.2+dfsg-4) unstable; urgency=medium
* debhelper 11
* Point Vcs fields to salsa.debian.org
* Standards-Version: 4.1.5
* Remove ancient x-python-version field
* d/rules: do not parse d/changelog
-- Andreas Tille <tille@debian.org> Tue, 17 Jul 2018 20:32:10 +0200
parsnp (1.2+dfsg-3) unstable; urgency=medium
* Fix build when trying to link with -Wl, --as-needed (Thanks for the patch
......
......@@ -3,17 +3,15 @@ Maintainer: Debian Med Packaging Team <debian-med-packaging@lists.alioth.debian.
Uploaders: Andreas Tille <tille@debian.org>
Section: science
Priority: optional
Build-Depends: debhelper (>= 10),
dh-autoreconf,
Build-Depends: debhelper (>= 11~),
python-all-dev,
python-setuptools,
cython,
libmuscle-3.7-dev
Standards-Version: 3.9.8
Vcs-Browser: https://anonscm.debian.org/cgit/debian-med/parsnp.git
Vcs-Git: https://anonscm.debian.org/git/debian-med/parsnp.git
Standards-Version: 4.1.5
Vcs-Browser: https://salsa.debian.org/med-team/parsnp
Vcs-Git: https://salsa.debian.org/med-team/parsnp.git
Homepage: http://harvest.readthedocs.org/en/latest/content/parsnp.html
X-Python-Version: >= 2.7
Package: parsnp
Architecture: any
......@@ -23,7 +21,7 @@ Depends: ${shlibs:Depends},
python-numpy,
fasttree,
mummer,
phipack,
phipack
Recommends: python-dendropy
Description: rapid core genome multi-alignment
Parsnp was designed to align the core genome of hundreds to thousands of
......
......@@ -2,12 +2,12 @@
# DH_VERBOSE := 1
DEBPKGNAME := $(shell dpkg-parsechangelog | awk '/^Source:/ {print $$2}')
include /usr/share/dpkg/default.mk
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
%:
dh $@ --with python2 --with autoreconf
dh $@ --with python2
override_dh_auto_configure:
dh_auto_configure -- --with-libmuscle=/usr/include/libMUSCLE-3.7
......@@ -15,9 +15,9 @@ override_dh_auto_configure:
override_dh_auto_install:
dh_auto_install
# The actual user interface is the Python script so move the binary to /usr/lib
mkdir -p debian/$(DEBPKGNAME)/usr/lib/$(DEBPKGNAME)
mv debian/$(DEBPKGNAME)/usr/bin/$(DEBPKGNAME) debian/$(DEBPKGNAME)/usr/lib/$(DEBPKGNAME)
mkdir -p debian/$(DEB_SOURCE)/usr/lib/$(DEB_SOURCE)
mv debian/$(DEB_SOURCE)/usr/bin/$(DEB_SOURCE) debian/$(DEB_SOURCE)/usr/lib/$(DEB_SOURCE)
override_dh_fixperms:
dh_fixperms
chmod -x debian/$(DEBPKGNAME)/usr/share/$(DEBPKGNAME)/template.ini
chmod -x debian/$(DEB_SOURCE)/usr/share/$(DEB_SOURCE)/template.ini