debian/0000775000000000000000000000000012266006301007164 5ustar debian/changelog0000664000000000000000000000466012266006276011057 0ustar python-testscenarios (0.4-2ubuntu2) trusty; urgency=medium * Build-Depend on python3-all. -- Barry Warsaw Thu, 16 Jan 2014 11:45:36 -0500 python-testscenarios (0.4-2ubuntu1) trusty; urgency=low * Merge from Debian unstable. Remaining changes: - Add python3 support. -- Chuck Short Mon, 28 Oct 2013 11:08:21 -0400 python-testscenarios (0.4-2) unstable; urgency=low * Using debian-unstable as packaging branch. * Fixed python -> python-all build-depends. -- Thomas Goirand Mon, 22 Jul 2013 15:43:59 +0800 python-testscenarios (0.4-1) unstable; urgency=low * New upstream release. * Package is now team maintained in PKG OpenStack. * debian/copyright now using 1.0 parsable format. * Now using 3.0 (quilt) source format. * Using debhelper and compat 9. * Using dh_python2 and not CDBS anymore. * Added VCS fields. * Added build-depends: python-setuptools. * Added a watch file. -- Thomas Goirand Sat, 20 Jul 2013 17:29:59 +0000 python-testscenarios (0.4-0ubuntu1) saucy; urgency=low * New upstream version. * debian/patches/fix-python3-ubuntu.patch: Dropped. * debian/control: Add python-setuptools and python3-setuptools. -- Chuck Short Thu, 19 Sep 2013 10:00:10 -0400 python-testscenarios (0.3-0ubuntu2) saucy; urgency=low * Build for python2/python3. * debian/patches/fix-python3-ubuntu.patch: Fix building for python3.3 * Switch to debhelper. -- Chuck Short Thu, 13 Jun 2013 08:05:19 -0500 python-testscenarios (0.3-0ubuntu1) raring; urgency=low * New upstream release. * debian/rules: Run testsuite during build. -- Chuck Short Tue, 08 Jan 2013 13:20:20 -0600 python-testscenarios (0.2-1.1) unstable; urgency=low * Non-maintainer upload. * Convert to dh_python2 (Closes: #617035). -- Andrea Colangelo Wed, 26 Jun 2013 11:15:38 +0200 python-testscenarios (0.2-1ubuntu1) raring; urgency=low * Convert to dh_python2 -- Chuck Short Sun, 06 Jan 2013 12:05:48 -0600 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 debian/rules0000775000000000000000000000121612266006237010254 0ustar #!/usr/bin/make -f PYTHONS:=$(shell pyversions -vr) PYTHON3S:=$(shell py3versions -vr) %: dh $@ --with python2,python3 override_dh_auto_build: set -e && for pyvers in $(PYTHONS); do \ python$$pyvers setup.py build; \ done set -e && for pyvers in $(PYTHON3S); do \ python$$pyvers setup.py build; \ done override_dh_auto_install: set -e && for pyvers in $(PYTHONS); do \ python$$pyvers setup.py install --install-layout=deb \ --root $(CURDIR)/debian/python-testscenarios;\ done set -e && for pyvers in $(PYTHON3S); do \ python$$pyvers setup.py install --install-layout=deb \ --root $(CURDIR)/debian/python3-testscenarios;\ done debian/patches/0000775000000000000000000000000012266006301010613 5ustar debian/compat0000664000000000000000000000000212266006237010372 0ustar 9 debian/gbp.conf0000664000000000000000000000022212266006237010607 0ustar [DEFAULT] upstream-branch = upstream-unstable debian-branch = debian-unstable pristine-tar = True [git-buildpackage] export-dir = ../build-area/ debian/copyright0000664000000000000000000000635012266006237011133 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: testscenarios Upstream-Contact: Robert Collins Source: https://pypi.python.org/pypi/testscenarios Files: debian/* Copyright: (c) 2009, Robert Collins License: BSD-3-clauses-or-Apache-2.0 Files: * Copyright: (c) 2009, Robert Collins (c) 2009, Martin Pool License: BSD-3-clauses-or-Apache-2.0 License: BSD-3-clauses-or-Apache-2.0 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. . BSD-license: . Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: . 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. . 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. . 3. Neither the name of Robert Collins nor the names of Subunit contributors may be used to endorse or promote products derived from this software without specific prior written permission. . THIS SOFTWARE IS PROVIDED BY ROBERT COLLINS AND SUBUNIT CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. . Apache-2.0-license: . Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at . http://www.apache.org/licenses/LICENSE-2.0 . Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. . On Debian-based systems the full text of the Apache version 2.0 license can be found in `/usr/share/common-licenses/Apache-2.0'. debian/control0000664000000000000000000000337712266006250010604 0ustar Source: python-testscenarios Maintainer: Ubuntu Developers XSBC-Original-Maintainer: PKG OpenStack Uploaders: Robert Collins , Section: python Priority: optional Standards-Version: 3.9.4 Build-Depends: debhelper (>= 8), python (>= 2.6.6-3~), python-setuptools, python3-setuptools, python-testtools, python3-all, python3-testtools XS-Python-Version: all Vcs-Browser: http://anonscm.debian.org/gitweb/?p=openstack/python-testscenarios.git Vcs-Git: git://anonscm.debian.org/openstack/python-testscenarios.git Homepage: https://launchpad.net/testscenarios Package: python-testscenarios Architecture: all Depends: python-testtools, ${misc:Depends}, ${python:Depends} Provides: ${python:Provides} Description: Dependency injection for Python unittest tests (python2) 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). Package: python3-testscenarios Architecture: all Depends: ${python3:Depends}, ${misc:Depends}, python3-testtools Provides: ${python3:Provides} Description: Dependency injection for Python unittest tests (python3) 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). debian/source/0000775000000000000000000000000012266006301010464 5ustar debian/source/format0000664000000000000000000000001412266006237011702 0ustar 3.0 (quilt) debian/watch0000664000000000000000000000013412266006237010223 0ustar version=3 http://pypi.python.org/packages/source/t/testscenarios/testscenarios-(.+).tar.gz