[Python-modules-commits] r23959 - in packages (13 files)

hashar-guest at users.alioth.debian.org hashar-guest at users.alioth.debian.org
Thu Apr 18 11:10:08 UTC 2013


    Date: Thursday, April 18, 2013 @ 11:10:05
  Author: hashar-guest
Revision: 23959

statsd python module

Closes: #703613
Upstream version 2.0.1

Added:
  packages/statsd/
  packages/statsd/trunk/
  packages/statsd/trunk/debian/
  packages/statsd/trunk/debian/changelog
  packages/statsd/trunk/debian/compat
  packages/statsd/trunk/debian/control
  packages/statsd/trunk/debian/copyright
  packages/statsd/trunk/debian/gbp.conf
  packages/statsd/trunk/debian/rules
  packages/statsd/trunk/debian/source/
  packages/statsd/trunk/debian/source/format
  packages/statsd/trunk/debian/source/options
  packages/statsd/trunk/debian/watch

Added: packages/statsd/trunk/debian/changelog
===================================================================
--- packages/statsd/trunk/debian/changelog	                        (rev 0)
+++ packages/statsd/trunk/debian/changelog	2013-04-18 11:10:05 UTC (rev 23959)
@@ -0,0 +1,5 @@
+statsd (2.0.1-1) unstable; urgency=low
+
+  * Initial release. Closes: #703613
+
+ -- Antoine Musso <hashar at free.fr>  Thu, 18 Apr 2013 10:55:24 +0000

Added: packages/statsd/trunk/debian/compat
===================================================================
--- packages/statsd/trunk/debian/compat	                        (rev 0)
+++ packages/statsd/trunk/debian/compat	2013-04-18 11:10:05 UTC (rev 23959)
@@ -0,0 +1 @@
+9

Added: packages/statsd/trunk/debian/control
===================================================================
--- packages/statsd/trunk/debian/control	                        (rev 0)
+++ packages/statsd/trunk/debian/control	2013-04-18 11:10:05 UTC (rev 23959)
@@ -0,0 +1,21 @@
+Source: statsd
+Section: python
+Priority: optional
+Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Uploaders: Antoine Musso <hashar at free.fr>
+ Paul Belanger <paul.belanger at polybeacon.com>
+Build-Depends: debhelper (>= 9), python-all
+Standards-Version: 3.9.3
+X-Python-Version: >= 2.6
+Homepage: https://github.com/WoLpH/python-statsd
+Vcs-Svn: svn://svn.debian.org/python-modules/packages/statsd/trunk/
+Vcs-Browser: http://svn.debian.org/viewsvn/python-modules/packages/statsd/trunk/
+
+Package: python-statsd
+Architecture: all
+Depends: ${python:Depends}, ${shlibs:Depends}, ${misc:Depends}
+Description: Python client for the statsd daemon
+ Statsd is a client for Etsy's statsd server, a front end/proxy for the
+ Graphite stats collection and graphing server.
+ .
+ This is the most popular `statsd` python module on pypi.

Added: packages/statsd/trunk/debian/copyright
===================================================================
--- packages/statsd/trunk/debian/copyright	                        (rev 0)
+++ packages/statsd/trunk/debian/copyright	2013-04-18 11:10:05 UTC (rev 23959)
@@ -0,0 +1,35 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: python-statsd
+Upstream-Contact: James Socol
+Source: https://github.com/jsocol/pystatsd/
+
+Files: *
+Copyright: 2012-2013 James Socol
+License: Expat
+ Copyright (c) 2012-2013, James Socol
+ .
+ Permission is hereby granted, free of charge, to any person obtaining a
+ copy of this software and associated documentation files (the
+ "Software"), to deal in the Software without restriction, including
+ without limitation the rights to use, copy, modify, merge, publish,
+ distribute, sublicense, and/or sell copies of the Software, and to
+ permit persons to whom the Software is furnished to do so, subject to
+ the following conditions:
+ .
+ The above copyright notice and this permission notice shall be included
+ in all copies or substantial portions of the Software.
+ .
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
+ OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+Files: debian/*
+Copyright: 2013 Antoine Musso <amusso at free.fr>
+License: GPL-2
+ On Debian systems, the full text of the GNU General Public
+ License version 2 can be found in the file
+ `/usr/share/common-licenses/GPL-2'.

Added: packages/statsd/trunk/debian/gbp.conf
===================================================================
--- packages/statsd/trunk/debian/gbp.conf	                        (rev 0)
+++ packages/statsd/trunk/debian/gbp.conf	2013-04-18 11:10:05 UTC (rev 23959)
@@ -0,0 +1,10 @@
+[DEFAULT]
+upstream-tag = v%(version)s
+
+[git-buildpackage]
+upstream-tree=tag
+debian-branch=master
+overlay = True
+no-create-orig = True
+tarball-dir = ../tarballs
+export-dir = ../build-area

Added: packages/statsd/trunk/debian/rules
===================================================================
--- packages/statsd/trunk/debian/rules	                        (rev 0)
+++ packages/statsd/trunk/debian/rules	2013-04-18 11:10:05 UTC (rev 23959)
@@ -0,0 +1,22 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+%:
+	dh $@ --with python2
+
+DEB_UPSTREAM_VERSION=$(shell dpkg-parsechangelog | sed -rne 's,^Version: ([^-]+).*,\1,p')
+
+get-orig-source:
+	uscan --download-version $(DEB_UPSTREAM_VERSION) --force-download --rename
+
+override_dh_clean:
+	dh_clean
+	# dh_clean does not support recursive deletions via debian/clean
+	# so we have to explicitly delete the egg directories there.
+	# http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=511048
+	rm -rf mock-*.egg
+	rm -rf nose-*.egg
+
+.PHONY: get-orig-source override_dh_clean


Property changes on: packages/statsd/trunk/debian/rules
___________________________________________________________________
Added: svn:executable
   + *

Added: packages/statsd/trunk/debian/source/format
===================================================================
--- packages/statsd/trunk/debian/source/format	                        (rev 0)
+++ packages/statsd/trunk/debian/source/format	2013-04-18 11:10:05 UTC (rev 23959)
@@ -0,0 +1 @@
+3.0 (quilt)

Added: packages/statsd/trunk/debian/source/options
===================================================================
--- packages/statsd/trunk/debian/source/options	                        (rev 0)
+++ packages/statsd/trunk/debian/source/options	2013-04-18 11:10:05 UTC (rev 23959)
@@ -0,0 +1,2 @@
+extend-diff-ignore = "^[^/]+\.egg-info/"
+extend-diff-ignore = '^\.gitreview$'

Added: packages/statsd/trunk/debian/watch
===================================================================
--- packages/statsd/trunk/debian/watch	                        (rev 0)
+++ packages/statsd/trunk/debian/watch	2013-04-18 11:10:05 UTC (rev 23959)
@@ -0,0 +1,2 @@
+version=3
+http://githubredir.debian.net/github/jsocol/pystatsd /v(.+)\.tar\.gz




More information about the Python-modules-commits mailing list