From b75b31fcb4dd1e4d3900c03ae38e7d63c4f76e5d Mon Sep 17 00:00:00 2001 From: Patrick Hensley Date: Tue, 28 Jun 2011 21:11:26 -0400 Subject: [PATCH] Debianized, version 0.2. --- debian/changelog | 5 +++++ debian/compat | 2 ++ debian/control | 14 ++++++++++++++ debian/copyright | 5 +++++ debian/rules | 5 +++++ gstatsd/core.py | 3 +-- 6 files changed, 32 insertions(+), 2 deletions(-) create mode 100644 debian/changelog create mode 100644 debian/compat create mode 100644 debian/control create mode 100644 debian/copyright create mode 100755 debian/rules diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..7825ee0 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +gstatsd (0.2) lucid; urgency=low + + * Initial release. + + -- Patrick Hensley Tue, 28 Jun 2011 21:10:19 -0400 diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..4d446d8 --- /dev/null +++ b/debian/compat @@ -0,0 +1,2 @@ +7 + diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..feed4bb --- /dev/null +++ b/debian/control @@ -0,0 +1,14 @@ +Source: gstatsd +Section: python +Priority: optional +Maintainer: Patrick Hensley +Build-Depends: debhelper (>= 7) +Build-Depends-Indep: python-support, python-setuptools +Standards-Version: 3.8.3 +Homepage: http://github.com/phensley/gstatsd + +Package: gstatsd +Architecture: all +Depends: ${misc:Depends}, ${python:Depends}, python-gevent +Description: A statsd service implementation in Python + gevent. + diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..7aefebb --- /dev/null +++ b/debian/copyright @@ -0,0 +1,5 @@ + +Copyright: 2011 Patrick Hensley +License: Apache 2.0 + http://www.apache.org/licenses/LICENSE-2.0.html + diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..abde6ef --- /dev/null +++ b/debian/rules @@ -0,0 +1,5 @@ +#!/usr/bin/make -f + +%: + dh $@ + diff --git a/gstatsd/core.py b/gstatsd/core.py index 0b9ed6e..7e860d9 100644 --- a/gstatsd/core.py +++ b/gstatsd/core.py @@ -1,4 +1,3 @@ - -__version__ = '0.1' +__version__ = '0.2'