From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id BFD2113829C for ; Tue, 7 Jun 2016 22:25:02 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 299EA254020; Tue, 7 Jun 2016 22:24:58 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id BB8A5254020 for ; Tue, 7 Jun 2016 22:24:56 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C8DA2340D46 for ; Tue, 7 Jun 2016 22:24:55 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AF6A6208F for ; Tue, 7 Jun 2016 22:24:49 +0000 (UTC) From: "Amadeusz Piotr Żołnowski" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Amadeusz Piotr Żołnowski" Message-ID: <1465338017.b44fc8380fd32c25bf7c23528a6fa117e31a69b6.aidecoe@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-erlang/goldrush/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-erlang/goldrush/Manifest dev-erlang/goldrush/goldrush-0.1.8.1.ebuild dev-erlang/goldrush/metadata.xml X-VCS-Directories: dev-erlang/goldrush/ X-VCS-Committer: aidecoe X-VCS-Committer-Name: Amadeusz Piotr Żołnowski X-VCS-Revision: b44fc8380fd32c25bf7c23528a6fa117e31a69b6 X-VCS-Branch: master Date: Tue, 7 Jun 2016 22:24:49 +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: dada8574-abbf-43d9-b97e-4aef4639b388 X-Archives-Hash: ccf8c86d75ddca53c6ad7dd1b65c5d78 commit: b44fc8380fd32c25bf7c23528a6fa117e31a69b6 Author: Amadeusz Żołnowski gentoo org> AuthorDate: Mon Jun 6 22:15:07 2016 +0000 Commit: Amadeusz Piotr Żołnowski gentoo org> CommitDate: Tue Jun 7 22:20:17 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b44fc838 dev-erlang/goldrush: Add new package It is debundled from net-im/ejabberd-16.04 and therefore inherits keywords from ejabberd: ~amd64, ~arm, ~ppc and ~x86. ~ia64 and ~sparc are not inherited because other dependency is missing these keywords and there's no chance it can get them any time soon. Package-Manager: portage-2.3.0_rc1 dev-erlang/goldrush/Manifest | 1 + dev-erlang/goldrush/goldrush-0.1.8.1.ebuild | 32 +++++++++++++++++++++++++++++ dev-erlang/goldrush/metadata.xml | 8 ++++++++ 3 files changed, 41 insertions(+) diff --git a/dev-erlang/goldrush/Manifest b/dev-erlang/goldrush/Manifest new file mode 100644 index 0000000..8f68583 --- /dev/null +++ b/dev-erlang/goldrush/Manifest @@ -0,0 +1 @@ +DIST goldrush-0.1.8.1.tar.gz 22050 SHA256 75bd74818a6f3c0162696de4803c6b48266a987bbf94fa6857680495d6b4870a SHA512 291b340ad67e09e1bb92d97844fee9d0cc87abe19fb9a9bdae382c407bfd41c0269562fce5716133e8db8e4f1340dbb9bda24b57130ba89b3713d85ba6c4a007 WHIRLPOOL 118474f6aa7c8d944ef38fade8ea5227b6716bb1280fe3b141b2533a679ccd4ee541d54690e84845694f9104310f7550ded6030e5b7ba19a1740243512e1534c diff --git a/dev-erlang/goldrush/goldrush-0.1.8.1.ebuild b/dev-erlang/goldrush/goldrush-0.1.8.1.ebuild new file mode 100644 index 0000000..c6eaaac --- /dev/null +++ b/dev-erlang/goldrush/goldrush-0.1.8.1.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +inherit rebar + +MY_PV="${PV%.*}-${PV##*.}" +MY_P="${PN}-${MY_PV}" + +DESCRIPTION="Small Erlang app that provides fast event stream processing" +HOMEPAGE="https://github.com/DeadZen/goldrush" +SRC_URI="https://github.com/DeadZen/${PN}/archive/${MY_PV}.tar.gz + -> ${P}.tar.gz" + +LICENSE="ISC" +SLOT="0" +KEYWORDS="~amd64 ~arm ~ppc ~x86" + +DEPEND=">=dev-lang/erlang-17.1" +RDEPEND="${DEPEND}" + +DOCS=( README.org ) + +S="${WORKDIR}/${MY_P}" + +src_prepare() { + rebar_src_prepare + # 'priv' directory contains only edoc.css, but doc isn't going to be built. + rm -r "${S}/priv" +} diff --git a/dev-erlang/goldrush/metadata.xml b/dev-erlang/goldrush/metadata.xml new file mode 100644 index 0000000..674f5ad --- /dev/null +++ b/dev-erlang/goldrush/metadata.xml @@ -0,0 +1,8 @@ + + + + + aidecoe@gentoo.org + Amadeusz Żołnowski + +