Skip to content
Snippets Groups Projects
Commit 33fc0e73 authored by Thomas Bechtold's avatar Thomas Bechtold
Browse files

[svn-inject] Applying Debian modifications (1.2) to trunk

parents
No related branches found
No related tags found
No related merge requests found
python-scripttest (1.2) UNRELEASED; urgency=low
* Initial release. (Closes: #716667)
-- Thomas Bechtold <thomasbechtold@jpberlin.de> Thu, 11 Jul 2013 10:07:19 +0200
9
Source: python-scripttest
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
Build-Depends: debhelper (>= 9),
python-all (>= 2.6.6-3~),
python3-all (>= 3.1.2-6~),
python-setuptools,
python3-setuptools
X-Python-Version: >= 2.6
X-Python3-Version: >= 3.0
Homepage: http://pythonpaste.org/scripttest/
Vcs-Svn: svn://anonscm.debian.org/python-modules/packages/python-scripttest/trunk/
Vcs-Browser: http://anonscm.debian.org/viewvc/python-modules/packages/python-scripttest/trunk/
Package: python-scripttest
Architecture: all
Depends: ${misc:Depends}, ${python:Depends}
Description: Helper to test command-line scripts
ScriptTest is a library to help you test your interactive command-line
applications. With it you can easily run the command (in a subprocess) and
see the output (stdout, stderr) and any file modifications.
Package: python3-scripttest
Architecture: all
Depends: ${misc:Depends}, ${python3:Depends}
Description: Helper to test command-line scripts
ScriptTest is a library to help you test your interactive command-line
applications. With it you can easily run the command (in a subprocess) and
see the output (stdout, stderr) and any file modifications.
Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: python-scripttest
Source: https://pypi.python.org/pypi/ScriptTest/
Files: scripttest/__init__.py
Copyright: 2005 - 2007 Ian Bicking <ianb@colorstudy.com>
License: MIT
License: MIT
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
.
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
#!/usr/bin/make -f
PYVERS := $(shell pyversions -r)
PY3VERS := $(shell py3versions -r)
%:
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
3.0 (quilt)
version=3
http://pypi.python.org/packages/source/S/ScriptTest/ScriptTest-([\d.]*)\.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