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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 875B315808C for ; Sun, 27 Feb 2022 18:58:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8FB32E0896; Sun, 27 Feb 2022 18:58:51 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 7A00FE0896 for ; Sun, 27 Feb 2022 18:58:51 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id AB0DA343531 for ; Sun, 27 Feb 2022 18:58:50 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 27C432FA for ; Sun, 27 Feb 2022 18:58:49 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1645988185.d4e722610dda74a1ac956a219c97e71bfcf8cc5d.mgorny@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/rfc3986-validator-0.1.1.ebuild X-VCS-Directories: dev-python/rfc3986-validator/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: d4e722610dda74a1ac956a219c97e71bfcf8cc5d X-VCS-Branch: master Date: Sun, 27 Feb 2022 18:58:49 +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: 6dab746b-7d47-4e9c-a9d7-04b34ab40218 X-Archives-Hash: 724628afe8676f5ecfdbd21cf6212751 commit: d4e722610dda74a1ac956a219c97e71bfcf8cc5d Author: Michał Górny gentoo org> AuthorDate: Sun Feb 27 18:56:25 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Sun Feb 27 18:56:25 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d4e72261 dev-python/rfc3986-validator: Remove old Signed-off-by: Michał Górny gentoo.org> .../rfc3986-validator-0.1.1.ebuild | 32 ---------------------- 1 file changed, 32 deletions(-) diff --git a/dev-python/rfc3986-validator/rfc3986-validator-0.1.1.ebuild b/dev-python/rfc3986-validator/rfc3986-validator-0.1.1.ebuild deleted file mode 100644 index 3ca733d8ec05..000000000000 --- a/dev-python/rfc3986-validator/rfc3986-validator-0.1.1.ebuild +++ /dev/null @@ -1,32 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -PYTHON_COMPAT=( python3_{8..10} pypy3 ) - -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" -S=${WORKDIR}/${MY_P} - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86" - -RDEPEND="dev-python/rfc3987[${PYTHON_USEDEP}]" -BDEPEND="test? ( dev-python/hypothesis[${PYTHON_USEDEP}] )" - -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 -}