--- testresources-0.2.orig/debian/pyversions +++ testresources-0.2/debian/pyversions @@ -0,0 +1 @@ +2.4- --- testresources-0.2.orig/debian/copyright +++ testresources-0.2/debian/copyright @@ -0,0 +1,26 @@ +This package was originally debianized by Robert Collins + on Web, 15 Feb 2006. + +It was downloaded from http://www.robertcollins.net/unittest/testresources. + +Upstream Authors: Robert Collins + +Copyright 2005 Robert Collins. + +This program 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 2 of the License, or +(at your option) any later version. + +This program 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 with +the Debian GNU/Linux distribution in file /usr/share/common-licenses/GPL; +if not, write to the Free Software Foundation, Inc., 51 Franklin St, +Fifth Floor, Boston, MA 02110-1301, USA. + +On Debian systems, the full text of the GPL can be found in +/usr/share/common-licenses/GPL --- testresources-0.2.orig/debian/testresources.install +++ testresources-0.2/debian/testresources.install @@ -0,0 +1,2 @@ +debian/tmp/usr/bin/* +debian/tmp/usr/lib/* --- testresources-0.2.orig/debian/compat +++ testresources-0.2/debian/compat @@ -0,0 +1 @@ +5 --- testresources-0.2.orig/debian/control +++ testresources-0.2/debian/control @@ -0,0 +1,21 @@ +Source: testresources +Section: python +Priority: optional +Maintainer: Ubuntu Developers +XSBC-Original-Maintainer: Robert Collins +Build-Depends: debhelper (>= 5), cdbs, python-all-dev (>= 2.3.5-11) +Build-Depends-Indep: python-docutils, python-support (>= 0.5.3), python-testtools +Standards-Version: 3.7.3 + +Package: python-testresources +Architecture: all +Depends: ${python:Depends} +Conflicts: python2.4-testresources +Replaces: python2.4-testresources +Description: PyUnit extension for managing expensive test fixtures + PyUnit extension to manage the initialisation and lifetime of expensive + test fixtures. + . + For example reference databases are often only need to be constructed + once but standard test isolation causes them to be constructed for every + fixture, making test execution very slow. --- testresources-0.2.orig/debian/rules +++ testresources-0.2/debian/rules @@ -0,0 +1,12 @@ +#!/usr/bin/make -f + +DEB_PYTHON_SYSTEM=pysupport +include /usr/share/cdbs/1/rules/debhelper.mk +include /usr/share/cdbs/1/class/python-distutils.mk + +clean:: + -rm -rf build + find . -name "*.pyc" -print0 | xargs -0 rm -f + +common-post-build-indep:: + $(MAKE) check --- testresources-0.2.orig/debian/changelog +++ testresources-0.2/debian/changelog @@ -0,0 +1,38 @@ +testresources (0.2-0ubuntu1) karmic; urgency=low + + [ Elliot Murphy ] + * New upstream release with many bugfixes (Closes: #406413). + + [ James Westby ] + * Add python-testtools to Build-Depends-Indep as it is needed by the + testsuite. + + -- Elliot Murphy (personal) Wed, 29 Jul 2009 10:45:34 -0400 + +testresources (0.1-1.2) unstable; urgency=low + + * Non-maintainer upload. + * Update for new python policy (Closes: #380970). + * Run make check instead of ./test_all.py (Closes: #394239). + * Move from section devel to section python. + * Clean up package description to make lintian happy. + * Remove spurios debian/NEWS file. + * Bump Standards Version to 3.7.3. (No changes needed). + + -- Barry deFreese Wed, 23 Jan 2008 17:22:42 -0500 + +testresources (0.1-1.1) unstable; urgency=medium + + * Non-maintainer upload. + * setup.py, test_all.py: Use python2.4 as the interpreter. + Closes: #358403. + * Move build dependencies used in the clean target to Build-Depends. + * Build depend on debhelper (>= 5) since we use v5 mode. + + -- Matej Vela Fri, 19 May 2006 12:58:19 -0500 + +testresources (0.1-1) unstable; urgency=low + + * Initial release. Closes: #353378 + + -- Robert Collins Wed, 15 Feb 2006 12:36:57 +1100 --- testresources-0.2.orig/debian/pycompat +++ testresources-0.2/debian/pycompat @@ -0,0 +1 @@ +2