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 1A04913825A for ; Fri, 13 May 2016 14:18:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7673BE07C9; Fri, 13 May 2016 14:18:35 +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 06239E07B3 for ; Fri, 13 May 2016 14:18:34 +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 B2DF1340739 for ; Fri, 13 May 2016 14:18:33 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1705ED6 for ; Fri, 13 May 2016 14:18:31 +0000 (UTC) From: "Alexis Ballier" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alexis Ballier" Message-ID: <1463149032.09721f2b31c77aed06ff96da4c1a6b32a1ea00df.aballier@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/rfc3987/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/rfc3987/Manifest dev-python/rfc3987/metadata.xml dev-python/rfc3987/rfc3987-1.3.5.ebuild X-VCS-Directories: dev-python/rfc3987/ X-VCS-Committer: aballier X-VCS-Committer-Name: Alexis Ballier X-VCS-Revision: 09721f2b31c77aed06ff96da4c1a6b32a1ea00df X-VCS-Branch: master Date: Fri, 13 May 2016 14:18:31 +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: d62fecea-1e0c-4bd1-bea1-3d952cd9ceed X-Archives-Hash: f0d713a9005af79df3be1a774db89129 commit: 09721f2b31c77aed06ff96da4c1a6b32a1ea00df Author: Alexis Ballier gentoo org> AuthorDate: Fri May 13 14:17:12 2016 +0000 Commit: Alexis Ballier gentoo org> CommitDate: Fri May 13 14:17:12 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=09721f2b dev-python/rfc3987: initial import; ebuild by me Package-Manager: portage-2.2.28 dev-python/rfc3987/Manifest | 1 + dev-python/rfc3987/metadata.xml | 16 ++++++++++++++++ dev-python/rfc3987/rfc3987-1.3.5.ebuild | 27 +++++++++++++++++++++++++++ 3 files changed, 44 insertions(+) diff --git a/dev-python/rfc3987/Manifest b/dev-python/rfc3987/Manifest new file mode 100644 index 0000000..de435ba --- /dev/null +++ b/dev-python/rfc3987/Manifest @@ -0,0 +1 @@ +DIST rfc3987-1.3.5.tar.gz 8509 SHA256 ed37b839553370971a1d5cd53392206206c56ea550d435ef45e6d94e7df50697 SHA512 66d74daa1653e9dfa0d8968229baa865935a8bf633504171ba9b208fddc936402184bce20828cbe90fec787a941faad0224675cd1db555cf614bfe83dca6b3f7 WHIRLPOOL 4a2b93e0c0437c835be38814ed1d8672530e19dc099bd0f0a340ba87ca55d2632239eb63cfc72586538ec813f37e79d13cae740a3a812110152833a9197b0db5 diff --git a/dev-python/rfc3987/metadata.xml b/dev-python/rfc3987/metadata.xml new file mode 100644 index 0000000..1f3c7f9 --- /dev/null +++ b/dev-python/rfc3987/metadata.xml @@ -0,0 +1,16 @@ + + + + + aballier@gentoo.org + Alexis Ballier + Python team can take the package if they wish. + + + python@gentoo.org + Python + + + rfc3987 + + diff --git a/dev-python/rfc3987/rfc3987-1.3.5.ebuild b/dev-python/rfc3987/rfc3987-1.3.5.ebuild new file mode 100644 index 0000000..894306e --- /dev/null +++ b/dev-python/rfc3987/rfc3987-1.3.5.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +PYTHON_COMPAT=( python2_7 python3_{3,4,5} ) + +inherit distutils-r1 + +DESCRIPTION="Parsing and validation of URIs (RFC 3986) and IRIs (RFC 3987)" +HOMEPAGE="https://github.com/dgerber/rfc3987 http://pypi.python.org/pypi/rfc3987" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64" +IUSE="test" + +RDEPEND="dev-python/regex[${PYTHON_USEDEP}]" +DEPEND="${RDEPEND} + dev-python/setuptools[${PYTHON_USEDEP}] +" + +python_test() { + ${EPYTHON} -m doctest -v "${S}/${PN}.py" || die +}