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 3698F13829C for ; Tue, 7 Jun 2016 22:25:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8E76E14252; Tue, 7 Jun 2016 22:25:01 +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 5A3AA25404C for ; Tue, 7 Jun 2016 22:24:59 +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 90345340D55 for ; Tue, 7 Jun 2016 22:24:57 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 131662407 for ; Tue, 7 Jun 2016 22:24:51 +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: <1465338057.e2cb4a31fc4a3bb100948247f58612d62483f81b.aidecoe@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-erlang/stun/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-erlang/stun/Manifest dev-erlang/stun/metadata.xml dev-erlang/stun/stun-1.0.3.ebuild X-VCS-Directories: dev-erlang/stun/ X-VCS-Committer: aidecoe X-VCS-Committer-Name: Amadeusz Piotr Żołnowski X-VCS-Revision: e2cb4a31fc4a3bb100948247f58612d62483f81b X-VCS-Branch: master Date: Tue, 7 Jun 2016 22:24:51 +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: e4332e47-6e65-42ad-a52c-79c2ee784c42 X-Archives-Hash: 5b42d01d54cd431616381a436157dd09 commit: e2cb4a31fc4a3bb100948247f58612d62483f81b Author: Amadeusz Żołnowski gentoo org> AuthorDate: Mon Jun 6 22:20:01 2016 +0000 Commit: Amadeusz Piotr Żołnowski gentoo org> CommitDate: Tue Jun 7 22:20:57 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e2cb4a31 dev-erlang/stun: 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/stun/Manifest | 1 + dev-erlang/stun/metadata.xml | 8 ++++++++ dev-erlang/stun/stun-1.0.3.ebuild | 23 +++++++++++++++++++++++ 3 files changed, 32 insertions(+) diff --git a/dev-erlang/stun/Manifest b/dev-erlang/stun/Manifest new file mode 100644 index 0000000..f8e8d26 --- /dev/null +++ b/dev-erlang/stun/Manifest @@ -0,0 +1 @@ +DIST stun-1.0.3.tar.gz 28646 SHA256 aae567e4322c8bce604b50cdd41e7634d6047300ef67308199d81aff77d9992f SHA512 c15918f4b1f81477a7834dc5ba837fcd512249bda569cf3ffd3066056e6f1abacfeab3d0dde575402291d841f257a3b33e27d6c76250ae353d77e3fdd87f9786 WHIRLPOOL 9028eed54f0ae62e8ecfb760ae1a94ea834fd397ab35e4332ea2d1b158271809414e21bed60ff9c936e9637e60d107b49a0f30032f3fc40ee97421e20012bb1e diff --git a/dev-erlang/stun/metadata.xml b/dev-erlang/stun/metadata.xml new file mode 100644 index 0000000..674f5ad --- /dev/null +++ b/dev-erlang/stun/metadata.xml @@ -0,0 +1,8 @@ + + + + + aidecoe@gentoo.org + Amadeusz Żołnowski + + diff --git a/dev-erlang/stun/stun-1.0.3.ebuild b/dev-erlang/stun/stun-1.0.3.ebuild new file mode 100644 index 0000000..a469dda --- /dev/null +++ b/dev-erlang/stun/stun-1.0.3.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +inherit rebar + +DESCRIPTION="STUN and TURN library for Erlang and Elixir" +HOMEPAGE="https://github.com/processone/stun" +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-erlang/fast_tls-1.0.0 + >=dev-erlang/p1_utils-1.0.2 + >=dev-lang/erlang-17.1" +RDEPEND="${DEPEND}" + +DOCS=( CHANGELOG.md README.md )