Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (8)
debhelper 11
· 58b5c5ed
Andreas Tille
authored
Oct 30, 2018
58b5c5ed
Point Vcs fields to salsa.debian.org
· 87433b42
Andreas Tille
authored
Oct 30, 2018
87433b42
Standards-Version: 4.2.1
· a2c312e6
Andreas Tille
authored
Oct 30, 2018
a2c312e6
Respect DEB_BUILD_OPTIONS in override_dh_auto_test target
· 6fa22f3b
Andreas Tille
authored
Oct 30, 2018
6fa22f3b
Remove trailing whitespace in debian/copyright
· 25e31c10
Andreas Tille
authored
Oct 30, 2018
25e31c10
Drop ancient X-Python-Version field
· 4171eb48
Andreas Tille
authored
Oct 30, 2018
4171eb48
Drop unused lintian-override
· f9c178b4
Andreas Tille
authored
Oct 30, 2018
f9c178b4
Upload to unstable
· bb3a1ccd
Andreas Tille
authored
Oct 30, 2018
bb3a1ccd
Show whitespace changes
Inline
Side-by-side
debian/changelog
View file @
bb3a1ccd
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
...
...
debian/compat
View file @
bb3a1ccd
9
11
debian/control
View file @
bb3a1ccd
...
...
@@ -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
...
...
debian/copyright
View file @
bb3a1ccd
debian/python3-screed.lintian-overrides
View file @
bb3a1ccd
# 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/*
debian/rules
View file @
bb3a1ccd
...
...
@@ -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
...
...