Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (4)
honor "nocheck" in DEB_BUILD_OPTIONS
· 1bf11c62
Andreas Tille
authored
May 20, 2018
1bf11c62
debhelper 11
· 5c3d8b6d
Andreas Tille
authored
May 20, 2018
5c3d8b6d
Point Vcs fields to salsa.debian.org
· 87a62466
Andreas Tille
authored
May 20, 2018
87a62466
Standards-Version: 4.1.4
· 6e4a81fc
Andreas Tille
authored
May 20, 2018
6e4a81fc
Show whitespace changes
Inline
Side-by-side
debian/changelog
View file @
6e4a81fc
...
...
@@ -2,6 +2,11 @@ python-cogent (1.9-12) UNRELEASED; urgency=medium
* Add registry data
* Testsuite: autopkgtest-pkg-python
* honor "nocheck" in DEB_BUILD_OPTIONS
Closes: #898334
* debhelper 11
* Point Vcs fields to salsa.debian.org
* Standards-Version: 4.1.4
-- Andreas Tille <tille@debian.org> Wed, 28 Mar 2018 19:03:41 +0200
...
...
debian/compat
View file @
6e4a81fc
1
0
1
1
debian/control
View file @
6e4a81fc
...
...
@@ -6,7 +6,7 @@ Uploaders: Steffen Moeller <moeller@debian.org>,
Section: python
Testsuite: autopkgtest-pkg-python
Priority: optional
Build-Depends: debhelper (>= 1
0
),
Build-Depends: debhelper (>= 1
1~
),
dh-python,
python-all-dev,
python-matplotlib,
...
...
@@ -30,9 +30,9 @@ Build-Depends: debhelper (>= 10),
raxml [any-amd64 any-i386],
rdp-classifier,
rtax
Standards-Version:
3.9.8
Vcs-Browser: https://
anonscm
.debian.org/
cgit/debian-med
/python-cogent
.git
Vcs-Git: https://
anonscm
.debian.org/
git/debian-med
/python-cogent.git
Standards-Version:
4.1.4
Vcs-Browser: https://
salsa
.debian.org/
med-team
/python-cogent
Vcs-Git: https://
salsa
.debian.org/
med-team
/python-cogent.git
Homepage: http://pycogent.org/
Package: python-cogent
...
...
debian/rules
View file @
6e4a81fc
...
...
@@ -77,6 +77,7 @@ override_dh_installdocs:
rm
-rf
debian/
$(
PKG
)
/usr/share/doc/
$(
PKG
)
/html/_sources
override_dh_auto_test
:
ifeq
(,$(filter nocheck, $(DEB_BUILD_OPTIONS)))
cp
-a
tests/alltests.py tests/alltests.py~
# exclude tests known to fail
for
tst
in
$(
FAILED_TESTS
)
;
do
sed
-i
"/
$${
tst
}
/d"
tests/alltests.py
;
done
...
...
@@ -108,6 +109,7 @@ endif
# restore original tests file
mv
tests/alltests.py~
tests/alltests.py
find
tests
-name
"*.pyc"
-delete
endif
get-orig-source
:
mkdir
-p
../tarballs
...
...