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 12090158020 for ; Mon, 17 Oct 2022 05:28:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4F5C8E0867; Mon, 17 Oct 2022 05:28:57 +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 3A97BE0867 for ; Mon, 17 Oct 2022 05:28:57 +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 654263410F7 for ; Mon, 17 Oct 2022 05:28:56 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0CB38620 for ; Mon, 17 Oct 2022 05:28:55 +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: <1665984530.e50f1938154bbb8f24f2127a56a9f81e3d2ba046.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/vine/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/vine/vine-5.0.0-r1.ebuild X-VCS-Directories: dev-python/vine/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: e50f1938154bbb8f24f2127a56a9f81e3d2ba046 X-VCS-Branch: master Date: Mon, 17 Oct 2022 05:28:55 +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: 2955e7a0-0f8c-4b11-92e5-1bd0507ed0ee X-Archives-Hash: 1f1bee2561fb8a9e2e3d99f06e4d6dd9 commit: e50f1938154bbb8f24f2127a56a9f81e3d2ba046 Author: Michał Górny gentoo org> AuthorDate: Mon Oct 17 05:08:53 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Mon Oct 17 05:28:50 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e50f1938 dev-python/vine: Remove the dep on dev-python/case Signed-off-by: Michał Górny gentoo.org> dev-python/vine/vine-5.0.0-r1.ebuild | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/dev-python/vine/vine-5.0.0-r1.ebuild b/dev-python/vine/vine-5.0.0-r1.ebuild index 95ef0d3d5b0b..43c22bd3a3f1 100644 --- a/dev-python/vine/vine-5.0.0-r1.ebuild +++ b/dev-python/vine/vine-5.0.0-r1.ebuild @@ -19,10 +19,13 @@ LICENSE="BSD" SLOT="0" KEYWORDS="amd64 ~arm64 x86" -BDEPEND=" - test? ( - >=dev-python/case-1.3.1[${PYTHON_USEDEP}] - ) -" - distutils_enable_tests pytest + +src_prepare() { + # remove the dep on dead dev-python/case package + sed -i -e 's:from case:from unittest.mock:' t/unit/*.py || die + # also removed upstream + rm t/unit/conftest.py || die + + distutils-r1_src_prepare +}