From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 884D1138334 for ; Sat, 23 Nov 2019 22:42:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C0779E07B3; Sat, 23 Nov 2019 22:41:59 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 913E6E07B3 for ; Sat, 23 Nov 2019 22:41:59 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 0B88834D287 for ; Sat, 23 Nov 2019 22:41:58 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 02F725FF for ; Sat, 23 Nov 2019 22:41:56 +0000 (UTC) From: "Patrick McLean" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Patrick McLean" Message-ID: <1574548903.b57c8664fd5a16940ffc1e869c58127f7e33086a.chutzpah@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/rfc3986-validator/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/rfc3986-validator/Manifest dev-python/rfc3986-validator/metadata.xml dev-python/rfc3986-validator/rfc3986-validator-0.1.1.ebuild X-VCS-Directories: dev-python/rfc3986-validator/ X-VCS-Committer: chutzpah X-VCS-Committer-Name: Patrick McLean X-VCS-Revision: b57c8664fd5a16940ffc1e869c58127f7e33086a X-VCS-Branch: master Date: Sat, 23 Nov 2019 22:41:56 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 984f86bb-bd7a-415f-a8ae-93eb681a2f97 X-Archives-Hash: 18b8465796a6f30486317f67959de789 commit: b57c8664fd5a16940ffc1e869c58127f7e33086a Author: Patrick McLean sony com> AuthorDate: Sat Nov 23 22:41:43 2019 +0000 Commit: Patrick McLean gentoo org> CommitDate: Sat Nov 23 22:41:43 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b57c8664 dev-python/rfc3986-validator: New package Copyright: Sony Interactive Entertainment Inc. Package-Manager: Portage-2.3.79, Repoman-2.3.18 Signed-off-by: Patrick McLean gentoo.org> dev-python/rfc3986-validator/Manifest | 1 + dev-python/rfc3986-validator/metadata.xml | 11 ++++++++ .../rfc3986-validator-0.1.1.ebuild | 32 ++++++++++++++++++++++ 3 files changed, 44 insertions(+) diff --git a/dev-python/rfc3986-validator/Manifest b/dev-python/rfc3986-validator/Manifest new file mode 100644 index 00000000000..e280a2ff5aa --- /dev/null +++ b/dev-python/rfc3986-validator/Manifest @@ -0,0 +1 @@ +DIST rfc3986_validator-0.1.1.tar.gz 6760 BLAKE2B e54b54c296310043f67a1187a110c6a34423f79a73dc64898d6d11d03eaca213b38da4722640595994bdd459bc1bc12c326d2e1f731e1846cdd723e232408e8b SHA512 b679e3c1b38d9ecc633d7d9a7179711d5adc50d38a51f28972f668e098058b92ec9f69e947fab7eaa3863377f35c3f13e5fd1ae35da2175a01170f2940360c2f diff --git a/dev-python/rfc3986-validator/metadata.xml b/dev-python/rfc3986-validator/metadata.xml new file mode 100644 index 00000000000..3a6387e94f0 --- /dev/null +++ b/dev-python/rfc3986-validator/metadata.xml @@ -0,0 +1,11 @@ + + + + + python@gentoo.org + + + rfc3986-validator + naimetti/rfc3986-validator + + diff --git a/dev-python/rfc3986-validator/rfc3986-validator-0.1.1.ebuild b/dev-python/rfc3986-validator/rfc3986-validator-0.1.1.ebuild new file mode 100644 index 00000000000..7931e4b1342 --- /dev/null +++ b/dev-python/rfc3986-validator/rfc3986-validator-0.1.1.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +PYTHON_COMPAT=( python{2_7,3_{5,6,7,8}} pypy{,3} ) + +inherit distutils-r1 + +# 0.1.1 isn't tagged on GitHub +COMMIT_HASH="ee3dcca0df300e0584e129a4ab81828be002684b" +MY_PN="${PN//-/_}" +MY_P="${MY_PN}-${PV}" + +DESCRIPTION="Pure python RFC3986 validator" +HOMEPAGE="https://pypi.org/project/rfc3986-validator/ https://github.com/naimetti/rfc3986-validator" +SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND="dev-python/rfc3987[${PYTHON_USEDEP}]" + +S="${WORKDIR}/${MY_P}" + +distutils_enable_tests pytest + +python_prepare_all() { + # remove dep on pytest-runner + sed -i -r "s:('|\")pytest-runner('|\")(,|)::" setup.py || die + distutils-r1_python_prepare_all +}