From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id D92DF138334 for ; Fri, 28 Sep 2018 09:45:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2F247E092C; Fri, 28 Sep 2018 09:45:38 +0000 (UTC) Received: from smtp.gentoo.org (unknown [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E7437E092C for ; Fri, 28 Sep 2018 09:45:37 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D307E335CD2 for ; Fri, 28 Sep 2018 09:45:16 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9F8563FB for ; Fri, 28 Sep 2018 09:45:14 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1538127874.76c7093c8864e6ad1fb37f9959164a637dade5e4.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: www-apps/kibana-bin/ X-VCS-Repository: repo/gentoo X-VCS-Files: www-apps/kibana-bin/kibana-bin-6.4.0.ebuild X-VCS-Directories: www-apps/kibana-bin/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 76c7093c8864e6ad1fb37f9959164a637dade5e4 X-VCS-Branch: master Date: Fri, 28 Sep 2018 09:45:14 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 4b87ee1a-f296-422b-b982-058b621a419c X-Archives-Hash: e89fb848daf5b0c00fd3c992c7bd4df2 commit: 76c7093c8864e6ad1fb37f9959164a637dade5e4 Author: Tomas Mozes gmail com> AuthorDate: Mon Sep 17 10:48:32 2018 +0000 Commit: Michał Górny gentoo org> CommitDate: Fri Sep 28 09:44:34 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=76c7093c www-apps/kibana-bin: drop old Signed-off-by: Tomáš Mózes gmail.com> Package-Manager: Portage-2.3.49, Repoman-2.3.10 Signed-off-by: Michał Górny gentoo.org> www-apps/kibana-bin/kibana-bin-6.4.0.ebuild | 71 ----------------------------- 1 file changed, 71 deletions(-) diff --git a/www-apps/kibana-bin/kibana-bin-6.4.0.ebuild b/www-apps/kibana-bin/kibana-bin-6.4.0.ebuild deleted file mode 100644 index ad544d11f39..00000000000 --- a/www-apps/kibana-bin/kibana-bin-6.4.0.ebuild +++ /dev/null @@ -1,71 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit systemd user - -MY_PN="${PN%-bin}" -MY_P=${MY_PN}-${PV} - -DESCRIPTION="Analytics and search dashboard for Elasticsearch" -HOMEPAGE="https://www.elastic.co/products/kibana" -SRC_URI="x-pack? ( https://artifacts.elastic.co/downloads/${MY_PN}/${MY_P}-linux-x86_64.tar.gz ) - !x-pack? ( https://artifacts.elastic.co/downloads/${MY_PN}/${MY_PN}-oss-${PV}-linux-x86_64.tar.gz )" - -# source: LICENSE.txt and NOTICE.txt -LICENSE="Apache-2.0 Artistic-2 BSD BSD-2 CC-BY-3.0 CC-BY-4.0 icu ISC MIT MPL-2.0 OFL-1.1 openssl public-domain Unlicense WTFPL-2 ZLIB x-pack? ( Elastic )" -SLOT="0" -KEYWORDS="~amd64" -IUSE="x-pack" - -RDEPEND="net-libs/nodejs" - -S="${WORKDIR}/${MY_P}-linux-x86_64" - -pkg_setup() { - enewgroup ${MY_PN} - enewuser ${MY_PN} -1 -1 /opt/${MY_PN} ${MY_PN} -} - -src_prepare() { - default - - # remove bundled nodejs - rm -r node || die - - # remove empty unused directory - rmdir data || die -} - -src_install() { - insinto /etc/${MY_PN} - doins -r config/. - rm -r config || die - - insinto /etc/logrotate.d - newins "${FILESDIR}"/${MY_PN}.logrotate ${MY_PN} - - newconfd "${FILESDIR}"/${MY_PN}.confd ${MY_PN} - newinitd "${FILESDIR}"/${MY_PN}.initd ${MY_PN} - systemd_dounit "${FILESDIR}"/${MY_PN}.service - - insinto /opt/${MY_PN} - doins -r . - - chmod +x "${ED%/}"/opt/${MY_PN}/bin/* || die - - diropts -m 0750 -o ${MY_PN} -g ${MY_PN} - keepdir /var/log/${MY_PN} -} - -pkg_postinst() { - elog "This version of Kibana is compatible with Elasticsearch $(ver_cut 1-2) and" - elog "Node.js 8. Some plugins may fail with other versions of Node.js (Bug #656008)." - elog - elog "To set a customized Elasticsearch instance:" - elog " OpenRC: set ES_INSTANCE in /etc/conf.d/${MY_PN}" - elog " systemd: set elasticsearch.url in /etc/${MY_PN}/kibana.yml" - elog - elog "Elasticsearch can run local or remote." -}