From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-1464898-garchives=archives.gentoo.org@lists.gentoo.org>
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 53BA4158003
	for <garchives@archives.gentoo.org>; Wed,  7 Dec 2022 16:00:03 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id 91C17E07EE;
	Wed,  7 Dec 2022 16:00:02 +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) server-digest SHA256)
	(No client certificate requested)
	by pigeon.gentoo.org (Postfix) with ESMTPS id 783DAE07EE
	for <gentoo-commits@lists.gentoo.org>; Wed,  7 Dec 2022 16:00:02 +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 3E46C3415B1
	for <gentoo-commits@lists.gentoo.org>; Wed,  7 Dec 2022 16:00:01 +0000 (UTC)
Received: from localhost.localdomain (localhost [IPv6:::1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id 9C45C785
	for <gentoo-commits@lists.gentoo.org>; Wed,  7 Dec 2022 15:59:58 +0000 (UTC)
From: "Michał Górny" <mgorny@gentoo.org>
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" <mgorny@gentoo.org>
Message-ID: <1670428785.85f99873f5526ac98cfc90960130259989ecd607.mgorny@gentoo>
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/qiskit-terra/
X-VCS-Repository: repo/gentoo
X-VCS-Files: dev-python/qiskit-terra/qiskit-terra-0.22.3-r1.ebuild dev-python/qiskit-terra/qiskit-terra-0.22.3.ebuild
X-VCS-Directories: dev-python/qiskit-terra/
X-VCS-Committer: mgorny
X-VCS-Committer-Name: Michał Górny
X-VCS-Revision: 85f99873f5526ac98cfc90960130259989ecd607
X-VCS-Branch: master
Date: Wed,  7 Dec 2022 15:59:58 +0000 (UTC)
Precedence: bulk
List-Post: <mailto:gentoo-commits@lists.gentoo.org>
List-Help: <mailto:gentoo-commits+help@lists.gentoo.org>
List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org>
List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org>
List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org>
X-BeenThere: gentoo-commits@lists.gentoo.org
X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply
X-Archives-Salt: 6f7b065d-7abd-4fbe-8df0-19006df3b475
X-Archives-Hash: 2d3de52a794d7c2fdbe18af2d2066a44

commit:     85f99873f5526ac98cfc90960130259989ecd607
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed Dec  7 15:24:11 2022 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed Dec  7 15:59:45 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=85f99873

dev-python/qiskit-terra: Fix install_requires for rustworkx

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 .../{qiskit-terra-0.22.3.ebuild => qiskit-terra-0.22.3-r1.ebuild}      | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/dev-python/qiskit-terra/qiskit-terra-0.22.3.ebuild b/dev-python/qiskit-terra/qiskit-terra-0.22.3-r1.ebuild
similarity index 97%
rename from dev-python/qiskit-terra/qiskit-terra-0.22.3.ebuild
rename to dev-python/qiskit-terra/qiskit-terra-0.22.3-r1.ebuild
index f014fae8ba47..b9c4cacc1c16 100644
--- a/dev-python/qiskit-terra/qiskit-terra-0.22.3.ebuild
+++ b/dev-python/qiskit-terra/qiskit-terra-0.22.3-r1.ebuild
@@ -141,7 +141,8 @@ QA_FLAGS_IGNORED="usr/lib.*/py.*/site-packages/qiskit/_accelerate.*.so"
 distutils_enable_tests pytest
 
 src_prepare() {
-	find -name '*.py' -exec sed -i -e 's:retworkx:rustworkx:' {} + || die
+	find '(' -name '*.py' -o -name 'requirements.txt' ')' \
+		-exec sed -i -e 's:retworkx:rustworkx:' {} + || die
 	distutils-r1_src_prepare
 }