Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (4)
Use less data for autopkgtest
· 5f467748
Andreas Tille
authored
Feb 07, 2019
5f467748
debhelper 12
· b4a48ba0
Andreas Tille
authored
Feb 07, 2019
b4a48ba0
Standards-Version: 4.3.0
· a488c285
Andreas Tille
authored
Feb 07, 2019
a488c285
Upload to unstable
· 4d2d4a12
Andreas Tille
authored
Feb 07, 2019
4d2d4a12
Show whitespace changes
Inline
Side-by-side
debian/changelog
View file @
4d2d4a12
deepnano (0.0+git20170813.e8a621e-3) unstable; urgency=medium
* Use less data for autopkgtest
Closes: #921566
* debhelper 12
* Standards-Version: 4.3.0
-- Andreas Tille <tille@debian.org> Thu, 07 Feb 2019 08:25:35 +0100
deepnano (0.0+git20170813.e8a621e-2) unstable; urgency=medium
* Enable separate build of Architecture: all package
...
...
debian/compat
View file @
4d2d4a12
1
1
1
2
debian/control
View file @
4d2d4a12
...
...
@@ -4,12 +4,12 @@ Uploaders: Çağrı ULAŞ <cagriulas@gmail.com>,
Andreas Tille <tille@debian.org>
Section: science
Priority: optional
Build-Depends: debhelper (>= 1
1
~),
Build-Depends: debhelper (>= 1
2
~),
python-all,
dh-python,
python-markdown,
python-theano
Standards-Version: 4.
1.4
Standards-Version: 4.
3.0
Vcs-Browser: https://salsa.debian.org/med-team/deepnano
Vcs-Git: https://salsa.debian.org/med-team/deepnano.git
Homepage: https://bitbucket.org/vboza/deepnano
...
...
debian/tests/run-test.sh
View file @
4d2d4a12
#!/bin/bash
set
-e
#!/bin/sh -e
pkg_name
=
"deepnano"
test_required_pkg
=
"deepnano-data"
pkg
=
"deepnano"
test_required_pkg
=
"
${
pkg
}
-data"
datadir
=
/usr/share/poretools/data
if
[
"
$AUTOPKGTEST_TMP
"
=
""
]
;
then
AUTOPKGTEST_TMP
=
$(
mktemp
-d
/tmp/
${
pkg
}
-test
.XXXXXX
)
...
...
@@ -11,9 +11,12 @@ fi
cp
-a
/usr/share/
${
test_required_pkg
}
/
*
$AUTOPKGTEST_TMP
mkdir
-p
$AUTOPKGTEST_TMP
/test_data/
cp
-a
/usr/share/poretools/data/
*
$AUTOPKGTEST_TMP
/test_data/
# Copy only 10 data sets since test with all data takes to long
for
d
in
`
ls
$datadir
|
sort
|
head
-n10
`
;
do
cp
$datadir
/
$d
$AUTOPKGTEST_TMP
/test_data/
;
done
cd
$AUTOPKGTEST_TMP
find
.
-name
"*gz"
-exec
gunzip
\{\}
\;
#echo '!!!!!!!!!!'
#ls -R
...
...