--- python-sptest-0.2.1.orig/debian/copyright +++ python-sptest-0.2.1/debian/copyright @@ -0,0 +1,33 @@ +This package was debianized by Stephan Peijnik on +Thu, 11 Sep 2008 10:59:35 +0200. + +It was downloaded from + +Upstream Author: + + Stephan Peijnik + +Copyright: + + Copyright (C) 2008 Stephan Peijnik + +License: + + sptest is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + sptest is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with sptest. If not, see . + +On Debian systems, the complete text of the GNU General +Public License can be found in `/usr/share/common-licenses/GPL'. + +The Debian packaging is (C) 2008, Stephan Peijnik and +is licensed under the GPL, see above. --- python-sptest-0.2.1.orig/debian/compat +++ python-sptest-0.2.1/debian/compat @@ -0,0 +1 @@ +5 --- python-sptest-0.2.1.orig/debian/watch +++ python-sptest-0.2.1/debian/watch @@ -0,0 +1,3 @@ +version=3 + +http://pypi.python.org/packages/source/s/sptest/sptest-(.*)\.tar\.gz \ No newline at end of file --- python-sptest-0.2.1.orig/debian/changelog +++ python-sptest-0.2.1/debian/changelog @@ -0,0 +1,23 @@ +python-sptest (0.2.1-2) unstable; urgency=medium + + * Removed "build install" dependency of binary-arch rule in debian/rules. + * Fixed wrong Architecture (should be "all", not "any") in debian/control. + + build using default Python version only (fixes FTBFS bug, + Closes: #503466) + * Fixed debian/copyright to get rid of a lintian warning. + * Removed duplicate binary-arch target from debian/rules. + * Added Debian Python Modules Team to Uploaders. + * Changed required debhelper version to "5" in debian/control and + + debian/compat. + * Added Vcs-Browser and Vcs-Svn fields to debian/control. + * Removed Provides field from debian/control (not needed by Python modules). + * Switched from pycentral to pysupport. + + -- Stephan Peijnik Tue, 28 Oct 2008 23:02:39 +0100 + +python-sptest (0.2.1-1) unstable; urgency=low + + * Initial release (Closes: #498586) + + -- Stephan Peijnik Thu, 11 Sep 2008 12:46:16 +0200 + --- python-sptest-0.2.1.orig/debian/rules +++ python-sptest-0.2.1/debian/rules @@ -0,0 +1,43 @@ +#!/usr/bin/make -f +# -*- makefile -*- + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +clean: + dh_testdir + dh_testroot + rm -rf build + find . -name *\.py[co] -exec rm {} \; + dh_clean + +build: + python setup.py build + +install: + python setup.py install --root $(CURDIR)/debian/python-sptest + +# Build architecture-dependent files here. +binary-arch: + +# Build architecture-independent files here. +binary-indep: build install + dh_testdir + dh_testroot + dh_install + dh_installchangelogs + dh_installdocs README + dh_pysupport + dh_compress -X.py + dh_fixperms + dh_installdeb + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch + +get-orig-source: + uscan --force-download --rename --repack + +.PHONY: build clean binary-indep binary-arch install \ No newline at end of file --- python-sptest-0.2.1.orig/debian/docs +++ python-sptest-0.2.1/debian/docs @@ -0,0 +1 @@ +README --- python-sptest-0.2.1.orig/debian/control +++ python-sptest-0.2.1/debian/control @@ -0,0 +1,23 @@ +Source: python-sptest +Section: python +Priority: optional +Maintainer: Stephan Peijnik +Uploaders: Debian Python Modules Team +Build-Depends: python-support (>= 0.6), debhelper(>= 5) +Standards-Version: 3.8.0 +Homepage: http://bitbucket.org/sp/sptest +Vcs-Svn: svn://svn.debian.org/python-modules/packages/python-sptest/trunk/ +Vcs-Browser: http://svn.debian.org/wsvn/python-modules/packages/python-sptest/trunk/?op=log + +Package: python-sptest +Architecture: all +Depends: ${python:Depends} +Description: Python unittest module extension + sptest is a Python module that provides a simplified interface for customized + handling of unittest results. + . + It is designed to be a drop-in replacement and does not require any + modifications to exitsing Python unittest-compatible code. + . + sptest comes with two predefined output handlers providing coloured CLI + and XML output of test results.