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'