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 82FA215808B for ; Thu, 31 Mar 2022 12:42:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AEAD0E081A; Thu, 31 Mar 2022 12:42:26 +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 9072FE081A for ; Thu, 31 Mar 2022 12:42:26 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 6FDB63411D0 for ; Thu, 31 Mar 2022 12:42:25 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B9FAF34C for ; Thu, 31 Mar 2022 12:42: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: <1648730535.4a43837de18a869d47c8710498105ef985ac4fe6.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/aioresponses/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/aioresponses/aioresponses-0.7.3.ebuild X-VCS-Directories: dev-python/aioresponses/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 4a43837de18a869d47c8710498105ef985ac4fe6 X-VCS-Branch: master Date: Thu, 31 Mar 2022 12:42: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: 3baefe85-b86b-4b3c-a1ad-a8ed2bf29227 X-Archives-Hash: 30e078096ebb114595a9a26bec0dcc9d commit: 4a43837de18a869d47c8710498105ef985ac4fe6 Author: Michał Górny gentoo org> AuthorDate: Thu Mar 31 12:40:51 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Thu Mar 31 12:42:15 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4a43837d dev-python/aioresponses: Remove old Signed-off-by: Michał Górny gentoo.org> dev-python/aioresponses/aioresponses-0.7.3.ebuild | 36 ----------------------- 1 file changed, 36 deletions(-) diff --git a/dev-python/aioresponses/aioresponses-0.7.3.ebuild b/dev-python/aioresponses/aioresponses-0.7.3.ebuild deleted file mode 100644 index 929183849024..000000000000 --- a/dev-python/aioresponses/aioresponses-0.7.3.ebuild +++ /dev/null @@ -1,36 +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} ) - -inherit distutils-r1 - -DESCRIPTION="Helper to mock/fake web requests in Python's aiohttp package" -HOMEPAGE="https://github.com/pnuckowski/aioresponses" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="amd64 x86" - -RDEPEND="dev-python/aiohttp[${PYTHON_USEDEP}]" -BDEPEND=" - dev-python/pbr[${PYTHON_USEDEP}] - test? ( - dev-python/ddt[${PYTHON_USEDEP}] - ) -" - -distutils_enable_sphinx docs -distutils_enable_tests pytest - -python_test() { - local deselect=( - # These tests require Internet access - tests/test_aioresponses.py::AIOResponsesTestCase::test_address_as_instance_of_url_combined_with_pass_through - tests/test_aioresponses.py::AIOResponsesTestCase::test_pass_through_with_origin_params - ) - epytest ${deselect[@]/#/--deselect } -}