--- testresources-0.2.7.orig/debian/copyright +++ testresources-0.2.7/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.7.orig/debian/changelog +++ testresources-0.2.7/debian/changelog @@ -0,0 +1,104 @@ +testresources (0.2.7-0ubuntu2) saucy; urgency=low + + * debian/control: Add python-setuptools. + + -- Chuck Short Wed, 05 Jun 2013 09:08:24 -0500 + +testresources (0.2.7-0ubuntu1) saucy; urgency=low + + * New upstream release. + + -- Chuck Short Wed, 05 Jun 2013 08:26:03 -0500 + +testresources (0.2.4-1ubuntu1) quantal; urgency=low + + * Convert package from obsolete pysupport to to dh_python2: + - debian/control: Drop pysupport build dependency and bump python-all/cdbs + build dependencies to the versions that support dh_python2. + - debian/rules: Drop DEB_PYTHON_SYSTEM + - Drop debian/pyversions and debian/pycompat, not needed any more. + + -- Martin Pitt Wed, 16 May 2012 15:57:00 +0200 + +testresources (0.2.4-1) unstable; urgency=low + + * New upstream release. + + -- Robert Collins Sat, 27 Feb 2010 10:04:22 +1100 + +testresources (0.2.3-1) unstable; urgency=low + + * New upstream release. + + -- Robert Collins Sun, 24 Jan 2010 15:53:11 +1100 + +testresources (0.2.2-1) unstable; urgency=low + + * New upstream release. + + -- Robert Collins Tue, 05 Jan 2010 17:05:34 +1100 + +testresources (0.2.1-1) unstable; urgency=low + + * New upstream release. (Closes: #560567) + + -- Robert Collins Sat, 12 Dec 2009 23:14:29 +1100 + +testresources (0.2-1) unstable; urgency=low + + * Incorporate Ubuntu uploads and Debian NMU's. + * Convert CDBS patch to merge from trunk. + + -- Robert Collins Sun, 20 Sep 2009 17:19:22 +1000 + +testresources (0.2-0ubuntu2) karmic; urgency=low + + [ Elliot Murphy ] + * Fix a crash with tearing down test suites when the result is not + available. (Closes: #409405) + + [ Alessio Treglia ] + * Bump Standards to 3.8.3: + - Add ${misc:Depends} macro to Depends field. + * Bump debhelper,cdbs build-dependencies (as per Python New policy). + + -- Elliot Murphy (personal) Tue, 18 Aug 2009 14:55:07 +0200 + +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.7.orig/debian/control +++ testresources-0.2.7/debian/control @@ -0,0 +1,23 @@ +Source: testresources +Section: python +Priority: optional +Maintainer: Ubuntu Developers +XSBC-Original-Maintainer: Robert Collins +Build-Depends: debhelper (>= 5.0.38), cdbs (>= 0.4.90), python-setutpools, + python-all (>= 2.6.6-3~) +Build-Depends-Indep: python-docutils, + python-testtools +Standards-Version: 3.8.3 + +Package: python-testresources +Architecture: all +Depends: ${python:Depends}, ${misc: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.7.orig/debian/rules +++ testresources-0.2.7/debian/rules @@ -0,0 +1,12 @@ +#!/usr/bin/make -f + +include /usr/share/cdbs/1/rules/debhelper.mk +include /usr/share/cdbs/1/class/python-distutils.mk +include /usr/share/cdbs/1/rules/simple-patchsys.mk + +clean:: + -rm -rf build + find . -name "*.pyc" -print0 | xargs -0 rm -f + +common-post-build-indep:: +# $(MAKE) check --- testresources-0.2.7.orig/debian/compat +++ testresources-0.2.7/debian/compat @@ -0,0 +1 @@ +5 --- testresources-0.2.7.orig/debian/testresources.install +++ testresources-0.2.7/debian/testresources.install @@ -0,0 +1,2 @@ +debian/tmp/usr/bin/* +debian/tmp/usr/lib/*