Now using testrepository for the unit testing.

Updated (build-)dependencies.
This commit is contained in:
Thomas Goirand
2013-09-11 14:08:36 +08:00
parent 4a014e4028
commit b54742c236
3 changed files with 14 additions and 7 deletions

2
debian/changelog vendored
View File

@@ -2,6 +2,8 @@ python-swiftclient (1:1.6.0-1) unstable; urgency=low
* New upstream release.
* Removes now obsolete patch for OSLO version.
* Now using testrepository for the unit testing.
* Updated (build-)dependencies.
-- Thomas Goirand <zigo@debian.org> Wed, 11 Sep 2013 14:03:08 +0800

17
debian/control vendored
View File

@@ -6,16 +6,19 @@ Uploaders: Julien Danjou <acid@debian.org>,
Thomas Goirand <zigo@debian.org>,
Ghe Rivero <ghe.rivero@stackops.com>,
Mehdi Abaakouk <sileht@sileht.net>
Build-Depends: debhelper (>= 9), python-all (>= 2.6.6-3~)
Build-Depends-Indep: openstack-pkg-tools,
python-argparse,
python-eventlet,
Build-Depends: debhelper (>= 9),
openstack-pkg-tools,
python-all (>= 2.6.6-3~),
python-pbr
Build-Depends-Indep: python-eventlet,
python-httplib2,
python-mock,
python-nose,
python-nosexcover,
python-setuptools,
python-simplejson,
python-testtools
python-testtools,
testrepository (>= 0.0.13)
Standards-Version: 3.9.4
Homepage: https://github.com/openstack/python-swiftclient
Vcs-Git: git://git.debian.org/openstack/python-swiftclient.git
@@ -24,9 +27,11 @@ Vcs-Browser: http://git.debian.org/?p=openstack/python-swiftclient.git;a=summary
Package: python-swiftclient
Architecture: all
Pre-Depends: dpkg (>= 1.15.6~)
Depends: python-eventlet,
Depends: python-d2to1 (>=0.2.10),
python-eventlet,
python-httplib2,
python-keystoneclient,
python-pbr,
python-simplejson,
${misc:Depends},
${python:Depends}

2
debian/rules vendored
View File

@@ -15,5 +15,5 @@ override_dh_auto_clean:
override_dh_auto_test:
ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
set -e ; for pyversion in $(shell pyversions -r); do $$pyversion setup.py test; done
python setup.py testr
endif