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 12AA8158094 for ; Wed, 29 Jun 2022 13:05:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4B43AE0C0E; Wed, 29 Jun 2022 13:05:09 +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 2340EE0C11 for ; Wed, 29 Jun 2022 13:05:09 +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 07FB4340F05 for ; Wed, 29 Jun 2022 13:05:08 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7B69051C for ; Wed, 29 Jun 2022 13:05:06 +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: <1656507902.2a822d80eca13a8711b1698a32391d2061069ff8.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/requests-futures/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/requests-futures/requests-futures-1.0.0.ebuild X-VCS-Directories: dev-python/requests-futures/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 2a822d80eca13a8711b1698a32391d2061069ff8 X-VCS-Branch: master Date: Wed, 29 Jun 2022 13:05:06 +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: eb36a39f-4561-4fcf-879a-086e228aa747 X-Archives-Hash: 2830f08b852aa73fe5025d3af2b32a81 commit: 2a822d80eca13a8711b1698a32391d2061069ff8 Author: Michał Górny gentoo org> AuthorDate: Wed Jun 29 11:25:26 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Wed Jun 29 13:05:02 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2a822d80 dev-python/requests-futures: Remove old Signed-off-by: Michał Górny gentoo.org> .../requests-futures/requests-futures-1.0.0.ebuild | 31 ---------------------- 1 file changed, 31 deletions(-) diff --git a/dev-python/requests-futures/requests-futures-1.0.0.ebuild b/dev-python/requests-futures/requests-futures-1.0.0.ebuild deleted file mode 100644 index bf53eea21a67..000000000000 --- a/dev-python/requests-futures/requests-futures-1.0.0.ebuild +++ /dev/null @@ -1,31 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{8..10} ) -PYTHON_REQ_USE="threads(+)" - -inherit distutils-r1 - -DESCRIPTION="Asynchronous Python HTTP for Humans" -HOMEPAGE="https://github.com/ross/requests-futures" -SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos" -RESTRICT="test" -PROPERTIES="test_network" - -RDEPEND=">=dev-python/requests-1.2.0[${PYTHON_USEDEP}]" - -distutils_enable_tests pytest - -EPYTEST_DESELECT=( - # known failures by upstream - # https://github.com/ross/requests-futures/issues/94 - test_requests_futures.py::RequestsTestCase::test_redirect - test_requests_futures.py::RequestsProcessPoolTestCase::test_futures_existing_session - test_requests_futures.py::RequestsProcessPoolTestCase::test_futures_session -)