Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (3)
Force LC_ALL=C.UTF-8 in build and autopkgtest
· 44c863c9
Andreas Tille
authored
Jun 21, 2018
44c863c9
Drop ancient X-Python-Version
· cacdc3a9
Andreas Tille
authored
Jun 21, 2018
cacdc3a9
Upload to unstable
· 42bf5f69
Andreas Tille
authored
Jun 21, 2018
42bf5f69
Show whitespace changes
Inline
Side-by-side
debian/changelog
View file @
42bf5f69
python-biom-format (2.1.6+dfsg-2) unstable; urgency=medium
* Force LC_ALL=C.UTF-8 in build and autopkgtest
Closes: #896953, #901073
* Drop ancient X-Python-Version
-- Andreas Tille <tille@debian.org> Thu, 21 Jun 2018 05:31:25 +0200
python-biom-format (2.1.6+dfsg-1) unstable; urgency=medium
* New upstream version
...
...
debian/control
View file @
42bf5f69
...
...
@@ -34,7 +34,6 @@ Standards-Version: 4.1.4
Vcs-Browser: https://salsa.debian.org/med-team/python-biom-format
Vcs-Git: https://salsa.debian.org/med-team/python-biom-format.git
Homepage: http://biom-format.org/
X-Python-Version: >= 2.6
Package: python-biom-format
Architecture: any-amd64 any-arm64 armel armhf any-i386 any-mips64el mipsel any-ppc64el
...
...
debian/rules
View file @
42bf5f69
...
...
@@ -3,6 +3,8 @@
# Uncomment this to turn on verbose mode.
export DH_VERBOSE=1
export LC_ALL=C.UTF-8
export PYBUILD_NAME=biom-format
export PYBUILD_DESTDIR_python2=debian/python-$(PYBUILD_NAME)
export PYBUILD_DESTDIR_python3=debian/python3-$(PYBUILD_NAME)
...
...
debian/tests/python2
View file @
42bf5f69
...
...
@@ -6,6 +6,8 @@ pys="$(pyversions -r 2>/dev/null)"
cp
-a
./examples ./tests
"
$ADTTMP
"
cd
"
$ADTTMP
"
export
LC_ALL
=
C.UTF-8
for
py
in
$pys
;
do
echo
"===
$py
==="
$py
-m
nose tests 2>&1
...
...
debian/tests/python3
View file @
42bf5f69
...
...
@@ -6,6 +6,8 @@ pys="$(py3versions -r 2>/dev/null)"
cp
-a
./examples ./tests
"
$ADTTMP
"
cd
"
$ADTTMP
"
export
LC_ALL
=
C.UTF-8
for
py
in
$pys
;
do
echo
"===
$py
==="
$py
-m
nose tests 2>&1
...
...