Merge lp:~cprov/txstatsd/debian-setuptools into lp:txstatsd

Proposed by Celso Providelo
Status: Superseded
Proposed branch: lp:~cprov/txstatsd/debian-setuptools
Merge into: lp:txstatsd
Diff against target: 146 lines (+110/-0)
7 files modified
debian/changelog (+42/-0)
debian/compat (+1/-0)
debian/control (+15/-0)
debian/copyright (+43/-0)
debian/docs (+4/-0)
debian/rules (+4/-0)
debian/source/format (+1/-0)
To merge this branch: bzr merge lp:~cprov/txstatsd/debian-setuptools
Reviewer Review Type Date Requested Status
txStatsD Developers Pending
Review via email: mp+241468@code.launchpad.net

Description of the change

Replace python-central by setuptools for modern series (post-precise)

To post a comment you must log in.

Unmerged revisions

15. By Celso Providelo

Switching to setuptools.

14. By Sidnei da Silva

- Bump to 1.0.0

13. By Sidnei da Silva

- Remove unused, add source format 1.0

12. By Andreas Hasenack

New build.

11. By Andreas Hasenack

New upstream version.

10. By Andreas Hasenack

* Pass include-links to py_central.
* Use ${python:Provides} in the binary package.

9. By Andreas Hasenack

Switch to python-central, as I can't get python-support to work with
twisted plugins. It does respect the .noinit file, but then the twisted
core package would have to supply it, and not every plugin package.

8. By Andreas Hasenack

Add a .noinit file to the twisted plugin directory so that python-support
doesn't create an __init__.py file there during postinst, which prevents
twisted from seeing the plugins. Thanks to therve for the help.

7. By Andreas Hasenack

New upstream release.

6. By Sidnei da Silva

- Update upstream release number on changelog

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== added directory 'debian'
=== added file 'debian/changelog'
--- debian/changelog 1970-01-01 00:00:00 +0000
+++ debian/changelog 2014-11-11 22:45:39 +0000
@@ -0,0 +1,42 @@
1python-txstatsd (1.0.0ubuntu1) trusty; urgency=medium
2
3 * Building on trusty
4
5 -- Celso Providelo <celso.providelo@gmail.com> Tue, 11 Nov 2014 20:00:52 -0200
6
7txstatsd (1.0.0) lucid; urgency=low
8
9 * New upstream release.
10
11 -- Sidnei da Silva <sidnei.da.silva@canonical.com> Thu, 28 Jun 2012 13:51:30 -0300
12
13txstatsd (0.7.0-0~landscape1) lucid; urgency=low
14
15 * New upstream.
16
17 -- Andreas Hasenack <andreas@canonical.com> Mon, 30 Jan 2012 20:04:28 -0200
18
19txstatsd (0.1.2-0~landscape2) lucid; urgency=low
20
21 * Pass include-links to py_central.
22 * Use ${python:Provides} in the binary package.
23
24 -- Andreas Hasenack <andreas@canonical.com> Wed, 31 Aug 2011 11:52:21 -0300
25
26txstatsd (0.1.2-0~landscape1) natty; urgency=low
27
28 * New upstream release.
29
30 -- Andreas Hasenack <andreas@canonical.com> Tue, 23 Aug 2011 09:50:33 -0300
31
32txstatsd (0.1.1-0~landscape1) natty; urgency=low
33
34 * New upstream release.
35
36 -- Sidnei da Silva <sidnei.da.silva@canonical.com> Thu, 28 Jul 2011 11:16:26 -0300
37
38txstatsd (0.1.0-0~landscape1) lucid; urgency=low
39
40 * Initial Release.
41
42 -- Andreas Hasenack <andreas@canonical.com> Wed, 13 Jul 2011 10:39:34 -0300
043
=== added file 'debian/compat'
--- debian/compat 1970-01-01 00:00:00 +0000
+++ debian/compat 2014-11-11 22:45:39 +0000
@@ -0,0 +1,1 @@
17
02
=== added file 'debian/control'
--- debian/control 1970-01-01 00:00:00 +0000
+++ debian/control 2014-11-11 22:45:39 +0000
@@ -0,0 +1,15 @@
1Source: python-txstatsd
2Section: python
3Priority: extra
4Maintainer: Andreas Hasenack <andreas@canonical.com>
5Build-Depends: python-setuptools (>= 0.6b3), python-all (>= 2.6.6-3), debhelper (>= 7), python-twisted-core, python-psutil, python-scipy
6Standards-Version: 3.9.5
7Homepage: https://launchpad.net/txstatsd
8
9Package: python-txstatsd
10Architecture: all
11Depends: ${python:Depends}, ${misc:Depends}, python-psutil, python-twisted-core
12Description: A network daemon for aggregating statistics
13 A network daemon for aggregating statistics (counters and timers), rolling
14 them up, then sending them to graphite. Really a port of
15 https://github.com/etsy/statsd to twisted.
016
=== added file 'debian/copyright'
--- debian/copyright 1970-01-01 00:00:00 +0000
+++ debian/copyright 2014-11-11 22:45:39 +0000
@@ -0,0 +1,43 @@
1This work was packaged for Debian by:
2
3 Andreas Hasenack <andreas@canonical.com> on Mon, 11 Jul 2011 19:29:34 -0300
4
5It was downloaded from:
6
7 https://launchpad.net/txstatsd
8
9Upstream Author(s):
10
11 Sidnei da Silva <sidnei@canonical.com>
12
13Copyright:
14
15 <Copyright (C) 2011 Canonical Services Ltd>
16
17License:
18
19 Permission is hereby granted, free of charge, to any person obtaining
20 a copy of this software and associated documentation files (the
21 "Software"), to deal in the Software without restriction, including
22 without limitation the rights to use, copy, modify, merge, publish,
23 distribute, sublicense, and/or sell copies of the Software, and to
24 permit persons to whom the Software is furnished to do so, subject to
25 the following conditions:
26
27 The above copyright notice and this permission notice shall be
28 included in all copies or substantial portions of the Software.
29
30 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
31 EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
32 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
33 IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
34 CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
35 TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
36 SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
37
38The Debian packaging is:
39
40 Copyright (C) 2011 Andreas Hasenack <andreas@canonical.com>
41
42and is licensed under MIT.
43
044
=== added file 'debian/docs'
--- debian/docs 1970-01-01 00:00:00 +0000
+++ debian/docs 2014-11-11 22:45:39 +0000
@@ -0,0 +1,4 @@
1README
2example-stats-client.tac
3txstatsd.conf-example
4statsd.tac
05
=== added file 'debian/rules'
--- debian/rules 1970-01-01 00:00:00 +0000
+++ debian/rules 2014-11-11 22:45:39 +0000
@@ -0,0 +1,4 @@
1#!/usr/bin/make -f
2
3%:
4 dh $@ --with python2 --buildsystem=python_distutils
05
=== added directory 'debian/source'
=== added file 'debian/source/format'
--- debian/source/format 1970-01-01 00:00:00 +0000
+++ debian/source/format 2014-11-11 22:45:39 +0000
@@ -0,0 +1,1 @@
11.0

Subscribers

People subscribed via source and target branches