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 0CB6B158090 for ; Sun, 15 May 2022 10:41:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 465DAE093D; Sun, 15 May 2022 10:41:18 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 31A4DE093D for ; Sun, 15 May 2022 10:41:18 +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 14E12335D0F for ; Sun, 15 May 2022 10:41:16 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 446E4105 for ; Sun, 15 May 2022 10:41:14 +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: <1652611251.c5695989ae51ea4c8d6a428beee0ea3350df11d1.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pytest-toolbox/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pytest-toolbox/pytest-toolbox-0.4.ebuild X-VCS-Directories: dev-python/pytest-toolbox/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: c5695989ae51ea4c8d6a428beee0ea3350df11d1 X-VCS-Branch: master Date: Sun, 15 May 2022 10:41:14 +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: 3e8fa83e-15db-47f9-a8e1-2439265b1beb X-Archives-Hash: 84e0a533ef302a56fe0588d7facae731 commit: c5695989ae51ea4c8d6a428beee0ea3350df11d1 Author: Michał Górny gentoo org> AuthorDate: Sun May 15 10:21:10 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Sun May 15 10:40:51 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c5695989 dev-python/pytest-toolbox: Remove old Signed-off-by: Michał Górny gentoo.org> .../pytest-toolbox/pytest-toolbox-0.4.ebuild | 32 ---------------------- 1 file changed, 32 deletions(-) diff --git a/dev-python/pytest-toolbox/pytest-toolbox-0.4.ebuild b/dev-python/pytest-toolbox/pytest-toolbox-0.4.ebuild deleted file mode 100644 index 373a1f591ddd..000000000000 --- a/dev-python/pytest-toolbox/pytest-toolbox-0.4.ebuild +++ /dev/null @@ -1,32 +0,0 @@ -# Copyright 2021-2022 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="Numerous useful plugins for pytest" -HOMEPAGE="https://pypi.org/project/pytest-toolbox/ https://github.com/samuelcolvin/pytest-toolbox/" -SRC_URI=" - https://github.com/samuelcolvin/pytest-toolbox/archive/v${PV}.tar.gz - -> ${P}.gh.tar.gz -" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="amd64 arm arm64 hppa ppc ppc64 ~riscv sparc x86" - -BDEPEND=" - test? ( - dev-python/pydantic[${PYTHON_USEDEP}] - ) -" - -distutils_enable_tests pytest - -src_prepare() { - sed -e '/addopts/d' -i setup.cfg || die - distutils-r1_src_prepare -}