diff options
author | Tomas Mozes <tmozes@sygic.com> | 2017-01-20 13:15:08 +0100 |
---|---|---|
committer | Patrice Clement <monsieurp@gentoo.org> | 2017-01-21 14:36:39 +0100 |
commit | a9017f2f1828fb582986c799396d8e4bdf67b7c8 (patch) | |
tree | 27e21fd243ca3d9b7aa36094393cf479fe569a2a /app-admin/filebeat/filebeat-5.1.2.ebuild | |
parent | profiles/features: Remove remaining USE=gcc64 refs (diff) | |
download | gentoo-a9017f2f1828fb582986c799396d8e4bdf67b7c8.tar.gz gentoo-a9017f2f1828fb582986c799396d8e4bdf67b7c8.tar.bz2 gentoo-a9017f2f1828fb582986c799396d8e4bdf67b7c8.zip |
app-admin/filebeat: verson bump to 5.1.2.
Closes: https://github.com/gentoo/gentoo/pull/3561
Diffstat (limited to 'app-admin/filebeat/filebeat-5.1.2.ebuild')
-rw-r--r-- | app-admin/filebeat/filebeat-5.1.2.ebuild | 70 |
1 files changed, 70 insertions, 0 deletions
diff --git a/app-admin/filebeat/filebeat-5.1.2.ebuild b/app-admin/filebeat/filebeat-5.1.2.ebuild new file mode 100644 index 000000000000..0a7c9f926a4c --- /dev/null +++ b/app-admin/filebeat/filebeat-5.1.2.ebuild @@ -0,0 +1,70 @@ +# 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-1.7.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-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" +} |