diff -Nru python-extras-0.0.3/.testr.conf python-extras-0.0.3/.testr.conf --- python-extras-0.0.3/.testr.conf 1970-01-01 00:00:00.000000000 +0000 +++ python-extras-0.0.3/.testr.conf 2013-01-21 18:26:24.000000000 +0000 @@ -0,0 +1,4 @@ +[DEFAULT] +test_command=${PYTHON:-python} -m subunit.run discover . $LISTOPT $IDOPTION +test_id_option=--load-list $IDFILE +test_list_option=--list diff -Nru python-extras-0.0.3/PKG-INFO python-extras-0.0.3/PKG-INFO --- python-extras-0.0.3/PKG-INFO 2013-01-21 18:26:30.000000000 +0000 +++ python-extras-0.0.3/PKG-INFO 1970-01-01 00:00:00.000000000 +0000 @@ -1,68 +0,0 @@ -Metadata-Version: 1.1 -Name: extras -Version: 0.0.3 -Summary: Useful extra bits for Python - things that shold be in the standard library -Home-page: https://github.com/testing-cabal/extras -Author: Testing cabal -Author-email: testtools-dev@lists.launchpad.net -License: UNKNOWN -Description: ====== - extras - ====== - - extras is a set of extensions to the Python standard library, originally - written to make the code within testtools cleaner, but now split out for - general use outside of a testing context. - - - Documentation - ------------- - - pydoc extras is your friend. extras currently contains the following functions: - - * try_import - - * try_imports - - * safe_hasattr - - Which do what their name suggests. - - - Licensing - --------- - - This project is distributed under the MIT license and copyright is owned by - the extras authors. See LICENSE for details. - - - Required Dependencies - --------------------- - - * Python 2.6+ or 3.0+ - - - Bug reports and patches - ----------------------- - - Please report bugs using github issues at . - Patches can also be submitted via github. You can mail the authors directly - via the mailing list testtools-dev@lists.launchpad.net. (Note that Launchpad - discards email from unknown addresses - be sure to sign up for a Launchpad - account before mailing the list, or your mail will be silently discarded). - - - History - ------- - - extras used to be testtools.helpers, and was factored out when folk wanted to - use it separately. - - - Thanks - ------ - - * Martin Pool - -Platform: UNKNOWN -Classifier: License :: OSI Approved :: MIT License diff -Nru python-extras-0.0.3/debian/changelog python-extras-0.0.3/debian/changelog --- python-extras-0.0.3/debian/changelog 2013-01-26 00:26:13.000000000 +0000 +++ python-extras-0.0.3/debian/changelog 2013-05-30 18:54:42.000000000 +0000 @@ -1,15 +1,23 @@ -python-extras (0.0.3-0ubuntu1~ubuntu12.04.1~grizzly0) precise; urgency=low +python-extras (0.0.3-2~cloud0) precise-havana; urgency=low - * No-change backport to precise for grizzly-trunk-testing PPA. + * New upstream release for the Ubuntu Cloud Archive. - -- Adam Gandelman Fri, 25 Jan 2013 16:25:34 -0800 + -- Chuck Short Thu, 30 May 2013 13:54:16 -0500 -python-extras (0.0.3-0ubuntu1) raring; urgency=low +python-extras (0.0.3-2) unstable; urgency=low + + * Uploading to unstable. + + -- Thomas Goirand Sat, 11 May 2013 04:49:39 +0000 + +python-extras (0.0.3-1) experimental; urgency=low * New upstream release. - * debian/control: Dont depend on openstack-pkg-tools + * Updated homepage: so it doesn't include the package version. + * Added "make check" test suite. + * Added a new python3-extras binary package for Python 3 support. - -- Chuck Short Tue, 22 Jan 2013 13:31:50 -0600 + -- Thomas Goirand Thu, 14 Mar 2013 20:01:12 +0800 python-extras (0.0.2-1) experimental; urgency=low diff -Nru python-extras-0.0.3/debian/control python-extras-0.0.3/debian/control --- python-extras-0.0.3/debian/control 2013-01-26 00:24:41.000000000 +0000 +++ python-extras-0.0.3/debian/control 2013-05-11 04:51:19.000000000 +0000 @@ -1,21 +1,39 @@ Source: python-extras Section: python Priority: optional -Maintainer: Ubuntu Developers -XSBC-Original-Maintainer: PKG OpenStack +Maintainer: PKG OpenStack Uploaders: Thomas Goirand -Build-Depends: debhelper (>= 9), python-setuptools, python-all (>= 2.6.6-3~) +Build-Depends: debhelper (>= 9), + openstack-pkg-tools, + python3-all, + python3-setuptools, + python-all (>= 2.6.6-3~), + python-setuptools, Build-Depends-Indep: python-testtools Standards-Version: 3.9.3 Vcs-Browser: http://anonscm.debian.org/gitweb/?p=openstack/python-extras.git Vcs-Git: git://anonscm.debian.org/openstack/python-extras.git -Homepage: http://pypi.python.org/pypi/extras/0.0.1 +Homepage: http://pypi.python.org/pypi/extras Package: python-extras Architecture: all Pre-Depends: dpkg (>= 1.15.6~) Depends: ${python:Depends}, ${misc:Depends}, python-testtools -Description: extensions to the Python standard library +Description: extensions to the Python standard library (Python 2.x) Extras is a set of extensions to the Python standard library, originally written to make the code within testtools cleaner, but now split out for general use outside of a testing context. + . + This package contains the libraries for Python 2.x. + +Package: python3-extras +Architecture: all +Pre-Depends: dpkg (>= 1.15.6~) +Provides: ${python:Provides} +Depends: ${python3:Depends}, ${misc:Depends}, python-testtools +Description: extensions to the Python standard library (Python 3.x) + Extras is a set of extensions to the Python standard library, originally + written to make the code within testtools cleaner, but now split out for + general use outside of a testing context. + . + This package contains the libraries for Python 3.x. diff -Nru python-extras-0.0.3/debian/copyright python-extras-0.0.3/debian/copyright --- python-extras-0.0.3/debian/copyright 2013-01-26 00:24:41.000000000 +0000 +++ python-extras-0.0.3/debian/copyright 2013-05-11 04:51:19.000000000 +0000 @@ -8,6 +8,8 @@ Files: * Copyright: (c) 2012, Robert Collins + (c) 2012, Jonathan Lange + (c) 2012, Martin Pool License: MIT License: MIT diff -Nru python-extras-0.0.3/debian/rules python-extras-0.0.3/debian/rules --- python-extras-0.0.3/debian/rules 2013-01-26 00:24:41.000000000 +0000 +++ python-extras-0.0.3/debian/rules 2013-05-11 04:51:19.000000000 +0000 @@ -2,8 +2,27 @@ #export DH_VERBOSE=1 +PYTHONS:=$(shell pyversions -vr) +PYTHON3S:=$(shell py3versions -vr) + UPSTREAM_GIT = git://github.com/testing-cabal/extras.git +include /usr/share/openstack-pkg-tools/pkgos.make %: - dh $@ --buildsystem=python_distutils --with python2 + dh $@ --buildsystem=python_distutils --with python2,python3 + +override_dh_auto_install: + set -e && for pyvers in $(PYTHONS); do \ + python$$pyvers setup.py install --install-layout=deb \ + --root $(CURDIR)/debian/python-extras; \ + done + set -e && for pyvers in $(PYTHON3S); do \ + python$$pyvers setup.py install --install-layout=deb \ + --root $(CURDIR)/debian/python3-extras; \ + done + +ifeq (,$(findstring nocheck, $(DEB_BUILD_OPTIONS))) +override_dh_auto_test: + make check +endif diff -Nru python-extras-0.0.3/extras.egg-info/PKG-INFO python-extras-0.0.3/extras.egg-info/PKG-INFO --- python-extras-0.0.3/extras.egg-info/PKG-INFO 2013-01-21 18:26:30.000000000 +0000 +++ python-extras-0.0.3/extras.egg-info/PKG-INFO 1970-01-01 00:00:00.000000000 +0000 @@ -1,68 +0,0 @@ -Metadata-Version: 1.1 -Name: extras -Version: 0.0.3 -Summary: Useful extra bits for Python - things that shold be in the standard library -Home-page: https://github.com/testing-cabal/extras -Author: Testing cabal -Author-email: testtools-dev@lists.launchpad.net -License: UNKNOWN -Description: ====== - extras - ====== - - extras is a set of extensions to the Python standard library, originally - written to make the code within testtools cleaner, but now split out for - general use outside of a testing context. - - - Documentation - ------------- - - pydoc extras is your friend. extras currently contains the following functions: - - * try_import - - * try_imports - - * safe_hasattr - - Which do what their name suggests. - - - Licensing - --------- - - This project is distributed under the MIT license and copyright is owned by - the extras authors. See LICENSE for details. - - - Required Dependencies - --------------------- - - * Python 2.6+ or 3.0+ - - - Bug reports and patches - ----------------------- - - Please report bugs using github issues at . - Patches can also be submitted via github. You can mail the authors directly - via the mailing list testtools-dev@lists.launchpad.net. (Note that Launchpad - discards email from unknown addresses - be sure to sign up for a Launchpad - account before mailing the list, or your mail will be silently discarded). - - - History - ------- - - extras used to be testtools.helpers, and was factored out when folk wanted to - use it separately. - - - Thanks - ------ - - * Martin Pool - -Platform: UNKNOWN -Classifier: License :: OSI Approved :: MIT License diff -Nru python-extras-0.0.3/extras.egg-info/SOURCES.txt python-extras-0.0.3/extras.egg-info/SOURCES.txt --- python-extras-0.0.3/extras.egg-info/SOURCES.txt 2013-01-21 18:26:30.000000000 +0000 +++ python-extras-0.0.3/extras.egg-info/SOURCES.txt 1970-01-01 00:00:00.000000000 +0000 @@ -1,15 +0,0 @@ -.gitignore -LICENSE -MANIFEST.in -Makefile -NEWS -README.rst -setup.cfg -setup.py -extras/__init__.py -extras.egg-info/PKG-INFO -extras.egg-info/SOURCES.txt -extras.egg-info/dependency_links.txt -extras.egg-info/top_level.txt -extras/tests/__init__.py -extras/tests/test_extras.py \ No newline at end of file diff -Nru python-extras-0.0.3/extras.egg-info/dependency_links.txt python-extras-0.0.3/extras.egg-info/dependency_links.txt --- python-extras-0.0.3/extras.egg-info/dependency_links.txt 2013-01-21 18:26:30.000000000 +0000 +++ python-extras-0.0.3/extras.egg-info/dependency_links.txt 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - diff -Nru python-extras-0.0.3/extras.egg-info/top_level.txt python-extras-0.0.3/extras.egg-info/top_level.txt --- python-extras-0.0.3/extras.egg-info/top_level.txt 2013-01-21 18:26:30.000000000 +0000 +++ python-extras-0.0.3/extras.egg-info/top_level.txt 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -extras diff -Nru python-extras-0.0.3/setup.cfg python-extras-0.0.3/setup.cfg --- python-extras-0.0.3/setup.cfg 2013-01-21 18:26:30.000000000 +0000 +++ python-extras-0.0.3/setup.cfg 2013-01-21 18:26:24.000000000 +0000 @@ -1,10 +1,4 @@ [test] test_module = extras.tests -buffer = 1 -catch = 1 - -[egg_info] -tag_build = -tag_date = 0 -tag_svn_revision = 0 - +buffer=1 +catch=1