public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Göktürk Yüksek" <gokturk@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/filebeat/
Date: Sat,  3 Dec 2016 03:11:08 +0000 (UTC)	[thread overview]
Message-ID: <1480734489.04d38c92be0d08d3f2be5ebd5223d5be889eb88a.gokturk@gentoo> (raw)

commit:     04d38c92be0d08d3f2be5ebd5223d5be889eb88a
Author:     Tomas Mozes <hydrapolic <AT> gmail <DOT> com>
AuthorDate: Fri Dec  2 11:12:33 2016 +0000
Commit:     Göktürk Yüksek <gokturk <AT> gentoo <DOT> org>
CommitDate: Sat Dec  3 03:08:09 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=04d38c92

app-admin/filebeat: version bump to 5.0.2

Package-Manager: portage-2.3.1

 app-admin/filebeat/Manifest              |  1 +
 app-admin/filebeat/filebeat-5.0.2.ebuild | 65 ++++++++++++++++++++++++++++++++
 2 files changed, 66 insertions(+)

diff --git a/app-admin/filebeat/Manifest b/app-admin/filebeat/Manifest
index dc72c57..4019030 100644
--- a/app-admin/filebeat/Manifest
+++ b/app-admin/filebeat/Manifest
@@ -1,2 +1,3 @@
 DIST filebeat-1.3.1.tar.gz 10225540 SHA256 1d8e41b42a0b2dd59403795ff07cbfd8a9a76477731c38122aa9242b47b054e0 SHA512 60f6d4ae93bb01e74311d7ccc3d367707f888f58898b89a0ea7512c96b6e1369edf7dc2afe3615df97e8c311629d9fc1e9fc2f1abe8edcbb5bc5bcf47c82107c WHIRLPOOL 608b825fa4dc99d792deb9d23672eea0e66318461adb944dc484d42edc3d3acb1cf1f65cd4024cf0437dd5e5ed088ff5b5aeec967f7efad03b82f259793410f0
 DIST filebeat-5.0.0.tar.gz 15736495 SHA256 3e6b7cf2ee5f52e78ae87ef04ab9dd49977c89f86a09416586896aeaea844e34 SHA512 0838fb5e04d2266b15a6f21ebf1109626b60591a9154f4bb11cde73ae127a7695defb1e238a115ab59e0a7441bd9fa5642d4eb924663f00467b715224a3fa076 WHIRLPOOL a2b39bccfb45a32a25de9ae32ad881cd79e7a854280d6eb17614f4c274e9f92d956f8b811e6ff6371d16e7d723a98c59e82906d90029a25d079b33089142df5f
+DIST filebeat-5.0.2.tar.gz 15774694 SHA256 feef1e53b978c12b3b3c552534fd666839df5d7d3b974e16636360ca6c4ab7c0 SHA512 2481ed584efda67051e59a27b45ba52039d960d6dc335d9225e2370bc71e5167f5e4e9e7cc0cb7e689c9a73d5edf27655c4764b0acb6f1422f18bfc10fc44fe9 WHIRLPOOL 82d79d09d4c138b40841227e7b4b137b262fb251ec83b736914bb4cda00837d8eedf7af01618d2a04c368cc50650121148cd507da38acce481a3f4dd93281ae8

diff --git a/app-admin/filebeat/filebeat-5.0.2.ebuild b/app-admin/filebeat/filebeat-5.0.2.ebuild
new file mode 100644
index 00000000..34c08b5
--- /dev/null
+++ b/app-admin/filebeat/filebeat-5.0.2.ebuild
@@ -0,0 +1,65 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+DESCRIPTION="Lightweight log shipper for Logstash and Elasticsearch"
+HOMEPAGE="https://www.elastic.co/products/beats"
+SRC_URI="https://github.com/elastic/beats/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64"
+
+DEPEND="dev-lang/go"
+RDEPEND="!app-admin/filebeat-bin"
+
+ELASTIC="${WORKDIR}/src/github.com/elastic"
+BEATS="${ELASTIC}/beats"
+S="${BEATS}"
+
+src_unpack() {
+	mkdir -p "${ELASTIC}" || die
+	unpack ${P}.tar.gz
+	mv beats-${PV} "${BEATS}" || die
+}
+
+src_compile() {
+	cd ${BEATS}/filebeat || die
+	GOPATH="${WORKDIR}" emake
+}
+
+src_install() {
+	keepdir /var/{lib,log}/${PN}
+
+	fperms 0750 /var/{lib,log}/${PN}
+
+	newconfd "${FILESDIR}/${PN}.confd-r1" ${PN}
+	newinitd "${FILESDIR}/${PN}.initd-r1" ${PN}
+
+	insinto "/usr/share/doc/${PF}/examples"
+	doins ${PN}/{filebeat.yml,filebeat.full.yml}
+
+	insinto "/etc/${PN}"
+	doins ${PN}/{filebeat.template.json,filebeat.template-es2x.json}
+
+	exeinto "/usr/share/${PN}"
+	doexe libbeat/scripts/migrate_beat_config_1_x_to_5_0.py
+
+	dobin filebeat/filebeat
+}
+
+pkg_postinst() {
+	if [[ -n "${REPLACING_VERSIONS}" ]]; then
+		elog "Please read the migration guide at:"
+		elog "https://www.elastic.co/guide/en/beats/libbeat/5.0/upgrading.html"
+		elog ""
+		elog "The migration script:"
+		elog "${EROOT%/}/usr/share/filebeat/migrate_beat_config_1_x_to_5_0.py"
+		elog ""
+	fi
+
+	elog "Example configurations:"
+	elog "${EROOT%/}/usr/share/doc/${PF}/examples"
+}


             reply	other threads:[~2016-12-03  3:11 UTC|newest]

Thread overview: 94+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-12-03  3:11 Göktürk Yüksek [this message]
  -- strict thread matches above, loose matches on Subject: below --
2016-12-27 17:29 [gentoo-commits] repo/gentoo:master commit in: app-admin/filebeat/ Göktürk Yüksek
2017-01-21 13:36 Patrice Clement
2017-03-16 21:45 Göktürk Yüksek
2017-04-26 21:02 Patrice Clement
2017-05-23 19:58 Michał Górny
2017-05-29 13:29 Michał Górny
2017-05-29 13:29 Michał Górny
2017-06-04 17:52 Michał Górny
2017-06-27 12:49 Michael Palimaka
2017-07-04 10:17 Agostino Sarubbo
2017-07-08 21:35 Patrice Clement
2017-08-13 13:00 Patrice Clement
2017-08-13 13:00 Patrice Clement
2017-08-29  9:44 Patrice Clement
2017-09-04 18:51 Aaron Bauman
2017-09-04 18:52 Aaron Bauman
2017-09-21 14:59 Amy Liffey
2017-09-30  8:05 Patrice Clement
2017-09-30  8:05 Patrice Clement
2017-10-15 21:11 Patrice Clement
2017-10-15 21:11 Patrice Clement
2017-11-16 15:11 Amy Liffey
2017-11-16 15:11 Amy Liffey
2017-12-12 20:27 Patrice Clement
2017-12-12 20:27 Patrice Clement
2018-01-27 14:00 Michał Górny
2018-04-06 14:23 Aaron Bauman
2018-04-20 12:54 Michał Górny
2018-04-20 12:54 Michał Górny
2018-04-20 12:54 Michał Górny
2018-07-11 21:50 Tony Vroon
2018-07-11 21:50 Tony Vroon
2018-07-11 21:50 Tony Vroon
2018-08-28  7:56 Mikle Kolyada
2018-09-09 20:41 Thomas Deutschmann
2018-11-09 17:57 Mikle Kolyada
2018-11-10 20:57 Thomas Deutschmann
2018-11-10 20:57 Thomas Deutschmann
2018-11-10 20:57 Thomas Deutschmann
2018-12-04 18:03 Mikle Kolyada
2018-12-15  9:02 Mikle Kolyada
2018-12-15  9:02 Mikle Kolyada
2018-12-22  7:08 Mikle Kolyada
2018-12-22  7:08 Mikle Kolyada
2019-03-04 15:58 Thomas Deutschmann
2019-03-04 15:58 Thomas Deutschmann
2019-03-05 14:58 Thomas Deutschmann
2019-03-10 15:23 Mikle Kolyada
2019-07-05 17:50 Michał Górny
2019-07-05 17:50 Michał Górny
2019-08-28  9:11 David Seifert
2019-09-21 14:49 Joonas Niilola
2019-09-21 14:49 Joonas Niilola
2019-10-27 11:59 Agostino Sarubbo
2019-10-29  6:53 Joonas Niilola
2019-10-29  6:53 Joonas Niilola
2020-01-03  9:15 Joonas Niilola
2020-02-26 16:17 Joonas Niilola
2020-02-26 16:17 Joonas Niilola
2020-03-20 14:30 Joonas Niilola
2020-06-12 14:33 Thomas Deutschmann
2020-06-12 14:33 Thomas Deutschmann
2020-06-26 23:00 Thomas Deutschmann
2020-08-30 21:46 Thomas Deutschmann
2020-09-12 18:39 Thomas Deutschmann
2020-10-16 13:26 Joonas Niilola
2020-11-14  9:49 Mikle Kolyada
2020-11-14  9:49 Mikle Kolyada
2021-01-21 23:23 Sam James
2021-02-05 10:40 Sam James
2021-03-30  7:25 Joonas Niilola
2021-05-11 15:47 Thomas Deutschmann
2021-06-16  9:50 Thomas Deutschmann
2021-07-31 10:03 Joonas Niilola
2021-10-12  7:10 Agostino Sarubbo
2021-11-11 23:49 Sam James
2021-12-14  1:19 Sam James
2021-12-21  1:56 Sam James
2021-12-21  1:56 Sam James
2022-01-08 18:03 Jakov Smolić
2022-01-28  8:36 Sam James
2022-01-28  8:36 Sam James
2022-03-16 22:35 Sam James
2022-04-24  7:58 Joonas Niilola
2022-04-24  7:58 Joonas Niilola
2022-04-29 12:20 Joonas Niilola
2022-08-28  8:22 Joonas Niilola
2022-08-28  8:22 Joonas Niilola
2023-02-16 10:01 Sam James
2023-09-16  7:57 Joonas Niilola
2024-01-20 13:33 Sam James
2024-02-12 13:05 Sam James
2024-02-23 10:45 Petr Vaněk

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=1480734489.04d38c92be0d08d3f2be5ebd5223d5be889eb88a.gokturk@gentoo \
    --to=gokturk@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