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 D8CBE158094 for ; Wed, 22 Jun 2022 11:50:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B0807E085E; Wed, 22 Jun 2022 11:50:49 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 967ABE085E for ; Wed, 22 Jun 2022 11:50:49 +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 72556341B60 for ; Wed, 22 Jun 2022 11:50:48 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B473D456 for ; Wed, 22 Jun 2022 11:50:46 +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: <1655898634.a85e429f7730f1f4385286f9e6aa7f8b0041b7c5.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/requests-mock/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/requests-mock/requests-mock-1.9.3.ebuild X-VCS-Directories: dev-python/requests-mock/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: a85e429f7730f1f4385286f9e6aa7f8b0041b7c5 X-VCS-Branch: master Date: Wed, 22 Jun 2022 11:50:46 +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: 7ba020ed-5263-4384-923f-05da11c1f103 X-Archives-Hash: 7d0ba069d0a0d72dad620b108dab53ef commit: a85e429f7730f1f4385286f9e6aa7f8b0041b7c5 Author: Michał Górny gentoo org> AuthorDate: Wed Jun 22 11:40:18 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Wed Jun 22 11:50:34 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a85e429f dev-python/requests-mock: Remove old Signed-off-by: Michał Górny gentoo.org> .../requests-mock/requests-mock-1.9.3.ebuild | 44 ---------------------- 1 file changed, 44 deletions(-) diff --git a/dev-python/requests-mock/requests-mock-1.9.3.ebuild b/dev-python/requests-mock/requests-mock-1.9.3.ebuild deleted file mode 100644 index bbb1ed73affa..000000000000 --- a/dev-python/requests-mock/requests-mock-1.9.3.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( pypy3 python3_{8..10} ) -inherit distutils-r1 - -DESCRIPTION="Mock out responses from the requests package" -HOMEPAGE="https://github.com/jamielennox/requests-mock" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="amd64 ~arm arm64 ~ppc64 ~riscv x86" - -RDEPEND=" - >=dev-python/requests-2.3[${PYTHON_USEDEP}] - dev-python/six[${PYTHON_USEDEP}] -" -BDEPEND=" - >=dev-python/pbr-0.8[${PYTHON_USEDEP}] - test? ( - dev-python/fixtures[${PYTHON_USEDEP}] - dev-python/mock[${PYTHON_USEDEP}] - dev-python/pytest[${PYTHON_USEDEP}] - dev-python/testtools[${PYTHON_USEDEP}] - ) -" - -distutils_enable_sphinx doc/source -distutils_enable_tests pytest - -python_prepare_all() { - # Disable reno which only works inside a git repository - sed -i "s/'reno.sphinxext',//" doc/source/conf.py || die - # Remove the release notes section which requires reno - rm doc/source/release-notes.rst || die - sed -i '/^=============$/,/release-notes/d' doc/source/index.rst || die - # Disable a test which requires purl (not in the tree) - sed -i -e "/^import purl$/d" -e "s/test_with_purl/_&/" \ - tests/test_adapter.py || die - distutils-r1_python_prepare_all -}