From 02051c9054ab711e930858a5fc6b2c828a142c1f Mon Sep 17 00:00:00 2001 From: Tomas Mozes Date: Mon, 29 May 2017 08:36:11 +0200 Subject: app-admin/filebeat: add missing es mapping (bug #618800) Package-Manager: Portage-2.3.6, Repoman-2.3.2 --- app-admin/filebeat/filebeat-5.4.0-r1.ebuild | 69 +++++++++++++++++++++++++++++ app-admin/filebeat/filebeat-5.4.0.ebuild | 69 ----------------------------- 2 files changed, 69 insertions(+), 69 deletions(-) create mode 100644 app-admin/filebeat/filebeat-5.4.0-r1.ebuild delete mode 100644 app-admin/filebeat/filebeat-5.4.0.ebuild (limited to 'app-admin/filebeat') diff --git a/app-admin/filebeat/filebeat-5.4.0-r1.ebuild b/app-admin/filebeat/filebeat-5.4.0-r1.ebuild new file mode 100644 index 000000000000..b103babe64b6 --- /dev/null +++ b/app-admin/filebeat/filebeat-5.4.0-r1.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" + +DEPEND=">=dev-lang/go-1.8.1" +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-5.4.0.ebuild b/app-admin/filebeat/filebeat-5.4.0.ebuild deleted file mode 100644 index 83d28bf3f0b7..000000000000 --- a/app-admin/filebeat/filebeat-5.4.0.ebuild +++ /dev/null @@ -1,69 +0,0 @@ -# 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" - -DEPEND=">=dev-lang/go-1.8.1" -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} - - 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" -} -- cgit v1.2.3-65-gdbad