From: "Patrick Lauer" <patrick@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/logstash-bin/
Date: Fri, 1 Apr 2016 09:15:47 +0000 (UTC) [thread overview]
Message-ID: <1459502142.802cefea3feec1f8f2099871bb675c622e07d959.patrick@gentoo> (raw)
commit: 802cefea3feec1f8f2099871bb675c622e07d959
Author: Patrick Lauer <patrick <AT> gentoo <DOT> org>
AuthorDate: Fri Apr 1 09:15:03 2016 +0000
Commit: Patrick Lauer <patrick <AT> gentoo <DOT> org>
CommitDate: Fri Apr 1 09:15:42 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=802cefea
app-admin/logstash-bin: Bump
Package-Manager: portage-2.2.28
app-admin/logstash-bin/Manifest | 1 +
app-admin/logstash-bin/logstash-bin-2.3.0.ebuild | 60 ++++++++++++++++++++++++
2 files changed, 61 insertions(+)
diff --git a/app-admin/logstash-bin/Manifest b/app-admin/logstash-bin/Manifest
index c9beb74..4a66b10 100644
--- a/app-admin/logstash-bin/Manifest
+++ b/app-admin/logstash-bin/Manifest
@@ -1,4 +1,5 @@
DIST logstash-2.1.3.tar.gz 74433726 SHA256 c592ea6c63a64f44a08a4b86b8ce6e72847ffdf0cd207d1571dcfda899f7134f SHA512 76a25c4ac49b2d8d10ea13e60a249dad95b661f54310ad5ba7abf169065429342323e97d0bd1954542db31627d27762aabd0087186e3176a27066afc9b1e185c WHIRLPOOL 7da3f23e3fa0c09c7de0098dc09c5019e7bd5e7b3bf67b6df7b9d5d5ee06e6f2cb88c49b3865931cbe58342b28dd6035ea7da6889ff55d00ab6b87612a7ceff2
DIST logstash-2.2.0.tar.gz 74440588 SHA256 aee2437f45c726ec354f0bf9634b3638428d48bef32beb412f827eb2cc736f78 SHA512 8a167971731bf0d0a7eddb023c57c66fa8ebeb0842756711795117bdb988018040ea50848c1f6e06ba748d76b723a39f758e275778270cf92acebb3284263ce0 WHIRLPOOL b07eba50168bd9ee9e7b55e8b9fd181353188db4b4c8e4dedc289cd8c8d4fae4c10650a8d968c06cd90e132f90adbc0805c077f1d891ef968e5ae02bf240dc27
DIST logstash-2.2.2.tar.gz 74452781 SHA256 f0a29ec8fd327e42f3023bd6bf85a00ac20617bfc214df59c765453977398312 SHA512 bab0463f6d4aeccfac04007d318b8cf70d56c803dfaa7948fb7dc1ca29bb91ccc3b1c5b705bede585e4adb98e63b3515bbabfc1206378e3b53ead78cf08c3da4 WHIRLPOOL 92122b7687b7230ad9d9415d9bbcca737cabb46f512d2a86f4401205a3cdf0f31bee8bf6e0a42066a54234474b490c008ad2084f8ff5a5fc5af87532842de39a
+DIST logstash-2.3.0.tar.gz 73593126 SHA256 d802803ac6dc7e9215b19764dd8fbaa74c75fa1d8bf387508fb0d0d8d36b0241 SHA512 1a8aa6ebe43b80c6cfe44e5ac8233b451c0cbd1bf4636155726b115992a0a2b046926a5fa887d2dc33f7611e9a295cdd4a5875c875f289400ea7f93413459928 WHIRLPOOL 1d3e54ae4775459f35bf1d0fe51e634c27b5b0488e9e6fe9129d38956bd5296b3b78bea77c8a72b810fb11ea9a13214efad900398cd9c76d1e95d6ced79cd043
DIST logstash-all-plugins-2.2.0.tar.gz 129473672 SHA256 966b5408e66af003f96084bf6f8764855c00530db8b326513d795541a62e4d41 SHA512 0725275e312f9a936d750959ccc388bac0df91ff7dd1a74d501cfdfe20006a0a5008d0877012ad80b5caece3f64bdc86b79ffb20e2f07c4a8cd5bdd2daf8d1b2 WHIRLPOOL 3cfaf4693a0b7ef0343a973de344b063ad0d1928bf9316cc893ed88de9a7ef209a206d0cb881582c2213de9409874a959c44d874af82a5bad6468943fe4297c8
diff --git a/app-admin/logstash-bin/logstash-bin-2.3.0.ebuild b/app-admin/logstash-bin/logstash-bin-2.3.0.ebuild
new file mode 100644
index 0000000..8d3ffea
--- /dev/null
+++ b/app-admin/logstash-bin/logstash-bin-2.3.0.ebuild
@@ -0,0 +1,60 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit user
+
+MY_PN="${PN/-bin}"
+MY_P="${MY_PN}-${PV}"
+
+DESCRIPTION="Tool for managing events and logs"
+HOMEPAGE="https://www.elastic.co/products/logstash"
+SRC_URI="https://download.elastic.co/${MY_PN}/${MY_PN}/${MY_P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE=""
+
+RESTRICT="strip"
+QA_PREBUILT="opt/logstash/vendor/jruby/lib/jni/*/libjffi*.so"
+
+DEPEND=""
+RDEPEND="|| ( virtual/jre:1.8 virtual/jre:1.7 )"
+
+S="${WORKDIR}/${MY_P}"
+
+pkg_setup() {
+ enewgroup ${MY_PN}
+ enewuser ${MY_PN} -1 -1 /var/lib/${MY_PN} ${MY_PN} -m
+}
+
+src_install() {
+ keepdir /etc/"${MY_PN}"/{conf.d,patterns,plugins}
+ keepdir "/var/log/${MY_PN}"
+
+ insinto "/etc/${MY_PN}/conf.d"
+ doins "${FILESDIR}/agent.conf.sample"
+
+ insinto "/opt/${MY_PN}"
+ doins -r .
+ fperms 0755 "/opt/${MY_PN}/bin/${MY_PN}" "/opt/${MY_PN}/vendor/jruby/bin/jruby"
+
+ insinto /etc/logrotate.d
+ newins "${FILESDIR}/${MY_PN}.logrotate-r1" "${MY_PN}"
+
+ newconfd "${FILESDIR}/${MY_PN}.confd-r1" "${MY_PN}"
+ newinitd "${FILESDIR}/${MY_PN}.initd-r1" "${MY_PN}"
+}
+
+pkg_postinst() {
+ einfo "Getting started with logstash:"
+ einfo " https://www.elastic.co/guide/en/logstash/current/getting-started-with-logstash.html"
+ einfo ""
+ einfo "Packages that might be interesting:"
+ einfo " app-misc/elasticsearch"
+ einfo " dev-python/elasticsearch-curator"
+ einfo " www-apps/kibana-bin"
+}
next reply other threads:[~2016-04-01 9:15 UTC|newest]
Thread overview: 127+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-04-01 9:15 Patrick Lauer [this message]
-- strict thread matches above, loose matches on Subject: below --
2024-12-04 18:10 [gentoo-commits] repo/gentoo:master commit in: app-admin/logstash-bin/ Joonas Niilola
2024-12-04 18:10 Joonas Niilola
2024-12-04 18:10 Joonas Niilola
2024-01-20 13:33 Sam James
2024-01-20 13:33 Sam James
2023-09-16 7:57 Joonas Niilola
2023-05-27 7:49 Joonas Niilola
2023-03-11 16:26 Sam James
2023-01-08 3:37 Sam James
2022-11-18 8:51 Joonas Niilola
2022-07-15 8:38 Joonas Niilola
2022-07-15 8:38 Joonas Niilola
2022-07-15 8:38 Joonas Niilola
2022-04-24 7:58 Joonas Niilola
2022-04-24 7:58 Joonas Niilola
2022-03-16 22:35 Sam James
2022-01-28 8:36 Sam James
2022-01-28 8:36 Sam James
2021-12-21 1:56 Sam James
2021-12-14 1:19 Sam James
2021-11-11 23:49 Sam James
2021-10-04 12:51 Joonas Niilola
2021-10-04 12:51 Joonas Niilola
2021-10-02 12:46 Joonas Niilola
2021-07-31 10:03 Joonas Niilola
2021-07-31 10:03 Joonas Niilola
2021-06-16 9:50 Thomas Deutschmann
2021-06-16 9:50 Thomas Deutschmann
2021-05-31 8:20 Sam James
2021-05-11 15:47 Thomas Deutschmann
2021-03-30 7:25 Joonas Niilola
2021-03-30 7:25 Joonas Niilola
2021-03-30 7:25 Joonas Niilola
2021-01-21 23:23 Sam James
2020-11-18 17:34 Thomas Deutschmann
2020-11-14 9:49 Mikle Kolyada
2020-10-16 13:26 Joonas Niilola
2020-09-12 18:39 Thomas Deutschmann
2020-08-30 21:46 Thomas Deutschmann
2020-07-30 18:17 Thomas Deutschmann
2020-07-30 18:17 Thomas Deutschmann
2020-07-30 18:17 Thomas Deutschmann
2020-06-26 23:00 Thomas Deutschmann
2020-06-12 14:33 Thomas Deutschmann
2020-06-12 14:33 Thomas Deutschmann
2020-03-20 14:30 Joonas Niilola
2020-02-26 16:17 Joonas Niilola
2020-02-26 16:17 Joonas Niilola
2020-01-03 9:15 Joonas Niilola
2019-10-29 6:53 Joonas Niilola
2019-10-29 6:53 Joonas Niilola
2019-10-29 6:53 Joonas Niilola
2019-09-21 14:49 Joonas Niilola
2019-09-21 14:49 Joonas Niilola
2019-08-28 9:11 David Seifert
2019-08-11 14:39 Joonas Niilola
2019-08-11 14:39 Joonas Niilola
2019-03-04 15:58 Thomas Deutschmann
2019-03-04 15:58 Thomas Deutschmann
2019-03-04 15:58 Thomas Deutschmann
2018-12-22 7:08 Mikle Kolyada
2018-12-22 7:08 Mikle Kolyada
2018-12-15 9:02 Mikle Kolyada
2018-12-15 9:02 Mikle Kolyada
2018-12-04 15:22 Mikle Kolyada
2018-11-10 20:57 Thomas Deutschmann
2018-11-10 20:57 Thomas Deutschmann
2018-11-10 20:57 Thomas Deutschmann
2018-10-02 9:40 Thomas Deutschmann
2018-10-02 9:40 Thomas Deutschmann
2018-10-02 9:40 Thomas Deutschmann
2018-09-09 20:41 Thomas Deutschmann
2018-09-09 20:41 Thomas Deutschmann
2018-09-09 20:41 Thomas Deutschmann
2018-08-07 22:27 Patrice Clement
2018-07-15 16:16 Mikle Kolyada
2018-07-15 16:16 Mikle Kolyada
2018-05-14 13:45 Michał Górny
2018-05-14 13:45 Michał Górny
2018-05-14 13:45 Michał Górny
2018-03-12 22:59 Patrice Clement
2018-03-12 22:59 Patrice Clement
2018-01-31 21:58 Michał Górny
2018-01-31 21:58 Michał Górny
2017-12-12 20:27 Patrice Clement
2017-12-12 20:27 Patrice Clement
2017-11-25 13:22 Amy Liffey
2017-11-16 15:13 Amy Liffey
2017-11-16 15:13 Amy Liffey
2017-10-18 22:32 Patrice Clement
2017-10-18 22:32 Patrice Clement
2017-09-30 8:59 Patrice Clement
2017-09-25 11:29 Michael Orlitzky
2017-07-08 21:35 Patrice Clement
2017-06-04 17:52 Michał Górny
2017-05-19 10:52 Michał Górny
2017-05-18 22:25 Michał Górny
2017-05-17 16:37 Patrick Lauer
2017-04-26 21:02 Patrice Clement
2017-03-28 3:05 Göktürk Yüksek
2017-03-16 22:03 Göktürk Yüksek
2016-11-28 11:07 Patrick Lauer
2016-10-31 13:55 Patrick Lauer
2016-10-15 9:25 Patrick Lauer
2016-10-02 12:59 Göktürk Yüksek
2016-10-01 19:05 Patrick Lauer
2016-09-08 9:35 Patrice Clement
2016-09-08 9:33 Patrice Clement
2016-09-08 6:52 Patrice Clement
2016-09-02 14:38 Patrick Lauer
2016-09-02 5:26 Patrick Lauer
2016-09-01 14:14 Patrick Lauer
2016-07-11 9:24 Patrick Lauer
2016-07-04 16:18 Göktürk Yüksek
2016-07-04 16:18 Göktürk Yüksek
2016-06-23 2:33 Patrick Lauer
2016-04-28 10:25 Sam Jorna
2016-04-04 9:00 Ian Delaney
2016-02-23 10:10 Ian Delaney
2016-02-15 13:16 Patrice Clement
2016-02-09 10:26 Ian Delaney
2015-12-23 10:03 Patrice Clement
2015-12-23 10:03 Patrice Clement
2015-12-23 10:03 Patrice Clement
2015-12-07 11:37 Ian Delaney
2015-09-09 5:37 Ian Delaney
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1459502142.802cefea3feec1f8f2099871bb675c622e07d959.patrick@gentoo \
--to=patrick@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox