Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (5)
debhelper 11
· 316f9a26
Andreas Tille
authored
Jul 05, 2018
316f9a26
Names in d/changelog
· d818732e
Andreas Tille
authored
Jul 05, 2018
d818732e
Point Vcs fields to salsa.debian.org
· f5d9ca15
Andreas Tille
authored
Jul 05, 2018
f5d9ca15
Standards-Version: 4.1.4
· 81164452
Andreas Tille
authored
Jul 05, 2018
81164452
Cleanup d/rules
· f3a4f6e7
Andreas Tille
authored
Jul 05, 2018
f3a4f6e7
Hide whitespace changes
Inline
Side-by-side
debian/changelog
View file @
f3a4f6e7
dawg (1.2-2) UNRELEASED; urgency=medium
[ Andreas Tille ]
* Team upload
* Add citation
* Homepage vanished but project is on Github - use this as homepage
* cme fix dpkg-control
* debhelper 1
0
* debhelper 1
1
* d/watch: version=4
* Fix short description
* run build time test and add autopkgtest
* Cleanup d/rules
[ Steffen Möller ]
* debian/upstream/metadata: Ref to OMICtools (Steffen Moeller)
[ Andreas Tille ]
* Point Vcs fields to salsa.debian.org
* Standards-Version: 4.1.4
-- Andreas Tille <tille@debian.org> Wed, 04 Jan 2017 08:44:59 +0100
dawg (1.2-1) unstable; urgency=low
...
...
debian/compat
View file @
f3a4f6e7
1
0
1
1
debian/control
View file @
f3a4f6e7
...
...
@@ -3,13 +3,13 @@ Maintainer: Debian Med Packaging Team <debian-med-packaging@lists.alioth.debian.
Uploaders: Kevin Murray <spam@kdmurray.id.au>
Section: science
Priority: optional
Build-Depends: debhelper (>= 1
0
),
Build-Depends: debhelper (>= 1
1~
),
cmake,
bison,
flex
Standards-Version:
3.9.8
Vcs-Browser: https://
anonscm
.debian.org/
cgit/debian-med
/dawg
.git
Vcs-Git: https://
anonscm
.debian.org/
git/debian-med
/dawg.git
Standards-Version:
4.1.4
Vcs-Browser: https://
salsa
.debian.org/
med-team
/dawg
Vcs-Git: https://
salsa
.debian.org/
med-team
/dawg.git
Homepage: https://github.com/reedacartwright/dawg
Package: dawg
...
...
debian/rules
View file @
f3a4f6e7
...
...
@@ -3,27 +3,16 @@
# output every command that modifies files on the build system.
export DH_VERBOSE = 1
# see EXAMPLES in dpkg-buildflags(1) and read /usr/share/dpkg/*
DPKG_EXPORT_BUILDFLAGS = 1
include /usr/share/dpkg/default.mk
# see FEATURE AREAS in dpkg-buildflags(1)
#export DEB_BUILD_MAINT_OPTIONS = hardening=+all
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
# see ENVIRONMENT in dpkg-buildflags(1)
# package maintainers to append CFLAGS
#export DEB_CFLAGS_MAINT_APPEND = -Wall -pedantic
# package maintainers to append LDFLAGS
#export DEB_LDFLAGS_MAINT_APPEND = -Wl,--as-needed
DEBPKGNAME=dawg
BINDIR := $(CURDIR)/obj-$(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)/src
# main packaging script based on dh7 syntax
%:
dh $@
# dh_make generated override targets
# This is example for Cmake (See https://bugs.debian.org/641051 )
override_dh_auto_configure:
...
...
@@ -31,11 +20,12 @@ override_dh_auto_configure:
-DCMAKE_LIBRARY_PATH=$(DEB_HOST_MULTIARCH) \
-DCMAKE_DATA_DIR=/usr/share/doc/dawg
override_dh_fixperms:
dh_fixperms
chmod -x debian/$(DEB
PKGNAM
E)/usr/share/doc/dawg/examples/*
chmod -x debian/$(DEB
_SOURC
E)/usr/share/doc/dawg/examples/*
override_dh_auto_test:
# FIXME: This test fails - but let the build pass anyway for the moment
ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
cd tests && PATH=$$PATH:$(BINDIR) sh test0.sh || true
endif