Skip to content
Commits on Source (8)
python-screed (1.0-3) unstable; urgency=medium
* Team upload.
* debhelper 11
* Point Vcs fields to salsa.debian.org
* Standards-Version: 4.2.1
* Respect DEB_BUILD_OPTIONS in override_dh_auto_test target
* Remove trailing whitespace in debian/copyright
* Drop ancient X-Python-Version field
* Drop unused lintian-override
-- Andreas Tille <tille@debian.org> Tue, 30 Oct 2018 08:59:40 +0100
python-screed (1.0-2) unstable; urgency=medium
* Use python3 for the tests
......
......@@ -3,7 +3,7 @@ Maintainer: Debian Med Packaging Team <debian-med-packaging@lists.alioth.debian.
Uploaders: Michael R. Crusoe <michael.crusoe@gmail.com>
Section: python
Priority: optional
Build-Depends: debhelper (>= 9.0.0),
Build-Depends: debhelper (>= 11~),
dh-python,
python3-all,
python3-setuptools,
......@@ -12,11 +12,10 @@ Build-Depends: debhelper (>= 9.0.0),
python3-bz2file,
python3-pytest-runner,
python3-pytest-cov
Standards-Version: 4.0.0
Vcs-Browser: https://anonscm.debian.org/cgit/debian-med/python-screed.git
Vcs-Git: https://anonscm.debian.org/git/debian-med/python-screed.git
Standards-Version: 4.2.1
Vcs-Browser: https://salsa.debian.org/med-team/python-screed
Vcs-Git: https://salsa.debian.org/med-team/python-screed.git
Homepage: https://screed.readthedocs.org
X-Python3-Version: >= 3.4
Package: python3-screed
Architecture: all
......
# The duplicated compressed file is used intentionally since the test
# should run on both compression methods
duplicated-compressed-file usr/lib/python3/dist-packages/screed/tests/*
# The compressed files come unchanged from source package - this should
# be realised in the lintian test. Simply silencing it here.
package-contains-timestamped-gzip usr/lib/python3/dist-packages/screed/tests/*
......@@ -9,9 +9,11 @@ export PYBUILD_NAME=screed
dh $@ --with python3,sphinxdoc --buildsystem=pybuild
override_dh_auto_test:
ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
dh_auto_install
PYBUILD_SYSTEM=custom \
PYBUILD_TEST_ARGS="export PATH={destdir}/usr/usr/bin:$$PATH {interpreter} -m pytest -m 'not known_failing'"
endif
#override_dh_auto_build:
# dh_auto_build
......