Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (4)
make the build reproducible
· f0370c82
Andreas Tille
authored
Dec 24, 2019
f0370c82
Rename autopkgtest script to run-unit-test as in other Debian Med packages
· 851ffce6
Andreas Tille
authored
Dec 24, 2019
851ffce6
R-U: autopkgtest: s/ADTTMP/AUTOPKGTEST_TMP/g
· d61a29a4
Andreas Tille
authored
Dec 24, 2019
d61a29a4
routine-update: Ready to upload to unstable
· a6208a6c
Andreas Tille
authored
Dec 24, 2019
a6208a6c
Hide whitespace changes
Inline
Side-by-side
debian/README.test
View file @
a6208a6c
...
...
@@ -3,12 +3,12 @@ Notes on how this package can be tested.
This
package
can
be
tested
by
executing
sh
installation
-
test
sh
run
-
unit
-
test
in
order
to
confirm
its
integrity
.
Package
contains
2
executable
files
-
TMalign
and
TMscore
.
Both
are
called
in
`
installation
-test`
script
.
Both
are
called
in
`
run-unit
-test`
script
.
To
test
manually
,
cd
to
some
dir
,
where
you
have
write
permissions
and
do
...
...
debian/changelog
View file @
a6208a6c
tm-align (20190822+dfsg-2) unstable; urgency=medium
[ Chris Lamb ]
* make the build reproducible
Closes: #943954
[ Andreas Tille ]
* Rename autopkgtest script to run-unit-test as in other Debian Med
packages
* autopkgtest: s/ADTTMP/AUTOPKGTEST_TMP/g
-- Andreas Tille <tille@debian.org> Tue, 24 Dec 2019 08:07:50 +0100
tm-align (20190822+dfsg-1) unstable; urgency=medium
* New upstream version
...
...
debian/docs
View file @
a6208a6c
debian/tests/
installation
-test
debian/tests/
run-unit
-test
debian/README.test
debian/rules
View file @
a6208a6c
...
...
@@ -7,7 +7,7 @@ export DEB_BUILD_MAINT_OPTIONS = hardening=+all
override_dh_auto_build:
for src in `ls *.f` ; do \
gfortran
-O3 -g
-ffast-math $(CPPFLAGS) $(LDFLAGS) -lm -o `basename $${src} .f` $${src} ; \
gfortran -ffast-math
$(CFLAGS)
$(CPPFLAGS) $(LDFLAGS) -lm -o `basename $${src} .f` $${src} ; \
done
override_dh_auto_clean:
...
...
debian/tests/control
View file @
a6208a6c
Tests:
installation
-test
Tests:
run-unit
-test
Depends: @
debian/tests/
installation
-test
→
debian/tests/
run-unit
-test
View file @
a6208a6c
...
...
@@ -6,12 +6,12 @@ set -e
pkg
=
tm-align
if
[
"
$A
DT
TMP
"
=
""
]
;
then
A
DT
TMP
=
$(
mktemp
-d
/tmp/
${
pkg
}
-test
.XXXXXX
)
trap
"rm -rf
$A
DT
TMP
"
0 INT QUIT ABRT PIPE TERM
if
[
"
$A
UTOPKGTEST_
TMP
"
=
""
]
;
then
A
UTOPKGTEST_
TMP
=
$(
mktemp
-d
/tmp/
${
pkg
}
-test
.XXXXXX
)
trap
"rm -rf
$A
UTOPKGTEST_
TMP
"
0 INT QUIT ABRT PIPE TERM
fi
cd
$A
DT
TMP
cd
$A
UTOPKGTEST_
TMP
cp
-a
/usr/share/doc/
${
pkg
}
/examples/
*
.
find
.
-type
f
-name
"*.gz"
-exec
gunzip
\{\}
\;
...
...