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 3D313158086 for ; Fri, 17 Dec 2021 09:15:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3A8022BC044; Fri, 17 Dec 2021 09:15:08 +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 572ED2BC044 for ; Fri, 17 Dec 2021 09:15:07 +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 01FF3342B81 for ; Fri, 17 Dec 2021 09:15:04 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 034A7246 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: <1639732492.df7179b6273416b3454782ccf6c4bbab1e7d8be3.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/keystoneauth/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/keystoneauth/keystoneauth-4.4.0.ebuild X-VCS-Directories: dev-python/keystoneauth/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: df7179b6273416b3454782ccf6c4bbab1e7d8be3 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: dd5c3c1e-75ae-460d-ba00-e6e3548a3048 X-Archives-Hash: 8d0ce37afd0678c42aef37556ed78030 commit: df7179b6273416b3454782ccf6c4bbab1e7d8be3 Author: Michał Górny gentoo org> AuthorDate: Fri Dec 17 08:14:44 2021 +0000 Commit: Michał Górny gentoo org> CommitDate: Fri Dec 17 09:14:52 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=df7179b6 dev-python/keystoneauth: Remove the test dep on hacking Signed-off-by: Michał Górny gentoo.org> dev-python/keystoneauth/keystoneauth-4.4.0.ebuild | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dev-python/keystoneauth/keystoneauth-4.4.0.ebuild b/dev-python/keystoneauth/keystoneauth-4.4.0.ebuild index 22f4c3cc4606..1ea4600cfbf7 100644 --- a/dev-python/keystoneauth/keystoneauth-4.4.0.ebuild +++ b/dev-python/keystoneauth/keystoneauth-4.4.0.ebuild @@ -27,7 +27,6 @@ BDEPEND="${CDEPEND} test? ( >=dev-python/betamax-0.7.0[${PYTHON_USEDEP}] >=dev-python/fixtures-3.0.0[${PYTHON_USEDEP}] - dev-python/hacking[${PYTHON_USEDEP}] >=dev-python/lxml-4.2.0[${PYTHON_USEDEP}] >=dev-python/oauthlib-0.6.2[${PYTHON_USEDEP}] >=dev-python/oslo-config-5.2.0[${PYTHON_USEDEP}] @@ -46,6 +45,8 @@ src_prepare() { # relies on specific test runner name sed -i -e 's:run\.py:unittest_or_fail.py:' \ keystoneauth1/tests/unit/test_session.py || die + # remove the test that requires hacking + rm keystoneauth1/tests/unit/test_hacking_checks.py || die distutils-r1_src_prepare }