--- testrepository-0.0.6.orig/debian/changelog +++ testrepository-0.0.6/debian/changelog @@ -0,0 +1,51 @@ +testrepository (0.0.6-0ubuntu1~linaro1) precise; urgency=low + + * New upstream release. + * Depends on python-testtools >= 0.9.15. + + -- Danilo Ĺ egan Tue, 08 May 2012 10:32:15 +0200 + +testrepository (0.0.5-1.1) unstable; urgency=low + + * Non-maintainer upload. + * Make python-testrepository depend on python-subunit (closes: #576957). + Thanks to Jelmer Vernooij for the bug report. + + -- Jakub Wilk Fri, 26 Aug 2011 21:26:45 +0200 + +testrepository (0.0.5-1) unstable; urgency=low + + * New upstream release. + + -- Robert Collins Sat, 26 Feb 2011 20:22:14 +1300 + +testrepository (0.0.4-1) unstable; urgency=low + + * New upstream release. + + -- Robert Collins Sun, 12 Sep 2010 08:48:03 +1200 + +testrepository (0.0.3-1) unstable; urgency=low + + * First debian upload. Closes: #571888 + * New upstream release. + + -- Robert Collins Sun, 28 Feb 2010 22:41:55 +1100 + +python-testrepository (0.0.2-2) unstable; urgency=low + + * Grab upstream improvements. + + -- Robert Collins Sun, 07 Feb 2010 22:20:18 +1100 + +python-testrepository (0.0.2-1) unstable; urgency=low + + * New upstream release. + + -- Robert Collins Sun, 10 Jan 2010 22:32:57 +1100 + +python-testrepository (0.0.1-1) unstable; urgency=low + + * New upstream release. + + -- Robert Collins Sun, 10 Jan 2010 22:16:09 +1100 --- testrepository-0.0.6.orig/debian/copyright +++ testrepository-0.0.6/debian/copyright @@ -0,0 +1,16 @@ +This is python-testrepository, packaged for debian by Robert Collins. + +Homepage is https://launchpad.net/testrepository + +Copyright (c) 2009, 2010 Robert Collins + +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. --- testrepository-0.0.6.orig/debian/rules +++ testrepository-0.0.6/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 --- testrepository-0.0.6.orig/debian/testrepository.docs +++ testrepository-0.0.6/debian/testrepository.docs @@ -0,0 +1,4 @@ +README.txt +doc/DESIGN.txt +doc/DEVELOPERS.txt +doc/MANUAL.txt --- testrepository-0.0.6.orig/debian/pycompat +++ testrepository-0.0.6/debian/pycompat @@ -0,0 +1 @@ +2 --- testrepository-0.0.6.orig/debian/testrepository.install +++ testrepository-0.0.6/debian/testrepository.install @@ -0,0 +1 @@ +usr/bin/testr usr/bin/ --- testrepository-0.0.6.orig/debian/compat +++ testrepository-0.0.6/debian/compat @@ -0,0 +1 @@ +7 --- testrepository-0.0.6.orig/debian/python-testrepository.install +++ testrepository-0.0.6/debian/python-testrepository.install @@ -0,0 +1 @@ +usr/lib/* --- testrepository-0.0.6.orig/debian/control +++ testrepository-0.0.6/debian/control @@ -0,0 +1,48 @@ +Source: testrepository +Maintainer: Robert Collins +Section: python +Priority: optional +Standards-Version: 3.8.4 +Build-Depends-Indep: python-central (>= 0.6.7) +Build-Depends: cdbs (>= 0.4.51), + debhelper (>= 7), + python (>= 2.4), + python-subunit, + python-testresources, + python-testscenarios, + python-testtools (>= 0.9.15~) +XS-Python-Version: all +Homepage: https://launchpad.net/testrepository + +Package: testrepository +Architecture: all +XB-Python-Version: ${python:Versions} +Depends: python-testrepository (>= ${source:Version}), + ${misc:Depends}, + ${python:Depends} +Provides: ${python:Provides} +Description: Test result manager + Testrepository provides a database of test results and supports easy workflows + to be built on top of that database. For instance, running just failing tests + or getting the last test run back to examine again (without running the tests + again). Testrepository is compatible with any test suite that can output + subunit. This includes any TAP test suite and any pyunit compatible test + suite. + . + The testrepository package contains the CLI front end. + +Package: python-testrepository +Architecture: all +XB-Python-Version: ${python:Versions} +Depends: python-subunit, ${misc:Depends}, ${python:Depends} +Provides: ${python:Provides} +Description: Database of test results - python library + Testrepository provides a database of test results and supports easy workflows + to be built on top of that database. For instance, running just failing tests + or getting the last test run back to examine again (without running the tests + again). Testrepository is compatible with any test suite that can output + subunit. This includes any TAP test suite and any pyunit compatible test + suite. + . + The python-testrepository package contains the Python testrepository + library, which can be used for programmatic access to the database.