Ottomata has submitted this change and it was merged. Change subject: Initial Debian packaging ......................................................................
Initial Debian packaging Change-Id: Iaf9bcbada503eaefd4af69769de92ab2a246454f --- A debian/changelog A debian/compat A debian/control A debian/copyright A debian/gbp.conf A debian/rules A debian/source/format 7 files changed, 70 insertions(+), 0 deletions(-) Approvals: Ottomata: Verified; Looks good to me, approved Faidon Liambotis: Looks good to me, approved diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..9578627 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +logster (0.0.1-1~precise1) unstable; urgency=low + + * Initial release + + -- Andrew Otto (WMF) <[email protected]> Thu, 14 Nov 2013 22:00:04 +0000 diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..ec63514 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +9 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..49665d4 --- /dev/null +++ b/debian/control @@ -0,0 +1,18 @@ +Source: logster +Maintainer: Andrew Otto (WMF) <[email protected]> +Section: python +Priority: optional +Build-Depends: python, python-setuptools, debhelper (>= 9), +Standards-Version: 3.9.5 +Vcs-Git: https://gerrit.wikimedia.org/r/operations/debs/logster -b debian +Vcs-Browser: http://git.wikimedia.org/tree/operations%2Fdebs%logster.git/refs%2Fheads%2Fdebian + +Package: logster +Architecture: all +Depends: ${misc:Depends}, ${python:Depends}, logcheck +X-Python-Version: >= 2.6 +Provides: ${python:Provides} +Description: Parse log files, generate metrics for Statsd, Graphite, Ganglia, and more. + Logster is a utility for reading log files and generating metrics in Graphite, + Ganglia, Statsd, Amazon CloudWatch, etc. It is ideal for visualizing trends of + events that are occurring in your application/system/error logs. diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..50b1cb5 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,34 @@ +Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: logster +Source: https://github.com/etsy/logster + +Files: * +Copyright: 2008 Linden Research, Inc. + 2011, 2013 Etsy, Inc. +License: GPL-3+ + +Files: logster/parsers/PostfixLogster.py +Copyright: 2011 Bronto Software, Inc. +License: GPL-3+ + +Files: debian/* +Copyright: 2013 Andrew Otto (WMF) <[email protected]> + 2013 Wikimedia Foundation, Inc. +License: GPL-3+ + +License: GPL-3+ + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + . + This package is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + . + You should have received a copy of the GNU General Public License + along with this program. If not, see <http://www.gnu.org/licenses/>. + . + On Debian systems, the complete text of the GNU General + Public License version 3 can be found in `/usr/share/common-licenses/GPL-3'. diff --git a/debian/gbp.conf b/debian/gbp.conf new file mode 100644 index 0000000..6988e96 --- /dev/null +++ b/debian/gbp.conf @@ -0,0 +1,5 @@ +[git-buildpackage] +upstream-tree=branch +upstream-branch=master +debian-branch=debian +export-dir = ../build-area/logster diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..0182371 --- /dev/null +++ b/debian/rules @@ -0,0 +1,5 @@ +#!/usr/bin/make -f + + +%: + dh $@ --with python2 diff --git a/debian/source/format b/debian/source/format new file mode 100644 index 0000000..c3d9f24 --- /dev/null +++ b/debian/source/format @@ -0,0 +1,2 @@ +3.0 (quilt) + -- To view, visit https://gerrit.wikimedia.org/r/95556 To unsubscribe, visit https://gerrit.wikimedia.org/r/settings Gerrit-MessageType: merged Gerrit-Change-Id: Iaf9bcbada503eaefd4af69769de92ab2a246454f Gerrit-PatchSet: 3 Gerrit-Project: operations/debs/logster Gerrit-Branch: debian Gerrit-Owner: Ottomata <[email protected]> Gerrit-Reviewer: Akosiaris <[email protected]> Gerrit-Reviewer: Faidon Liambotis <[email protected]> Gerrit-Reviewer: Ottomata <[email protected]> _______________________________________________ MediaWiki-commits mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits
