commit:     c0a8697ab769d7470c3fca35b00557fd9f3a716b
Author:     Tomas Mozes <hydrapolic <AT> gmail <DOT> com>
AuthorDate: Mon Dec 11 07:28:33 2017 +0000
Commit:     Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Tue Dec 12 20:27:14 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c0a8697a

app-admin/filebeat: bump to 5.6.5/6.0.1.

Closes: https://bugs.gentoo.org/639584
Closes: https://github.com/gentoo/gentoo/pull/6517
Package-Manager: Portage-2.3.16, Repoman-2.3.6

 app-admin/filebeat/Manifest              |  2 +
 app-admin/filebeat/filebeat-5.6.5.ebuild | 69 ++++++++++++++++++++++++++++++++
 app-admin/filebeat/filebeat-6.0.1.ebuild | 57 ++++++++++++++++++++++++++
 3 files changed, 128 insertions(+)

diff --git a/app-admin/filebeat/Manifest b/app-admin/filebeat/Manifest
index d1e1fcaf259..870de4fa909 100644
--- a/app-admin/filebeat/Manifest
+++ b/app-admin/filebeat/Manifest
@@ -1,3 +1,5 @@
 DIST filebeat-5.5.2.tar.gz 18075191 BLAKE2B 
9786cb8f3db003c86e4bc6d56fcac660b615e7e6ad82d0912f70c545f2af3caab605be739481355466438a1769c20b28db576d208af6b0af9620ce6408068215
 SHA512 
ad92b41a9ceaad6c6e6fc80d0adccd7fe03a7056d121484bcf35c6a46b2061a5ef6d32121dd12d59b51e7678769da5c405b1d549fa130631ae3f1989b78fba48
 DIST filebeat-5.6.4.tar.gz 18145215 BLAKE2B 
ff5c848a87365fd9c592a2a10d852cdca2e32206827c26e8f631c35015623c8fb85c49799d6bae91877a0d7e718f316856e8cf8833ef29694c7d1cef5d86b47c
 SHA512 
1ae66b7dd81f04434d667ecc295a747f8c650ba1affb88d7ae358051c739634b75c64d9c52d55fe6ee0b65848ff1825e508426c03d7e822517f55602091e186a
+DIST filebeat-5.6.5.tar.gz 18145468 BLAKE2B 
57f3320012d8c17b7b961dd6d843e982e3cc5fe0f39658ca5ccc2fb9056c8dd4527306b7cfe483d3fa39bef5892dd22c4f07f24aad1e804bd76cdda94b56a3e8
 SHA512 
f1c8ffa2521e0e15a14850199c3da83d8f8489d5f97364b205ee8120b56e2ae47055c78ed6a5ef2d0296f449339efa05f2d7bce7282b1e7f2e044d7ed3244d4c
 DIST filebeat-6.0.0.tar.gz 15118739 BLAKE2B 
5b4e4998c98c52f65ad239a1002e499e042a37ccd4d53acc21c3647bbc9fc7dee913c7c3393684eccc962892d93d4ff62a91957888a46f38b8b3430c11d99c42
 SHA512 
6dbeecb640fe2e39b81be90fdd05d03c1b3ffddd20ef06ab7c51805eede82035a8d0a00de3132edb77594383095bd5e7a79609e3bdf3d62377140cde7ed3fcd7
+DIST filebeat-6.0.1.tar.gz 15150919 BLAKE2B 
40149de3257d78a737d71f59f8be91a3bd60185f716ecc89dbe373283ab6481afe709ff573efb8b1079f2c571c6de036bd705dd082c3cba1eda44d282409247c
 SHA512 
baf21acf38409b398f261509d25d2b009342fdde1fcd824c99d16cc279355ae5eb029699a5a7e3b6e58abdbed4ef5fda1b4058ed94b807fd5964ad24828585e2

diff --git a/app-admin/filebeat/filebeat-5.6.5.ebuild 
b/app-admin/filebeat/filebeat-5.6.5.ebuild
new file mode 100644
index 00000000000..fccd5dd69a8
--- /dev/null
+++ b/app-admin/filebeat/filebeat-5.6.5.ebuild
@@ -0,0 +1,69 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+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 ~x86"
+
+DEPEND=">=dev-lang/go-1.9.2"
+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_test() {
+       cd ${BEATS}/filebeat || die
+       GOPATH="${WORKDIR}" emake check
+}
+
+src_install() {
+       keepdir /var/{lib,log}/${PN}
+
+       fperms 0750 /var/{lib,log}/${PN}
+
+       newconfd "${FILESDIR}/${PN}.confd" ${PN}
+       newinitd "${FILESDIR}/${PN}.initd" ${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,filebeat.template-es6x.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"
+}

diff --git a/app-admin/filebeat/filebeat-6.0.1.ebuild 
b/app-admin/filebeat/filebeat-6.0.1.ebuild
new file mode 100644
index 00000000000..0717397854f
--- /dev/null
+++ b/app-admin/filebeat/filebeat-6.0.1.ebuild
@@ -0,0 +1,57 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+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 ~x86"
+
+DEPEND=">=dev-lang/go-1.9.2"
+RDEPEND="!app-admin/filebeat-bin"
+
+RESTRICT="test"
+
+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" ${PN}
+       newinitd "${FILESDIR}/${PN}.initd.1" ${PN}
+
+       insinto "/usr/share/doc/${PF}/examples"
+       doins ${PN}/{filebeat.yml,filebeat.reference.yml}
+
+       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/6.0/upgrading.html";
+               elog ""
+       fi
+
+       elog "Example configurations:"
+       elog "${EROOT%/}/usr/share/doc/${PF}/examples"
+}

Reply via email to