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 9C16F15800F for ; Tue, 7 Feb 2023 14:50:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D7357E07A9; Tue, 7 Feb 2023 14:50:50 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 B9A4AE07A9 for ; Tue, 7 Feb 2023 14:50:50 +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 97523340D21 for ; Tue, 7 Feb 2023 14:50:49 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E15C2895 for ; Tue, 7 Feb 2023 14:50:46 +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: <1675781206.b4f5b919fa681b54de41de184f80a6ef36242a2e.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/isort/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/isort/isort-5.11.4.ebuild X-VCS-Directories: dev-python/isort/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: b4f5b919fa681b54de41de184f80a6ef36242a2e X-VCS-Branch: master Date: Tue, 7 Feb 2023 14:50:46 +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: e6315aa7-c253-4b98-8de8-e4ab31b901e4 X-Archives-Hash: bb613c38cac83fbd3e2c28eb00be064b commit: b4f5b919fa681b54de41de184f80a6ef36242a2e Author: Michał Górny gentoo org> AuthorDate: Tue Feb 7 14:46:04 2023 +0000 Commit: Michał Górny gentoo org> CommitDate: Tue Feb 7 14:46:46 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b4f5b919 dev-python/isort: Fix poetry syntax error in 5.11.4 Closes: https://bugs.gentoo.org/892679 Signed-off-by: Michał Górny gentoo.org> dev-python/isort/isort-5.11.4.ebuild | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dev-python/isort/isort-5.11.4.ebuild b/dev-python/isort/isort-5.11.4.ebuild index 86119ad4b7f7..426bfd0652b3 100644 --- a/dev-python/isort/isort-5.11.4.ebuild +++ b/dev-python/isort/isort-5.11.4.ebuild @@ -45,6 +45,8 @@ src_prepare() { rm -r isort/_vendored || die # leftover toml import used to determine .toml support sed -i -e 's:import toml:toml = True:' tests/unit/test_isort.py || die + # syntax error that triggers with new poetry-core + sed -i -e 's:pip-shims<=0.3.4:pip-shims:' pyproject.toml || die distutils-r1_src_prepare }