Hashar has uploaded a new change for review. https://gerrit.wikimedia.org/r/84022
Change subject: base debian dir ...................................................................... base debian dir Change-Id: I8aa569ee31d5858b0a5734d58ecb5bc6a42e2fdf --- A debian/changelog A debian/compat A debian/control A debian/gbp.conf A debian/rules A debian/source/format A debian/watch 7 files changed, 63 insertions(+), 0 deletions(-) git pull ssh://gerrit.wikimedia.org:29418/operations/debs/python-gear refs/changes/22/84022/1 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 <[email protected]> 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..5aa3e57 --- /dev/null +++ b/debian/control @@ -0,0 +1,22 @@ +Source: python-gear +Maintainer: OpenStack <[email protected]> +Uploaders: Antoine Musso <[email protected]> + Paul Belanger <[email protected]> +Section: python +Priority: optional +Build-Depends: python-setuptools (>= 0.6b3), + python-all (>= 2.6.6-3), + debhelper (>= 8) +X-Python-Version: >= 2.6 +Standards-Version: 3.9.3 +Homepage: https://pypi.python.org/pypi/gear +#Vcs-Git: https://review.openstack.org/p/openstack-infra/gear.git + +Package: python-gear +Architecture: all +Depends: ${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..715a183 --- /dev/null +++ b/debian/rules @@ -0,0 +1,20 @@ +#!/usr/bin/make -f +# -*- makefile -*- +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +%: + dh $@ --with python2 --buildsystem=python_distutils + +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..d74e83f --- /dev/null +++ b/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://githubredir.debian.net/github/openstack-infra/gear /(.*)\.tar\.gz -- To view, visit https://gerrit.wikimedia.org/r/84022 To unsubscribe, visit https://gerrit.wikimedia.org/r/settings Gerrit-MessageType: newchange Gerrit-Change-Id: I8aa569ee31d5858b0a5734d58ecb5bc6a42e2fdf Gerrit-PatchSet: 1 Gerrit-Project: operations/debs/python-gear Gerrit-Branch: master Gerrit-Owner: Hashar <[email protected]> _______________________________________________ MediaWiki-commits mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits
