--- python-testscenarios-0.2.orig/debian/rules +++ python-testscenarios-0.2/debian/rules @@ -0,0 +1,5 @@ +#!/usr/bin/make -f + +include /usr/share/cdbs/1/rules/debhelper.mk +DEB_PYTHON_SYSTEM = pycentral +include /usr/share/cdbs/1/class/python-distutils.mk --- python-testscenarios-0.2.orig/debian/changelog +++ python-testscenarios-0.2/debian/changelog @@ -0,0 +1,11 @@ +python-testscenarios (0.2-1) unstable; urgency=low + + * New upstream release. + + -- Robert Collins Mon, 01 Feb 2010 17:39:07 +1100 + +python-testscenarios (0.1-1) unstable; urgency=low + + * New upstream release. Closes: #561644 + + -- Robert Collins Sat, 19 Dec 2009 14:20:58 +1100 --- python-testscenarios-0.2.orig/debian/pycompat +++ python-testscenarios-0.2/debian/pycompat @@ -0,0 +1 @@ +2 --- python-testscenarios-0.2.orig/debian/compat +++ python-testscenarios-0.2/debian/compat @@ -0,0 +1 @@ +6 --- python-testscenarios-0.2.orig/debian/copyright +++ python-testscenarios-0.2/debian/copyright @@ -0,0 +1,17 @@ +This is python-testscenarios, packaged for debian by Robert Collins. + +Homepage is https://launchpad.net/testscenarios + +Copyright (c) 2009 Robert Collins +Copyright (c) 2009 Martin Pool + +Licensed under either the Apache License, Version 2.0 or the BSD 3-clause +license at the users choice. A copy of both licenses are available in the +project source as Apache-2.0 and BSD. You may not use this file except in +compliance with one of these two licences. + +Unless required by applicable law or agreed to in writing, software +distributed under these licenses is distributed on an "AS IS" BASIS, WITHOUT +WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the +license you chose for the specific language governing permissions and +limitations under that license. --- python-testscenarios-0.2.orig/debian/control +++ python-testscenarios-0.2/debian/control @@ -0,0 +1,28 @@ +Source: python-testscenarios +Maintainer: Robert Collins +Section: python +Priority: optional +Standards-Version: 3.8.1 +Build-Depends-Indep: + python-central (>= 0.6.7) +Build-Depends: + cdbs (>= 0.4.51), + debhelper (>= 6.0.4), + python (>= 2.4), + python-testtools +XS-Python-Version: all +Homepage: https://launchpad.net/testscenarios + +Package: python-testscenarios +Architecture: all +XB-Python-Version: ${python:Versions} +Depends: ${python:Depends}, + ${misc:Depends}, + python-testtools +Provides: ${python:Provides} +Description: Dependency injection for Python unittest tests + testscenarios provides clean dependency injection for python unittest style + tests. This can be used for interface testing (testing many implementations + via a single test suite) or for classic dependency injection (provide tests + with dependencies externally to the test code itself, allowing easy testing + in different situations).