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 931D7158041 for ; Wed, 6 Mar 2024 19:11:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DAB08E29D7; Wed, 6 Mar 2024 19:11:36 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id BD21CE29D7 for ; Wed, 6 Mar 2024 19:11:36 +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 CA1F9343026 for ; Wed, 6 Mar 2024 19:11:35 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 16350118C for ; Wed, 6 Mar 2024 19:11:34 +0000 (UTC) From: "Zac Medico" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Zac Medico" Message-ID: <1709752289.b76d223267731f6bb962739ddab67c6db821bdf8.zmedico@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/jpipe/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-misc/jpipe/jpipe-0.2.0-r1.ebuild X-VCS-Directories: app-misc/jpipe/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: b76d223267731f6bb962739ddab67c6db821bdf8 X-VCS-Branch: master Date: Wed, 6 Mar 2024 19:11:34 +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: 4c7332f0-00d9-421f-9815-4e3b8ba9a432 X-Archives-Hash: 3d682af0bad055a5fcb1294a358e57d3 commit: b76d223267731f6bb962739ddab67c6db821bdf8 Author: Zac Medico gentoo org> AuthorDate: Wed Mar 6 19:09:56 2024 +0000 Commit: Zac Medico gentoo org> CommitDate: Wed Mar 6 19:11:29 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b76d2232 app-misc/jpipe: enable py3.12 Signed-off-by: Zac Medico gentoo.org> app-misc/jpipe/jpipe-0.2.0-r1.ebuild | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app-misc/jpipe/jpipe-0.2.0-r1.ebuild b/app-misc/jpipe/jpipe-0.2.0-r1.ebuild index ac4e8aa09cd1..df98fabb80f0 100644 --- a/app-misc/jpipe/jpipe-0.2.0-r1.ebuild +++ b/app-misc/jpipe/jpipe-0.2.0-r1.ebuild @@ -4,7 +4,7 @@ EAPI=8 GO_OPTIONAL=1 DISTUTILS_OPTIONAL=1 -PYTHON_COMPAT=( python3_{10,11} ) +PYTHON_COMPAT=( python3_{10..12} ) DISTUTILS_USE_PEP517=setuptools inherit go-module distutils-r1 pypi @@ -65,6 +65,8 @@ python_prepare_all() { if ! use jp-symlink; then sed -e '/"jp = jpipe/d' -i setup.py || die fi + sed -e 's:entry_points()\["console_scripts"\]:entry_points().select(group="console_scripts"):' \ + -i lib/python/jpipe/cmd/main.py || die distutils-r1_python_prepare_all }