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 586DC13829C for ; Tue, 7 Jun 2016 22:25:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 792D525403A; 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 4E648254023 for ; Tue, 7 Jun 2016 22:24:57 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 76D17340D41 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 363E82324 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: <1465338032.ff26cc6cad6d7330526e5275916b526e01cd89fa.aidecoe@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-erlang/p1_mysql/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-erlang/p1_mysql/Manifest dev-erlang/p1_mysql/metadata.xml dev-erlang/p1_mysql/p1_mysql-1.0.1.ebuild X-VCS-Directories: dev-erlang/p1_mysql/ X-VCS-Committer: aidecoe X-VCS-Committer-Name: Amadeusz Piotr Żołnowski X-VCS-Revision: ff26cc6cad6d7330526e5275916b526e01cd89fa 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: ef62de33-9c1c-44b8-beb8-e86e74b8b0fc X-Archives-Hash: 776b7360eaa9453318784487d655064d commit: ff26cc6cad6d7330526e5275916b526e01cd89fa Author: Amadeusz Żołnowski gentoo org> AuthorDate: Mon Jun 6 22:16:55 2016 +0000 Commit: Amadeusz Piotr Żołnowski gentoo org> CommitDate: Tue Jun 7 22:20:32 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ff26cc6c dev-erlang/p1_mysql: 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_mysql/Manifest | 1 + dev-erlang/p1_mysql/metadata.xml | 8 ++++++++ dev-erlang/p1_mysql/p1_mysql-1.0.1.ebuild | 21 +++++++++++++++++++++ 3 files changed, 30 insertions(+) diff --git a/dev-erlang/p1_mysql/Manifest b/dev-erlang/p1_mysql/Manifest new file mode 100644 index 0000000..9e1bb57 --- /dev/null +++ b/dev-erlang/p1_mysql/Manifest @@ -0,0 +1 @@ +DIST p1_mysql-1.0.1.tar.gz 19329 SHA256 6e06df41e3ceef6f6896b621a6f8158e19d3d204c585439b2ca466b8243a051d SHA512 2e5d3baa255ab7b6d3271e633793bfb265648b260c104256980a1229ea20bf3701d8f665f65fb4785272ea7e4e6a346a262ffbf609de10aec6d8029ef1d4f567 WHIRLPOOL 9c8d772594b1a0fabb44b5efbd912d1dc2284bf596a99fe7ff47415bdf6a7f0b350539b49e50c65360b4fb0c9ca05b0a81d0a2453998cbff22883d3175d590d4 diff --git a/dev-erlang/p1_mysql/metadata.xml b/dev-erlang/p1_mysql/metadata.xml new file mode 100644 index 0000000..674f5ad --- /dev/null +++ b/dev-erlang/p1_mysql/metadata.xml @@ -0,0 +1,8 @@ + + + + + aidecoe@gentoo.org + Amadeusz Żołnowski + + diff --git a/dev-erlang/p1_mysql/p1_mysql-1.0.1.ebuild b/dev-erlang/p1_mysql/p1_mysql-1.0.1.ebuild new file mode 100644 index 0000000..cca0150 --- /dev/null +++ b/dev-erlang/p1_mysql/p1_mysql-1.0.1.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="Pure Erlang MySQL driver" +HOMEPAGE="https://github.com/processone/p1_mysql" +SRC_URI="https://github.com/processone/${PN}/archive/${PV}.tar.gz + -> ${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~arm ~ppc ~x86" + +DEPEND=">=dev-lang/erlang-17.1" +RDEPEND="${DEPEND}" + +DOCS=( CHANGELOG.md README.md )