[Python-modules-commits] [python-gear] 03/03: python-gear: retag 0.5.4-1

Antoine Musso hashar-guest at moszumanska.debian.org
Mon Mar 16 14:29:46 UTC 2015


This is an automated email from the git hooks/post-receive script.

hashar-guest pushed a commit to tag 0.5.4-1
in repository python-gear.

commit 51ee638241c5c9def42cb621818b8062d3ac447f
Author: Antoine Musso <hashar at free.fr>
Date:   Thu May 15 09:45:09 2014 +0000

    python-gear: retag 0.5.4-1
    
    
    git-svn-id: svn://svn.debian.org/svn/python-modules/packages/python-gear/tags/0.5.4-1@28909 771dd761-d7fa-0310-a302-f036d1c1ebb6
---
 trunk/debian/changelog     | 17 +++++++++++++
 trunk/debian/compat        |  1 +
 trunk/debian/control       | 61 ++++++++++++++++++++++++++++++++++++++++++++++
 trunk/debian/copyright     | 20 +++++++++++++++
 trunk/debian/gbp.conf      | 12 +++++++++
 trunk/debian/rules         | 24 ++++++++++++++++++
 trunk/debian/source/format |  1 +
 trunk/debian/watch         |  2 ++
 8 files changed, 138 insertions(+)

diff --git a/trunk/debian/changelog b/trunk/debian/changelog
new file mode 100644
index 0000000..77f5e16
--- /dev/null
+++ b/trunk/debian/changelog
@@ -0,0 +1,17 @@
+python-gear (0.5.4-1) unstable; urgency=low
+
+  * New upstream version
+  * python-statsd is now a build dependency (required to run tests) but is
+    only a suggestion since the package works fine without it.
+  * Tweak build dependencies
+  * [Alexandros Kosiaris] Package predepends on dpkg (>= 1.15.6~) to fix
+    lintian error data.tar.xz-member-without-dpkg-pre-depends
+
+ -- Antoine Musso <hashar at free.fr>  Thu, 15 May 2014 09:03:05 +0000
+
+python-gear (0.4.0-1) unstable; urgency=low
+
+  * Initial Version
+  * Closes: #725081
+
+ -- Antoine Musso <hashar at free.fr>  Thu, 12 Sep 2013 17:32:15 +0000
diff --git a/trunk/debian/compat b/trunk/debian/compat
new file mode 100644
index 0000000..45a4fb7
--- /dev/null
+++ b/trunk/debian/compat
@@ -0,0 +1 @@
+8
diff --git a/trunk/debian/control b/trunk/debian/control
new file mode 100644
index 0000000..9343070
--- /dev/null
+++ b/trunk/debian/control
@@ -0,0 +1,61 @@
+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-daemon,
+               python-extras,
+               python-statsd (>=1.0.0),
+               python-setuptools (>= 0.6b3),
+               python-sphinx (>=1.1.2),
+               python-pbr,
+# Tests related:
+               python-fixtures (>=0.3.12),
+               python-hacking (>=0.5.3),
+               python-sphinxcontrib-programoutput,
+               python-subunit,
+               python-testrepository (>=0.0.13),
+               python-testresources,
+               python-testscenarios,
+               python-testtools (>=0.9.27),
+#Build-Depends-Indep:
+# From test-requirements.txt we are missing:
+#coverage>=3.6
+#discover
+#hacking>=0.5.3,<0.6
+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
+Pre-Depends: dpkg (>= 1.15.6~)
+Depends: python-daemon,
+         python-extras,
+         python-pbr,
+         ${misc:Depends},
+         ${python:Depends}
+Suggests:  python-statsd
+Description: Pure Python Async Gear Protocol Library
+ python-gear is a pure-Python asynchronous library to interface with Gearman.
+ .
+ It provides interfaces to build a client or worker, and access to the
+ administrative protocol. The design approach is to keep it simple, with a
+ relatively thin abstration of the Gearman protocol itself. It should be easy
+ to use to build a client or worker that operates either synchronously or
+ asynchronously.
+ .
+ The module also provides a simple Gearman server for use as a convenience in
+ unit tests. The server is not designed for production use under load.
+ .
+ Installing the suggested python-statsd package would add support for reporting
+ to statsd a frontend to Graphite a stats collection and graphing server.
diff --git a/trunk/debian/copyright b/trunk/debian/copyright
new file mode 100644
index 0000000..483858a
--- /dev/null
+++ b/trunk/debian/copyright
@@ -0,0 +1,20 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: gear
+Upstream-Contact: Openstack Infrastructure
+Source: https://review.openstack.org/p/openstack-infra/gear.git
+
+Files: *
+Copyright: Copyright 2013 OpenStack Foundation
+ Copyright (c) 2013 Hewlett-Packard Development Company, L.P.
+License: Apache 2.0
+ On Debian systems, the full text of the Apache License version 2.0 can be
+ found in the file `/usr/share/common-licenses/Apache-2.0'.
+
+Files: debian/*
+Copyright: Copyright 2013 Antoine Musso <amusso at free.fr>
+ Copyright 2013 Wikimedia Foundation Inc.
+License: GPL-2 or Apache 2.0
+ On Debian systems, the full text of the GNU General Public License version 2
+ can be found in the file `/usr/share/common-licenses/Apache-2.0'.
+ On Debian systems, the full text of the Apache License version 2.0 can be
+ found in the file `/usr/share/common-licenses/Apache-2.0'.
diff --git a/trunk/debian/gbp.conf b/trunk/debian/gbp.conf
new file mode 100644
index 0000000..e3da739
--- /dev/null
+++ b/trunk/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/trunk/debian/rules b/trunk/debian/rules
new file mode 100755
index 0000000..c30b122
--- /dev/null
+++ b/trunk/debian/rules
@@ -0,0 +1,24 @@
+#!/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)))
+	# Command comes from upstream tox.ini
+	python setup.py testr --slowest
+endif
+
+.PHONY: get-orig-source override_dh_auto_test
diff --git a/trunk/debian/source/format b/trunk/debian/source/format
new file mode 100644
index 0000000..163aaf8
--- /dev/null
+++ b/trunk/debian/source/format
@@ -0,0 +1 @@
+3.0 (quilt)
diff --git a/trunk/debian/watch b/trunk/debian/watch
new file mode 100644
index 0000000..cbae2be
--- /dev/null
+++ b/trunk/debian/watch
@@ -0,0 +1,2 @@
+version=3
+http://tarballs.openstack.org/gear/ gear-(\d.*)\.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