From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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 finch.gentoo.org (Postfix) with ESMTPS id 4AB7C1582EF for ; Sat, 08 Mar 2025 14:57:59 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (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) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 3676E342FED for ; Sat, 08 Mar 2025 14:57:59 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 22023110105; Sat, 08 Mar 2025 14:57:58 +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 bobolink.gentoo.org (Postfix) with ESMTPS id 15E8B110105 for ; Sat, 08 Mar 2025 14:57:58 +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 BDF92342F8C for ; Sat, 08 Mar 2025 14:57:57 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 57F32280C for ; Sat, 08 Mar 2025 14:57:56 +0000 (UTC) From: "Arthur Zamarin" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Arthur Zamarin" Message-ID: <1741445865.8b4f6695aead6e4649a70d8ab86b69e189cd2d04.arthurzam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-java/javatoolkit/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-java/javatoolkit/javatoolkit-0.6.8.ebuild X-VCS-Directories: dev-java/javatoolkit/ X-VCS-Committer: arthurzam X-VCS-Committer-Name: Arthur Zamarin X-VCS-Revision: 8b4f6695aead6e4649a70d8ab86b69e189cd2d04 X-VCS-Branch: master Date: Sat, 08 Mar 2025 14:57:56 +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: 541a5e20-23ce-4837-9f9f-d1cbdc8f2212 X-Archives-Hash: 9a3c1cf58215f450cd4809904731dd87 commit: 8b4f6695aead6e4649a70d8ab86b69e189cd2d04 Author: Andrei Horodniceanu proton me> AuthorDate: Sat Mar 8 14:27:31 2025 +0000 Commit: Arthur Zamarin gentoo org> CommitDate: Sat Mar 8 14:57:45 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8b4f6695 dev-java/javatoolkit: fix eprefix support Avoid the double-prefix error and don't call hprefixify on files that don't exist. Note that the findclass.py script is broken with dev-java/java-config:2 so patching it is somewhat pointless. Bug: https://bugs.gentoo.org/354105 Signed-off-by: Andrei Horodniceanu proton.me> Closes: https://github.com/gentoo/gentoo/pull/40963 Signed-off-by: Arthur Zamarin gentoo.org> dev-java/javatoolkit/javatoolkit-0.6.8.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-java/javatoolkit/javatoolkit-0.6.8.ebuild b/dev-java/javatoolkit/javatoolkit-0.6.8.ebuild index 9eaa654d62bf..d90254aa1f53 100644 --- a/dev-java/javatoolkit/javatoolkit-0.6.8.ebuild +++ b/dev-java/javatoolkit/javatoolkit-0.6.8.ebuild @@ -20,7 +20,7 @@ KEYWORDS="~amd64 ~arm64 ~ppc64 ~sparc ~amd64-linux ~x86-linux ~ppc-macos ~x64-ma distutils_enable_tests unittest python_prepare_all() { - hprefixify src/py/buildparser src/py/findclass setup.py + hprefixify src/${PN}/scripts/findclass.py distutils-r1_python_prepare_all } @@ -36,6 +36,6 @@ src_install() { local script for script in *; do rm "${script}" || die - dosym -r /usr/lib/python-exec/python-exec2 "${EPREFIX}/usr/libexec/${PN}/${script}" + dosym -r /usr/lib/python-exec/python-exec2 "/usr/libexec/${PN}/${script}" done }