Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (5)
Fix docs and examples
· b1cfba15
Andreas Tille
authored
Jul 15, 2019
b1cfba15
Fix permissions
· 0f915eb8
Andreas Tille
authored
Jul 15, 2019
0f915eb8
Provide unversioned Link to binary
· 971da6ba
Andreas Tille
authored
Jul 15, 2019
971da6ba
Fix autopkgtest
· 91cde906
Andreas Tille
authored
Jul 15, 2019
91cde906
Upload to unstable
· 1e3a8b8e
Andreas Tille
authored
Jul 15, 2019
1e3a8b8e
Show whitespace changes
Inline
Side-by-side
debian/changelog
View file @
1e3a8b8e
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 1
3:17:13
+0200
--
Andreas Tille <tille@debian.org
> Mon, 15 Jul 2019 1
6:31:25
+0200
proteinortho (5.16.b+dfsg-1) unstable; urgency=medium
...
...
debian/docs
View file @
1e3a8b8e
debian/README.test
debian/tests/run-unit-test
tools
debian/examples
View file @
1e3a8b8e
test/*.faa
test/*.gff
chk_test.pl
src/
chk_test.pl
debian/links
0 → 100644
View file @
1e3a8b8e
usr/bin/proteinortho6 usr/bin/proteinortho
usr/share/man/man1/proteinortho6.1.gz usr/share/man/man1/proteinortho.1.gz
debian/rules
View file @
1e3a8b8e
...
...
@@ -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 \{\} \;
debian/tests/run-unit-test
View file @
1e3a8b8e
#!/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
/
*