Skip to content
Commits on Source (5)
proteinortho (6.0.6+dfsg-1) UNRELEASED; urgency=medium
proteinortho (6.0.6+dfsg-1) unstable; urgency=medium
[ Paul Klemm ]
* Team upload.
* New upstream version
[ Andreas Tille ]
......@@ -9,8 +8,11 @@ proteinortho (6.0.6+dfsg-1) UNRELEASED; urgency=medium
* debhelper 12
* Standards-Version: 4.4.0
* Build-Depends: s/liblapack3/liblapack-dev|libatlas-base-dev|liblapack.so/
* Fix permissions
* Provide unversioned Link to binary
* Fix autopkgtest
-- Paul Klemm <klemmp@staff.uni-marburg.de> Mon, 15 Jul 2019 13:17:13 +0200
-- Andreas Tille <tille@debian.org> Mon, 15 Jul 2019 16:31:25 +0200
proteinortho (5.16.b+dfsg-1) unstable; urgency=medium
......
debian/README.test
debian/tests/run-unit-test
tools
test/*.faa
test/*.gff
chk_test.pl
src/chk_test.pl
usr/bin/proteinortho6 usr/bin/proteinortho
usr/share/man/man1/proteinortho6.1.gz usr/share/man/man1/proteinortho.1.gz
......@@ -11,3 +11,7 @@ export DEB_BUILD_MAINT_OPTIONS = hardening=+all
override_dh_auto_install:
dh_auto_install --buildsystem=makefile -- install PREFIX=$(CURDIR)/debian/$(DEB_SOURCE)/usr/lib/proteinortho
override_dh_fixperms:
dh_fixperms
find debian \( -name "*.faa" -o -name "*.gff" \) -exec chmod -x \{\} \;
#!/bin/sh -e
pkg=proteinortho
if [ "$ADTTMP" = "" ] ; then
ADTTMP=`mktemp -d /tmp/${pkg}-test.XXXXXX`
if [ "${AUTOPKGTEST_TMP}" = "" ] ; then
AUTOPKGTEST_TMP=$(mktemp -d /tmp/${pkg}-test.XXXXXX)
trap "rm -rf ${AUTOPKGTEST_TMP}" 0 INT QUIT ABRT PIPE TERM
fi
cd $ADTTMP
cd "${AUTOPKGTEST_TMP}"
mkdir test
cp -a /usr/share/doc/${pkg}/examples/* test
find . -type f -name "*.gz" -exec gunzip \{\} \;
mv test/chk_test.pl .
gunzip -r *
proteinortho -project=test -synteny -singles test/*.faa
./src/chk_test.pl test.proteinortho
./src/chk_test.pl test.poff
./test/chk_test.pl test.proteinortho.tsv
./test/chk_test.pl test.poff.tsv
echo "Test okay"
make test
rm -fr $ADTTMP/*