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 D1FC7158086 for ; Fri, 17 Dec 2021 09:15:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 829122BC054; Fri, 17 Dec 2021 09:15:08 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 609FB2BC056 for ; Fri, 17 Dec 2021 09:15:08 +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 0FEDB342D5A for ; Fri, 17 Dec 2021 09:15:06 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 484E9253 for ; Fri, 17 Dec 2021 09:15:03 +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: <1639732494.871cb08043f6e09cc8245bf2f19aeabee882f475.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/tempest/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/tempest/tempest-29.2.0.ebuild X-VCS-Directories: dev-python/tempest/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 871cb08043f6e09cc8245bf2f19aeabee882f475 X-VCS-Branch: master Date: Fri, 17 Dec 2021 09:15:03 +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: 145e63ac-970b-45fa-b5fb-28b9cb57510a X-Archives-Hash: a8f6e990ec1a49d7a59ba2423e80caaf commit: 871cb08043f6e09cc8245bf2f19aeabee882f475 Author: Michał Górny gentoo org> AuthorDate: Fri Dec 17 08:54:39 2021 +0000 Commit: Michał Górny gentoo org> CommitDate: Fri Dec 17 09:14:54 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=871cb080 dev-python/tempest: Remove the test dep on hacking Signed-off-by: Michał Górny gentoo.org> dev-python/tempest/tempest-29.2.0.ebuild | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/dev-python/tempest/tempest-29.2.0.ebuild b/dev-python/tempest/tempest-29.2.0.ebuild index bf5bd503d06a..3f46371369ef 100644 --- a/dev-python/tempest/tempest-29.2.0.ebuild +++ b/dev-python/tempest/tempest-29.2.0.ebuild @@ -36,7 +36,6 @@ RDEPEND=" BDEPEND=" >dev-python/pbr-2.1.0[${PYTHON_USEDEP}] test? ( - dev-python/hacking[${PYTHON_USEDEP}] >=dev-python/oslotest-3.2.0[${PYTHON_USEDEP}] dev-python/stestr[${PYTHON_USEDEP}] ) @@ -51,6 +50,9 @@ src_prepare() { rm tempest/tests/test_list_tests.py || die rm tempest/tests/lib/cmd/test_check_uuid.py || die + # remove dep on hacking + rm tempest/tests/test_hacking.py || die + distutils-r1_src_prepare }