Skip to content
Commits on Source (5)
e-mem (1.0.1-2) unstable; urgency=medium
* Point Vcs fields to salsa.debian.org
* Standards-Version: 4.3.0
* Respect DEB_BUILD_OPTIONS in override_dh_auto_test target
* Remove unneeded get-orig-source script
-- Andreas Tille <tille@debian.org> Mon, 07 Jan 2019 13:52:46 +0100
e-mem (1.0.1-1) unstable; urgency=medium
* New upstream version
......
......@@ -5,9 +5,9 @@ Section: science
Priority: optional
Build-Depends: debhelper (>= 11~),
libboost-dev
Standards-Version: 4.1.3
Vcs-Browser: https://anonscm.debian.org/cgit/debian-med/e-mem.git
Vcs-Git: https://anonscm.debian.org/git/debian-med/e-mem.git
Standards-Version: 4.3.0
Vcs-Browser: https://salsa.debian.org/med-team/e-mem
Vcs-Git: https://salsa.debian.org/med-team/e-mem.git
Homepage: http://www.csd.uwo.ca/~ilie/E-MEM/
Package: e-mem
......
#!/bin/sh
set -e
NAME=`dpkg-parsechangelog | awk '/^Source/ { print $2 }'`
DVERSION=`dpkg-parsechangelog | awk '/^Version:/ { print $2 }' | sed -e 's/^[0-9]*://' -e 's/-.*//'`
MVERSION=`dpkg-parsechangelog | awk '/^Version:/ { print $2 }' | sed 's/^\([0-9\.]\+\)[+~][-0-9]\+$/\1/'`
wget -q http://www.csd.uwo.ca/~ilie/E-MEM/e-mem.zip
unzip -q e-mem.zip
VERSION=${MVERSION}+`find e-mem_2 -type f -printf '%T@ %p\n' | sort -n | tail -1 | sed 's/ .*//' | gawk '{print strftime("%Y%m%d", $0)}'`
if [ "$DVERSION" = "$VERSION" ] ; then
echo "No newer upstream version than $DVERSION available."
rm -rf e-mem_2 __MACOSX e-mem.zip
exit
fi
mk-origtargz --repack --compress xz --version ${VERSION} e-mem.zip
rm -rf e-mem_2 __MACOSX e-mem.zip
......@@ -8,7 +8,6 @@ export DEB_BUILD_MAINT_OPTIONS=hardening=+all
dh $@
override_dh_auto_test:
ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
PATH=.:$(PATH) ./run_example
get-orig-source:
. debian/get-orig-source
endif