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 8ED1113829C for ; Tue, 7 Jun 2016 22:25:11 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EDECB254028; Tue, 7 Jun 2016 22:24:59 +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 4DD64254023 for ; Tue, 7 Jun 2016 22:24:58 +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 A6AB4340D50 for ; Tue, 7 Jun 2016 22:24:56 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7B93A233A for ; Tue, 7 Jun 2016 22:24:50 +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: <1465338040.3cea428be442ccb7c68c492421e8d16c5d34334b.aidecoe@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-erlang/p1_utils/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-erlang/p1_utils/Manifest dev-erlang/p1_utils/metadata.xml dev-erlang/p1_utils/p1_utils-1.0.4.ebuild X-VCS-Directories: dev-erlang/p1_utils/ X-VCS-Committer: aidecoe X-VCS-Committer-Name: Amadeusz Piotr Żołnowski X-VCS-Revision: 3cea428be442ccb7c68c492421e8d16c5d34334b X-VCS-Branch: master Date: Tue, 7 Jun 2016 22:24:50 +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: 16dc6279-ec09-4c0c-b79b-05e3355b0af2 X-Archives-Hash: 00237634679703d45f0434589993730a commit: 3cea428be442ccb7c68c492421e8d16c5d34334b Author: Amadeusz Żołnowski gentoo org> AuthorDate: Mon Jun 6 22:17:56 2016 +0000 Commit: Amadeusz Piotr Żołnowski gentoo org> CommitDate: Tue Jun 7 22:20:40 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3cea428b dev-erlang/p1_utils: 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/p1_utils/Manifest | 1 + dev-erlang/p1_utils/metadata.xml | 12 ++++++++++++ dev-erlang/p1_utils/p1_utils-1.0.4.ebuild | 21 +++++++++++++++++++++ 3 files changed, 34 insertions(+) diff --git a/dev-erlang/p1_utils/Manifest b/dev-erlang/p1_utils/Manifest new file mode 100644 index 0000000..8226210 --- /dev/null +++ b/dev-erlang/p1_utils/Manifest @@ -0,0 +1 @@ +DIST p1_utils-1.0.4.tar.gz 44082 SHA256 3fb5157f1c1cc22c992b2b6541a95cedafbc1a2a5f6ae7abca3707150ff557f5 SHA512 a86da4d5201ea9fa16574e4351f5f4ba32eb36fb61feb20231e4ee7c9bfe03a12724b6b50777adc65319055c29b8a3313c9fe72263089ad8a4c8b7ba9f30a3b8 WHIRLPOOL 1f989a9e0fdae2f0b0528df83b0c82317532436fd38c25317e771e213d2951a77206d279d841457ee07d6149eab50af0f84baea94d720fb155d432d14982fc1d diff --git a/dev-erlang/p1_utils/metadata.xml b/dev-erlang/p1_utils/metadata.xml new file mode 100644 index 0000000..bbe6a6e --- /dev/null +++ b/dev-erlang/p1_utils/metadata.xml @@ -0,0 +1,12 @@ + + + + + aidecoe@gentoo.org + Amadeusz Żołnowski + + + p1_utils is an application containing ProcessOne modules and tools that + are leveraged in other development projects. + + diff --git a/dev-erlang/p1_utils/p1_utils-1.0.4.ebuild b/dev-erlang/p1_utils/p1_utils-1.0.4.ebuild new file mode 100644 index 0000000..b6f2e17 --- /dev/null +++ b/dev-erlang/p1_utils/p1_utils-1.0.4.ebuild @@ -0,0 +1,21 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +inherit rebar + +DESCRIPTION="Erlang utility modules from ProcessOne" +HOMEPAGE="https://github.com/processone/p1_utils" +SRC_URI="https://github.com/processone/${PN}/archive/${PV}.tar.gz + -> ${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~arm ~ppc ~x86" + +DEPEND=">=dev-lang/erlang-17.1" +RDEPEND="${DEPEND}" + +DOCS=( CHANGELOG.md README.md )