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 374E515808B 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 79E71E088C; Sun, 27 Feb 2022 18:58:51 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 53F98E088C 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 60D2934352B 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 0084A2DD 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: <1645988133.ef8147f8ed6c5306872b481a1301fad646ea4fa5.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/hyperlink/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/hyperlink/hyperlink-21.0.0.ebuild X-VCS-Directories: dev-python/hyperlink/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: ef8147f8ed6c5306872b481a1301fad646ea4fa5 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: 76bb5e76-1564-4df2-9666-715424138a6f X-Archives-Hash: 628481cc46ef6ba00e2fb5e9241db245 commit: ef8147f8ed6c5306872b481a1301fad646ea4fa5 Author: Michał Górny gentoo org> AuthorDate: Sun Feb 27 18:55:33 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Sun Feb 27 18:55:33 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ef8147f8 dev-python/hyperlink: Remove old Signed-off-by: Michał Górny gentoo.org> dev-python/hyperlink/hyperlink-21.0.0.ebuild | 25 ------------------------- 1 file changed, 25 deletions(-) diff --git a/dev-python/hyperlink/hyperlink-21.0.0.ebuild b/dev-python/hyperlink/hyperlink-21.0.0.ebuild deleted file mode 100644 index 45ffb2446234..000000000000 --- a/dev-python/hyperlink/hyperlink-21.0.0.ebuild +++ /dev/null @@ -1,25 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( pypy3 python3_{8..10} ) -inherit distutils-r1 - -DESCRIPTION="A featureful, correct URL for Python" -HOMEPAGE="https://github.com/python-hyper/hyperlink https://pypi.org/project/hyperlink/" -SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" - -LICENSE="BSD MIT" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos" - -RDEPEND="dev-python/idna[${PYTHON_USEDEP}]" - -distutils_enable_tests pytest - -src_test() { - # suppresses hypothesis health checks - local -x CI=1 - distutils-r1_src_test -}