[Python-modules-commits] [python-gear] 01/12: python-gear initial debian directory
Antoine Musso
hashar-guest at moszumanska.debian.org
Mon Mar 16 14:27:39 UTC 2015
This is an automated email from the git hooks/post-receive script.
hashar-guest pushed a commit to branch master
in repository python-gear.
commit 31c6e95c1a533c0c607bd0a373f2d69129f46e3f
Author: Antoine Musso <hashar at free.fr>
Date: Tue Sep 17 13:22:33 2013 +0000
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.
git-svn-id: svn://svn.debian.org/svn/python-modules/packages/python-gear/trunk@25880 771dd761-d7fa-0310-a302-f036d1c1ebb6
---
debian/changelog | 5 +++++
debian/compat | 1 +
debian/control | 43 +++++++++++++++++++++++++++++++++++++++++++
debian/gbp.conf | 12 ++++++++++++
debian/rules | 26 ++++++++++++++++++++++++++
debian/source/format | 1 +
debian/watch | 2 ++
7 files changed, 90 insertions(+)
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..5e52f64
--- /dev/null
+++ b/debian/changelog
@@ -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
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..45a4fb7
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+8
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..c3e88df
--- /dev/null
+++ b/debian/control
@@ -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.
+ .
diff --git a/debian/gbp.conf b/debian/gbp.conf
new file mode 100644
index 0000000..e3da739
--- /dev/null
+++ b/debian/gbp.conf
@@ -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
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..ea6cd7b
--- /dev/null
+++ b/debian/rules
@@ -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
diff --git a/debian/source/format b/debian/source/format
new file mode 100644
index 0000000..163aaf8
--- /dev/null
+++ b/debian/source/format
@@ -0,0 +1 @@
+3.0 (quilt)
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..cf3996f
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,2 @@
+version=3
+http://tarballs.openstack.org/gear/ gear-(.*)\.tar\.gz
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/python-gear.git
More information about the Python-modules-commits
mailing list