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 (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id DC1F4158042 for ; Thu, 14 Nov 2024 11:22:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 77CB0E08C8; Thu, 14 Nov 2024 11:22:19 +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 5BA4DE08C8 for ; Thu, 14 Nov 2024 11:22:19 +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 C9F57342FEB for ; Thu, 14 Nov 2024 11:22:17 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 36D961CA7 for ; Thu, 14 Nov 2024 11:22:16 +0000 (UTC) From: "Ivan Lloro" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ivan Lloro" Message-ID: <1731583334.26f25a93d2125c7199090003476ea727a128230d.ivan.lloro.boada@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-python/jpype/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-python/jpype/jpype-1.5.0-r1.ebuild dev-python/jpype/jpype-1.5.0.ebuild X-VCS-Directories: dev-python/jpype/ X-VCS-Committer: ivan.lloro.boada X-VCS-Committer-Name: Ivan Lloro X-VCS-Revision: 26f25a93d2125c7199090003476ea727a128230d X-VCS-Branch: dev Date: Thu, 14 Nov 2024 11:22:16 +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: 95b6c1ed-56bb-44f0-9de3-45f122f8288b X-Archives-Hash: 8ab7bbac6426c9ae405a2288d8204fd3 commit: 26f25a93d2125c7199090003476ea727a128230d Author: Ivan Lloro gmail com> AuthorDate: Thu Nov 14 11:21:57 2024 +0000 Commit: Ivan Lloro gmail com> CommitDate: Thu Nov 14 11:22:14 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=26f25a93 dev-python/jpype: Added missing dependency. Enabled Python 3.13. Signed-off-by: Ivan Lloro gmail.com> dev-python/jpype/{jpype-1.5.0.ebuild => jpype-1.5.0-r1.ebuild} | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/dev-python/jpype/jpype-1.5.0.ebuild b/dev-python/jpype/jpype-1.5.0-r1.ebuild similarity index 87% rename from dev-python/jpype/jpype-1.5.0.ebuild rename to dev-python/jpype/jpype-1.5.0-r1.ebuild index 2f6768ca8..6a12d7c39 100644 --- a/dev-python/jpype/jpype-1.5.0.ebuild +++ b/dev-python/jpype/jpype-1.5.0-r1.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{10..12} ) +PYTHON_COMPAT=( python3_{10..13} ) inherit distutils-r1 @@ -17,7 +17,10 @@ LICENSE="Apache-2.0" SLOT="0" KEYWORDS="~amd64" -RDEPEND="virtual/jdk" +RDEPEND=" + dev-python/gpep517 + virtual/jdk +" src_prepare() { sed -i "s/'-g0', //g;s/, '-O2'//g" "${S}"/setupext/platform.py || die