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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 2ACEE1581D3 for ; Sat, 25 May 2024 12:00:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 70D83E2A25; Sat, 25 May 2024 12:00:08 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 59D76E2A25 for ; Sat, 25 May 2024 12:00:08 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7706E34068A for ; Sat, 25 May 2024 12:00:07 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C14231B49 for ; Sat, 25 May 2024 12:00:05 +0000 (UTC) From: "Florian Schmaus" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Florian Schmaus" Message-ID: <1716638379.64f0683498cac767b35c5e868fe6c7d64cb90e93.flow@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-erlang/goldrush/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-erlang/goldrush/goldrush-0.2.0-r1.ebuild X-VCS-Directories: dev-erlang/goldrush/ X-VCS-Committer: flow X-VCS-Committer-Name: Florian Schmaus X-VCS-Revision: 64f0683498cac767b35c5e868fe6c7d64cb90e93 X-VCS-Branch: master Date: Sat, 25 May 2024 12:00:05 +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: bfb8276b-3391-472f-a7aa-cc37a5433007 X-Archives-Hash: deab92afe3a4b1106d2e8271f4ea07c4 commit: 64f0683498cac767b35c5e868fe6c7d64cb90e93 Author: Michael Mair-Keimberger levelnine at> AuthorDate: Thu May 23 16:27:10 2024 +0000 Commit: Florian Schmaus gentoo org> CommitDate: Sat May 25 11:59:39 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=64f06834 dev-erlang/goldrush: EAPI8 bump Signed-off-by: Michael Mair-Keimberger levelnine.at> Signed-off-by: Florian Schmaus gentoo.org> dev-erlang/goldrush/goldrush-0.2.0-r1.ebuild | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/dev-erlang/goldrush/goldrush-0.2.0-r1.ebuild b/dev-erlang/goldrush/goldrush-0.2.0-r1.ebuild new file mode 100644 index 000000000000..3596ff5a5500 --- /dev/null +++ b/dev-erlang/goldrush/goldrush-0.2.0-r1.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit rebar + +DESCRIPTION="Small Erlang app that provides fast event stream processing" +HOMEPAGE="https://github.com/DeadZen/goldrush" +SRC_URI="https://github.com/DeadZen/${PN}/archive/${PV}.tar.gz + -> ${P}.tar.gz" + +LICENSE="ISC" +SLOT="0" +KEYWORDS="~amd64 ~arm ~ia64 ~ppc ~sparc ~x86" + +DEPEND=">=dev-lang/erlang-17.1" +RDEPEND="${DEPEND}" + +src_prepare() { + rebar_src_prepare + # 'priv' directory contains only edoc.css, but doc isn't going to be built. + rm -r "${S}/priv" || die +}