debian/0000755000000000000000000000000012231270313007160 5ustar debian/compat0000644000000000000000000000000212231270313010356 0ustar 9 debian/control0000644000000000000000000000225212231270313010564 0ustar Source: python-ddt Section: python Priority: optional Maintainer: PKG OpenStack Uploaders: Julien Danjou , Thomas Goirand , Mehdi Abaakouk Build-Depends: debhelper (>= 9), openstack-pkg-tools, python-all (>= 2.6.6-3~), python-setuptools, python-sphinx (>= 1.0.7+dfsg) | python3-sphinx Build-Depends-Indep: pep8, python-coverage, python-nose Standards-Version: 3.9.4 Vcs-Browser: http://anonscm.debian.org/gitweb/?p=openstack/python-ddt.git Vcs-Git: git://anonscm.debian.org/openstack/python-ddt.git Homepage: https://pypi.python.org/pypi/ddt Package: python-ddt Architecture: all Pre-Depends: dpkg (>= 1.15.6~) Depends: ${misc:Depends}, ${python:Depends} Recommends: ${python:Recommends} Description: Data-Driven/Decorated Tests DDT (Data-Driven Tests) allows you to multiply one test case by running it with different test data, and make it appear as multiple test cases. DDT consists of a class decorator ddt (for your TestCase subclass) and two method decorators (for your tests that want to be multiplied). debian/docs0000644000000000000000000000002212231270313010025 0ustar docs/_build/html/ debian/source/0000755000000000000000000000000012231270313010460 5ustar debian/source/format0000644000000000000000000000001412231270313011666 0ustar 3.0 (quilt) debian/gbp.conf0000644000000000000000000000020612231270313010575 0ustar [DEFAULT] debian-branch = debian/unstable upstream-tag = %(version)s compression = xz [git-buildpackage] export-dir = ../build-area/ debian/watch0000644000000000000000000000011012231270313010201 0ustar version=3 http://pypi.python.org/packages/source/d/ddt ddt-(.*).tar.gz debian/changelog0000644000000000000000000000051612231270313011034 0ustar python-ddt (0.4.0-2) unstable; urgency=low * Not specifying the version of the LGPL in debian/copyright. -- Thomas Goirand Tue, 22 Oct 2013 02:21:34 +0800 python-ddt (0.4.0-1) unstable; urgency=low * Initial release. (Closes: #724904) -- Thomas Goirand Sun, 29 Sep 2013 22:52:44 +0800 debian/copyright0000644000000000000000000000243612231270313011120 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: ddt Source: git://github.com/txels/ddt.git Files: debian/* Copyright: (c) 2013, Thomas Goirand License: LGPL Files: * Copyright: (c) 2012-2013, Carles Barrobes (c) 2012, Santeri Paavolainen (c) 2012-2013, Jacob Kaplan-Moss (c) 2013, George "elb0w" Tsafas License: LGPL License: LGPL This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation. . This library 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 Lesser General Public License for more details. . You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA . On Debian systems, the complete text of the GNU Lesser General Public License (LGPL) may be found in /usr/share/common-licenses/LGPL. debian/rules0000755000000000000000000000073612231270313010246 0ustar #!/usr/bin/make -f UPSTREAM_GIT = git://github.com/txels/ddt.git include /usr/share/openstack-pkg-tools/pkgos.make %: dh $@ --buildsystem=python_distutils --with python2,sphinxdoc override_dh_clean: rm -rf docs/_build/ dh_clean -O--buildsystem=python_distutils ifeq (,$(findstring nocheck, $(DEB_BUILD_OPTIONS))) override_dh_auto_test: nosetests endif override_dh_installdocs: ifeq (,$(findstring nodocs, $(DEB_BUILD_OPTIONS))) make -C docs html dh_installdocs endif