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 ACD2F13829C for ; Tue, 7 Jun 2016 22:25:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E7DA814255; 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 295F41423F 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 8D465340D54 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 0171123F1 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: <1465338055.3a9ff2ea97300e7fbcaf525d858850de18f04053.aidecoe@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-erlang/stringprep/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-erlang/stringprep/Manifest dev-erlang/stringprep/metadata.xml dev-erlang/stringprep/stringprep-1.0.3.ebuild X-VCS-Directories: dev-erlang/stringprep/ X-VCS-Committer: aidecoe X-VCS-Committer-Name: Amadeusz Piotr Żołnowski X-VCS-Revision: 3a9ff2ea97300e7fbcaf525d858850de18f04053 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: c25a3411-dd99-4dab-ac07-885d3ec98aae X-Archives-Hash: 37287b12f949b5cacead968be369b18c commit: 3a9ff2ea97300e7fbcaf525d858850de18f04053 Author: Amadeusz Żołnowski gentoo org> AuthorDate: Mon Jun 6 22:19:46 2016 +0000 Commit: Amadeusz Piotr Żołnowski gentoo org> CommitDate: Tue Jun 7 22:20:55 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3a9ff2ea dev-erlang/stringprep: 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/stringprep/Manifest | 1 + dev-erlang/stringprep/metadata.xml | 13 +++++++++++++ dev-erlang/stringprep/stringprep-1.0.3.ebuild | 22 ++++++++++++++++++++++ 3 files changed, 36 insertions(+) diff --git a/dev-erlang/stringprep/Manifest b/dev-erlang/stringprep/Manifest new file mode 100644 index 0000000..8c6f122 --- /dev/null +++ b/dev-erlang/stringprep/Manifest @@ -0,0 +1 @@ +DIST stringprep-1.0.3.tar.gz 95189 SHA256 ec6c99adb3b9551993b6a6166a17af3d34f1ca5bd1cd16e728876764a1eab9f5 SHA512 a42ad55ddfe69f34025fb4ce8f357b13ca3f24449da7ca1e4dc5d78dd350d39530c39d1f3542fe0cba8081c6bc5d3441a606f227733d7a6d87d658a703a0feb1 WHIRLPOOL 890664f795b31d76f460e095750e0f3bec318fbc8db97910a83c95f05f6bc63ada7bab497ddb3231eccf60645a33cbea875bc20382baf40b1974e40ae6630c1d diff --git a/dev-erlang/stringprep/metadata.xml b/dev-erlang/stringprep/metadata.xml new file mode 100644 index 0000000..cabf338 --- /dev/null +++ b/dev-erlang/stringprep/metadata.xml @@ -0,0 +1,13 @@ + + + + + aidecoe@gentoo.org + Amadeusz Żołnowski + + + Stringprep is a framework for preparing Unicode test strings in order + to increase the likelihood that string input and string comparison + work. + + diff --git a/dev-erlang/stringprep/stringprep-1.0.3.ebuild b/dev-erlang/stringprep/stringprep-1.0.3.ebuild new file mode 100644 index 0000000..3bfc016 --- /dev/null +++ b/dev-erlang/stringprep/stringprep-1.0.3.ebuild @@ -0,0 +1,22 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +inherit rebar + +DESCRIPTION="Fast Stringprep implementation for Erlang and Elixir" +HOMEPAGE="https://github.com/processone/stringprep" +SRC_URI="https://github.com/processone/${PN}/archive/${PV}.tar.gz + -> ${P}.tar.gz" + +LICENSE="Apache-2.0 tcltk" +SLOT="0" +KEYWORDS="~amd64 ~arm ~ppc ~x86" + +DEPEND=">=dev-erlang/p1_utils-1.0.3 + >=dev-lang/erlang-17.1" +RDEPEND="${DEPEND}" + +DOCS=( CHANGELOG.md README.md )