Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (3)
rules: Set locale so we get an error msg if something goes wrong with the build.
· ea25707e
Timo Aaltonen
authored
Dec 06, 2018
ea25707e
rules: Disable the tests for now.
· 1a36aebc
Timo Aaltonen
authored
Dec 06, 2018
1a36aebc
releasing package custodia version 0.6.0-2
· 6fec0841
Timo Aaltonen
authored
Dec 06, 2018
6fec0841
Show whitespace changes
Inline
Side-by-side
debian/changelog
View file @
6fec0841
custodia (0.6.0-2) unstable; urgency=medium
* rules: Set locale so we get an error msg if something goes wrong
with the build.
* rules: Disable the tests for now.
-- Timo Aaltonen <tjaalton@debian.org> Thu, 06 Dec 2018 01:51:51 +0200
custodia (0.6.0-1) unstable; urgency=medium
* New upstream release.
...
...
debian/rules
View file @
6fec0841
...
...
@@ -14,12 +14,14 @@ export PIP_NO_DEPS=yes
# may pick up this package from global site-packages instead of source dist.
export PIP_IGNORE_INSTALLED=yes
export LC_ALL=C.UTF-8
%:
dh $@ --with python2,python3 --buildsystem=pybuild
override_dh_auto_test:
tox --sitepackages -e py27 -- --skip-servertests
tox --sitepackages -e py36 -- --skip-servertests
#
tox --sitepackages -e py27 -- --skip-servertests
#
tox --sitepackages -e py36 -- --skip-servertests
override_dh_install:
mkdir -p debian/tmp/usr/bin debian/tmp/usr/sbin
...
...