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 5EFA9158091 for ; Thu, 16 Jun 2022 09:23:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5DAF2E0978; Thu, 16 Jun 2022 09:23:27 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 47678E0978 for ; Thu, 16 Jun 2022 09:23:27 +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 EC8B4341FDB for ; Thu, 16 Jun 2022 09:23:25 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 45C6550D for ; Thu, 16 Jun 2022 09:23:23 +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: <1655371284.47e4bedd284f1b2e9874e6cefceed93310be5ba1.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/httpretty/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/httpretty/httpretty-1.1.4.ebuild X-VCS-Directories: dev-python/httpretty/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 47e4bedd284f1b2e9874e6cefceed93310be5ba1 X-VCS-Branch: master Date: Thu, 16 Jun 2022 09:23:23 +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: 81457ddd-40db-49c6-9a3f-00bc1f73cc8e X-Archives-Hash: c91e2c94d9e204627585adcd604ab494 commit: 47e4bedd284f1b2e9874e6cefceed93310be5ba1 Author: Michał Górny gentoo org> AuthorDate: Thu Jun 16 09:21:24 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Thu Jun 16 09:21:24 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=47e4bedd dev-python/httpretty: Remove old Signed-off-by: Michał Górny gentoo.org> dev-python/httpretty/httpretty-1.1.4.ebuild | 42 ----------------------------- 1 file changed, 42 deletions(-) diff --git a/dev-python/httpretty/httpretty-1.1.4.ebuild b/dev-python/httpretty/httpretty-1.1.4.ebuild deleted file mode 100644 index ebb43b2a8e5d..000000000000 --- a/dev-python/httpretty/httpretty-1.1.4.ebuild +++ /dev/null @@ -1,42 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{8..10} ) -inherit distutils-r1 - -DESCRIPTION="HTTP client mock for Python" -HOMEPAGE="https://github.com/gabrielfalcao/httpretty" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -SLOT="0" -LICENSE="MIT" -KEYWORDS="amd64 arm arm64 ppc ppc64 ~riscv sparc x86" - -RDEPEND=" - dev-python/urllib3[${PYTHON_USEDEP}]" -# eventlet is used only to test compat, and it doesn't support py3.10 -# redis skipped as it requires a redis server running -BDEPEND=" - test? ( - >=dev-python/boto3-1.17.72[${PYTHON_USEDEP}] - dev-python/freezegun[${PYTHON_USEDEP}] - dev-python/httplib2[${PYTHON_USEDEP}] - >=dev-python/httpx-0.18.1[${PYTHON_USEDEP}] - dev-python/pyopenssl[${PYTHON_USEDEP}] - >=dev-python/requests-1.1[${PYTHON_USEDEP}] - dev-python/sure[${PYTHON_USEDEP}] - >=www-servers/tornado-2.2[${PYTHON_USEDEP}] -)" - -distutils_enable_tests nose - -python_prepare_all() { - # remove useless deps - sed -i -e '/rednose/d' setup.cfg || die - # tests requiring network access - rm tests/functional/test_passthrough.py || die - - distutils-r1_python_prepare_all -}