[Python-modules-commits] r25880 - in packages (11 files)
hashar-guest at users.alioth.debian.org
hashar-guest at users.alioth.debian.org
Tue Sep 17 13:22:35 UTC 2013
Date: Tuesday, September 17, 2013 @ 13:22:33
Author: hashar-guest
Revision: 25880
python-gear initial debian directory
Packages https://pypi.python.org/pypi/gear v0.4.0. This is a pure-Python
asynchronous library to interface with Gearman. It is being maintained
by the OpenStack 'infrastructure' team. It is not specific enough to
be maintained under their umbrella, hence why I am landing it here.
Can be build using:
DEB_BUILD_OPTIONS=nocheck git buildpackage
Work in progress... Feel free to amend/report issues.
Added:
packages/python-gear/
packages/python-gear/trunk/
packages/python-gear/trunk/debian/
packages/python-gear/trunk/debian/changelog
packages/python-gear/trunk/debian/compat
packages/python-gear/trunk/debian/control
packages/python-gear/trunk/debian/gbp.conf
packages/python-gear/trunk/debian/rules
packages/python-gear/trunk/debian/source/
packages/python-gear/trunk/debian/source/format
packages/python-gear/trunk/debian/watch
Added: packages/python-gear/trunk/debian/changelog
===================================================================
--- packages/python-gear/trunk/debian/changelog (rev 0)
+++ packages/python-gear/trunk/debian/changelog 2013-09-17 13:22:33 UTC (rev 25880)
@@ -0,0 +1,5 @@
+python-gear (0.4.0-1) unstable; urgency=low
+
+ * Initial Version
+
+ -- Antoine Musso <hashar at free.fr> Thu, 12 Sep 2013 17:32:15 +0000
Added: packages/python-gear/trunk/debian/compat
===================================================================
--- packages/python-gear/trunk/debian/compat (rev 0)
+++ packages/python-gear/trunk/debian/compat 2013-09-17 13:22:33 UTC (rev 25880)
@@ -0,0 +1 @@
+8
Added: packages/python-gear/trunk/debian/control
===================================================================
--- packages/python-gear/trunk/debian/control (rev 0)
+++ packages/python-gear/trunk/debian/control 2013-09-17 13:22:33 UTC (rev 25880)
@@ -0,0 +1,43 @@
+Source: python-gear
+Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Uploaders: Antoine Musso <hashar at free.fr>,
+ Julien Danjou <acid at debian.org>,
+ Thomas Goirand <zigo at debian.org>,
+ Ghe Rivero <ghe.rivero at stackops.com>,
+ Mehdi Abaakouk <sileht at sileht.net>,
+ Paul Belanger <paul.belanger at polybeacon.com>
+Section: python
+Priority: optional
+Build-Depends: debhelper (>= 8),
+ openstack-pkg-tools,
+ python-all (>= 2.6.6-3),
+ python-setuptools (>= 0.6b3),
+ python-pbr
+#Build-Depends-Indep:
+# From test-requirements.txt we have:
+#coverage>=3.6
+#discover
+#fixtures>=0.3.12
+#hacking>=0.5.3,<0.6
+#python-subunit
+#sphinx>=1.1.2
+#testrepository>=0.0.13
+#testresources
+#testscenarios
+#testtools>=0.9.27
+Standards-Version: 3.9.3
+Homepage: https://pypi.python.org/pypi/gear
+#Vcs-Git: https://review.openstack.org/p/openstack-infra/gear.git
+Vcs-Browser: http://git.openstack.org/cgit/openstack-infra/gear/
+
+Package: python-gear
+Architecture: all
+Depends: python-daemon,
+ python-extras,
+ python-pbr,
+ ${misc:Depends},
+ ${python:Depends}
+Description: Pure Python Async Gear Protocol Library
+ .
+ python-gear is a pure-Python asynchronous library to interface with Gearman.
+ .
Added: packages/python-gear/trunk/debian/gbp.conf
===================================================================
--- packages/python-gear/trunk/debian/gbp.conf (rev 0)
+++ packages/python-gear/trunk/debian/gbp.conf 2013-09-17 13:22:33 UTC (rev 25880)
@@ -0,0 +1,12 @@
+[DEFAULT]
+cleaner = /bin/true
+upstream-tag = %(version)s
+
+[git-buildpackage]
+upstream-tree=tag
+debian-branch=master
+overlay = True
+no-create-orig = True
+tarball-dir = ../tarballs/
+export-dir = ../build-area/
+compression = gzip
Added: packages/python-gear/trunk/debian/rules
===================================================================
--- packages/python-gear/trunk/debian/rules (rev 0)
+++ packages/python-gear/trunk/debian/rules 2013-09-17 13:22:33 UTC (rev 25880)
@@ -0,0 +1,26 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+# Uncomment this to turn on verbose mode.
+export DH_VERBOSE=1
+
+UPSTREAM_GIT = git://github.com/openstack-infra/gear.git
+
+include /usr/share/openstack-pkg-tools/pkgos.make
+
+export OSLO_PACKAGE_VERSION=$(VERSION)
+
+%:
+ dh $@ --with python2
+
+#get-orig-source:
+# uscan --download-current-version --rename --destdir ../tarballs
+
+override_dh_auto_test:
+ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
+ set -ex; for python in $(shell pyversions -s); do \
+ $$python -m doctest tests.rst; \
+ done
+ nosetests --verbose
+endif
+
+.PHONY: get-orig-source override_dh_auto_test
Property changes on: packages/python-gear/trunk/debian/rules
___________________________________________________________________
Added: svn:executable
+ *
Added: packages/python-gear/trunk/debian/source/format
===================================================================
--- packages/python-gear/trunk/debian/source/format (rev 0)
+++ packages/python-gear/trunk/debian/source/format 2013-09-17 13:22:33 UTC (rev 25880)
@@ -0,0 +1 @@
+3.0 (quilt)
Added: packages/python-gear/trunk/debian/watch
===================================================================
--- packages/python-gear/trunk/debian/watch (rev 0)
+++ packages/python-gear/trunk/debian/watch 2013-09-17 13:22:33 UTC (rev 25880)
@@ -0,0 +1,2 @@
+version=3
+http://tarballs.openstack.org/gear/ gear-(.*)\.tar\.gz
More information about the Python-modules-commits
mailing list