public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Michał Górny" <mgorny@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/filebeat/
Date: Mon, 29 May 2017 13:29:16 +0000 (UTC)	[thread overview]
Message-ID: <1496063986.c0159c8963b190e3aa2eae0e7ff5fe27e3781561.mgorny@gentoo> (raw)

commit:     c0159c8963b190e3aa2eae0e7ff5fe27e3781561
Author:     Tomas Mozes <hydrapolic <AT> gmail <DOT> com>
AuthorDate: Mon May 29 06:37:20 2017 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Mon May 29 13:19:46 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c0159c89

app-admin/filebeat: drop old

Closes: https://github.com/gentoo/gentoo/pull/4741
Package-Manager: Portage-2.3.6, Repoman-2.3.2

 app-admin/filebeat/Manifest              |  1 -
 app-admin/filebeat/filebeat-5.1.2.ebuild | 69 --------------------------------
 2 files changed, 70 deletions(-)

diff --git a/app-admin/filebeat/Manifest b/app-admin/filebeat/Manifest
index f140989b39b..1171ab909d5 100644
--- a/app-admin/filebeat/Manifest
+++ b/app-admin/filebeat/Manifest
@@ -1,4 +1,3 @@
-DIST filebeat-5.1.2.tar.gz 16512836 SHA256 7cd554f8be6b02290ebbc17c9820acde3dc59108672ced7a0cf5486faa3e23ce SHA512 f5ade54c3a2471680067fc5f6861ddcc052177c473f40d2135ba281e63172a4ba386368f77e5e4ba77b60c88ee20e5cd0095705aa3ed6e2588fda034de6b116f WHIRLPOOL 438119b4e5664ee0cff2a70b811ea4c247def4b15efdc1bcc243f157fe88669636c6465b93316adc2d774e5b4109856c54cc658bde2636393431b0f30a712f80
 DIST filebeat-5.2.2.tar.gz 16489808 SHA256 45c89fab339de3d3e7f9a83c7a48312ede147d5989b67b8619d9128353c891c3 SHA512 7cf54eb0b27d830e51bf97964f078874eae62e1d9642fb598cdd2f0a405db4a74e1f299c5e57e29a67cfea209b9b3c7f38bdcbe6b2e2885285b77615236971c1 WHIRLPOOL 3a708a799b3360cee12a58d858bd51f474fb86c143c6648edd451d2862ce05ae0bc9544ceef62ddbf05bc50c439a7ee041faef70214ced3e53e16e8452a9f486
 DIST filebeat-5.3.2.tar.gz 17595133 SHA256 e8c765531276e4731c5148bd99fad1efc799f3ec68e1d32a2fe116995f2b9e2f SHA512 080d079a063641e3688cc9f1563517e9a314ca834b0fa90fe12d455f984bb83282243736ecf17a7e62214034b71d373afc503d3bc5ff3d106ef5965ce00c3543 WHIRLPOOL ef6aee18d24e2b25439485121f30af2ff4d76c4ac2fe97acd1f6ec70d27c8a49ce9c3323baaa2305f56f20dea0118c970458c0cb8bfa05bc0227fdb3987f1478
 DIST filebeat-5.4.0.tar.gz 17823310 SHA256 d236f9433d48b69cc2f0bf3617f17d5f2eec261acee96cc28d8b72be84afc0a7 SHA512 7249f130a4d0c2bb6797c243a9b57e8f44552c548ad33f48a48463bdd16b3419500688be3d96c426155d2fdda3c94058837bf4fcdc59a849d02230e118699a18 WHIRLPOOL ea27e97a3ccffca5839c307b2a4de5428dd5cb6fb90941ad298887492217e23a15081b4f0e9b394175d80b70c1aeef7fc5a2d6b5c1df65b77012e9b11c569c74

diff --git a/app-admin/filebeat/filebeat-5.1.2.ebuild b/app-admin/filebeat/filebeat-5.1.2.ebuild
deleted file mode 100644
index 306413f9a21..00000000000
--- a/app-admin/filebeat/filebeat-5.1.2.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.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" ${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"
-}


             reply	other threads:[~2017-05-29 13:29 UTC|newest]

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

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=1496063986.c0159c8963b190e3aa2eae0e7ff5fe27e3781561.mgorny@gentoo \
    --to=mgorny@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