Skip to content
Snippets Groups Projects
Commit a822cc32 authored by Barry Warsaw's avatar Barry Warsaw 😴
Browse files

* New upstream release.

* d/control:
  - Add dh-python, python{,3}-pytest to Build-Depends.
  - Bump Standards-Version to 3.9.5 with no other changes necessary.
* d/rules:
  - Convert to --buildsystem=pybuild
* d/watch: Updated.
parent 2fc31182
No related branches found
No related tags found
No related merge requests found
python-scripttest (1.3-1) unstable; urgency=medium
* New upstream release.
* d/control:
- Add dh-python, python{,3}-pytest to Build-Depends.
- Bump Standards-Version to 3.9.5 with no other changes necessary.
* d/rules:
- Convert to --buildsystem=pybuild
* d/watch: Updated.
-- Barry Warsaw <barry@debian.org> Fri, 09 May 2014 16:18:56 -0400
python-scripttest (1.2-1) unstable; urgency=low
* Initial release. (Closes: #716667)
......
......@@ -3,11 +3,14 @@ Section: python
Priority: optional
Maintainer: Debian Python Modules Team <python-modules-team@lists.alioth.debian.org>
Uploaders: Thomas Bechtold <thomasbechtold@jpberlin.de>
Standards-Version: 3.9.4
Standards-Version: 3.9.5
Build-Depends: debhelper (>= 9),
dh-python,
python-all (>= 2.6.6-3~),
python3-all (>= 3.1.2-6~),
python-pytest,
python-setuptools,
python3-all (>= 3.1.2-6~),
python3-pytest,
python3-setuptools
X-Python-Version: >= 2.6
X-Python3-Version: >= 3.0
......
#!/usr/bin/make -f
PYVERS := $(shell pyversions -r)
PY3VERS := $(shell py3versions -r)
export PYBUILD_NAME=scripttest
%:
dh $@ --with python2,python3
override_dh_auto_build:
set -ex; \
for py in $(PYVERS) $(PY3VERS); do \
$$py setup.py build; \
done
override_dh_auto_install:
set -ex; \
for py in $(PYVERS); do \
$$py setup.py install --skip-build --no-compile \
--root debian/python-scripttest \
--install-layout=deb; \
done
set -ex; \
for py in $(PY3VERS); do \
$$py setup.py install --skip-build --no-compile \
--root debian/python3-scripttest \
--install-layout=deb; \
done
override_dh_clean:
dh_clean
rm -rf build dist PKG-INFO ScriptTest.egg-info
rm -rf scripttest/__pycache__
find -name '*.py[co]' -delete
dh $@ --with python2,python3 --buildsystem=pybuild
version=3
http://pypi.python.org/packages/source/S/ScriptTest/ScriptTest-([\d.]*)\.tar.gz
https://pypi.python.org/packages/source/s/scripttest/scripttest-(.*).tar.gz
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment