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 5466913933E for ; Sat, 10 Jul 2021 15:19:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 641BBE0B4E; Sat, 10 Jul 2021 15:18:59 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [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 4D847E0B4E for ; Sat, 10 Jul 2021 15:18:59 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 4C7D3342BF2 for ; Sat, 10 Jul 2021 15:18:58 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B4E537A2 for ; Sat, 10 Jul 2021 15:18:56 +0000 (UTC) From: "Conrad Kostecki" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Conrad Kostecki" Message-ID: <1625930333.ea7c037cff4e212a24b39a692b5f9a842f6512a0.conikost@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/aerospike-amc-community/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-admin/aerospike-amc-community/aerospike-amc-community-4.0.19-r2.ebuild X-VCS-Directories: app-admin/aerospike-amc-community/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: ea7c037cff4e212a24b39a692b5f9a842f6512a0 X-VCS-Branch: master Date: Sat, 10 Jul 2021 15:18:56 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 0136b7c1-792d-4dbd-ac96-00c339edcb6d X-Archives-Hash: 6d83306512184147f16b94ea0d69d623 commit: ea7c037cff4e212a24b39a692b5f9a842f6512a0 Author: Conrad Kostecki gentoo org> AuthorDate: Sat Jul 10 15:17:34 2021 +0000 Commit: Conrad Kostecki gentoo org> CommitDate: Sat Jul 10 15:18:53 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ea7c037c app-admin/aerospike-amc-community: fix deps Package-Manager: Portage-3.0.20, Repoman-3.0.3 RepoMan-Options: --force Signed-off-by: Conrad Kostecki gentoo.org> .../aerospike-amc-community-4.0.19-r2.ebuild | 25 ++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/app-admin/aerospike-amc-community/aerospike-amc-community-4.0.19-r2.ebuild b/app-admin/aerospike-amc-community/aerospike-amc-community-4.0.19-r2.ebuild new file mode 100644 index 00000000000..1b4de47e82c --- /dev/null +++ b/app-admin/aerospike-amc-community/aerospike-amc-community-4.0.19-r2.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="Web UI based monitoring tool for Aerospike Community Edition Server" +HOMEPAGE="http://www.aerospike.com" +SRC_URI="http://www.aerospike.com/download/amc/${PV}/artifact/linux -> ${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64" + +RDEPEND=" + acct-group/aerospike-amc + acct-user/aerospike-amc +" + +S="${WORKDIR}" + +src_install() { + cp -r "${S}/"* "${ED}" + rm "${ED}/etc/init.d/*" + newinitd "${FILESDIR}/amc.init.4" amc +}