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 07476158091 for ; Thu, 16 Jun 2022 11:24:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9A1F1E08E5; Thu, 16 Jun 2022 11:24:18 +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 8FAC6E08E5 for ; Thu, 16 Jun 2022 11:24:17 +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 782CE342092 for ; Thu, 16 Jun 2022 11:24:16 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9156850C for ; Thu, 16 Jun 2022 11:24:13 +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: <1655378647.1a50bc5f79d6c0580a3f22c55cd46d0c4839d9c0.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/webtest/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/webtest/webtest-3.0.0.ebuild X-VCS-Directories: dev-python/webtest/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 1a50bc5f79d6c0580a3f22c55cd46d0c4839d9c0 X-VCS-Branch: master Date: Thu, 16 Jun 2022 11:24:13 +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: a349c7b6-7237-4dad-a692-e180cfd8d873 X-Archives-Hash: 77e685adea3a6cd51ad3e8634b4bc1c5 commit: 1a50bc5f79d6c0580a3f22c55cd46d0c4839d9c0 Author: Michał Górny gentoo org> AuthorDate: Thu Jun 16 11:15:48 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Thu Jun 16 11:24:07 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1a50bc5f dev-python/webtest: Remove old Signed-off-by: Michał Górny gentoo.org> dev-python/webtest/webtest-3.0.0.ebuild | 41 --------------------------------- 1 file changed, 41 deletions(-) diff --git a/dev-python/webtest/webtest-3.0.0.ebuild b/dev-python/webtest/webtest-3.0.0.ebuild deleted file mode 100644 index 8a826aad32b8..000000000000 --- a/dev-python/webtest/webtest-3.0.0.ebuild +++ /dev/null @@ -1,41 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{8..10} pypy3 ) -inherit distutils-r1 - -MY_PN="WebTest" -MY_P="${MY_PN}-${PV}" - -DESCRIPTION="Helper to test WSGI applications" -HOMEPAGE="https://pypi.org/project/WebTest/" -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 ~loong ppc ppc64 ~riscv ~s390 sparc x86 ~x64-macos" -IUSE="test" -RESTRICT="!test? ( test )" - -RDEPEND=" - dev-python/paste[${PYTHON_USEDEP}] - dev-python/pastedeploy[${PYTHON_USEDEP}] - >=dev-python/webob-1.2[${PYTHON_USEDEP}] - >=dev-python/waitress-0.8.5[${PYTHON_USEDEP}] - dev-python/beautifulsoup4[${PYTHON_USEDEP}]" -BDEPEND=" - app-arch/unzip - test? ( - dev-python/pyquery[${PYTHON_USEDEP}] - dev-python/wsgiproxy2[${PYTHON_USEDEP}] - )" - -PATCHES=( - "${FILESDIR}/webtest-2.0.33-no-pylons-theme.patch" -) - -distutils_enable_sphinx docs -distutils_enable_tests pytest