From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-1661260-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) server-digest SHA256)
	(No client certificate requested)
	by finch.gentoo.org (Postfix) with ESMTPS id 911C9159C9B
	for <garchives@archives.gentoo.org>; Mon, 12 Aug 2024 23:17:16 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id BF2EEE2B44;
	Mon, 12 Aug 2024 23:17:15 +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 A2C72E2B50
	for <gentoo-commits@lists.gentoo.org>; Mon, 12 Aug 2024 23:17:15 +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 A15E7343016
	for <gentoo-commits@lists.gentoo.org>; Mon, 12 Aug 2024 23:17:14 +0000 (UTC)
Received: from localhost.localdomain (localhost [IPv6:::1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id D25CA1EDA
	for <gentoo-commits@lists.gentoo.org>; Mon, 12 Aug 2024 23:17:12 +0000 (UTC)
From: "Lucio Sauer" <watermanpaint@posteo.net>
To: gentoo-commits@lists.gentoo.org
Content-Transfer-Encoding: 8bit
Content-type: text/plain; charset=UTF-8
Reply-To: gentoo-dev@lists.gentoo.org, "Lucio Sauer" <watermanpaint@posteo.net>
Message-ID: <1723504332.d6f2c0a5b4112b744edbea65d3d0b18a8ed337c1.watermanpaint@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.ebuild
X-VCS-Directories: dev-python/jpype/
X-VCS-Committer: watermanpaint
X-VCS-Committer-Name: Lucio Sauer
X-VCS-Revision: d6f2c0a5b4112b744edbea65d3d0b18a8ed337c1
X-VCS-Branch: dev
Date: Mon, 12 Aug 2024 23:17:12 +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: ca549d32-e3ba-4071-91dd-302c794c2f5f
X-Archives-Hash: 56354f30e998000cc77884c8902732c1

commit:     d6f2c0a5b4112b744edbea65d3d0b18a8ed337c1
Author:     Lucio Sauer <watermanpaint <AT> posteo <DOT> net>
AuthorDate: Mon Aug 12 23:12:12 2024 +0000
Commit:     Lucio Sauer <watermanpaint <AT> posteo <DOT> net>
CommitDate: Mon Aug 12 23:12:12 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=d6f2c0a5

dev-python/jpype: QA fixups

- unquoted S
- static version in SRC_URI
- description too long
- unconsistent indentation

Signed-off-by: Lucio Sauer <watermanpaint <AT> posteo.net>

 dev-python/jpype/jpype-1.5.0.ebuild | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/dev-python/jpype/jpype-1.5.0.ebuild b/dev-python/jpype/jpype-1.5.0.ebuild
index 66f80d3a4..c1732409a 100644
--- a/dev-python/jpype/jpype-1.5.0.ebuild
+++ b/dev-python/jpype/jpype-1.5.0.ebuild
@@ -8,9 +8,9 @@ PYTHON_COMPAT=( python3_{10..12} )
 
 inherit distutils-r1
 
-DESCRIPTION="Cross-language bridge to allow Python programs full access to Java class libraries"
+DESCRIPTION="Bridge to allow Python programs full access to Java class libraries"
 HOMEPAGE="https://github.com/jpype-project/jpype/"
-SRC_URI="https://github.com/jpype-project/jpype/releases/download/v1.5.0/JPype1-1.5.0.tar.gz "
+SRC_URI="https://github.com/jpype-project/jpype/releases/download/v${PV}/JPype1-${PV}.tar.gz "
 S=${WORKDIR}/JPype1-${PV}
 
 LICENSE="Apache-2.0"
@@ -25,10 +25,10 @@ distutils_enable_tests pytest
 # To be deleted after resolution of
 # https://bugs.gentoo.org/937642
 _distutils-r1_post_python_install() {
-    local keep
+	local keep
 }
 
 src_prepare() {
-    sed -i "s/'-g0', //g;s/, '-O2'//g"  ${S}/setupext/platform.py
-    default
+	sed -i "s/'-g0', //g;s/, '-O2'//g"  "${S}"/setupext/platform.py || die
+	default
 }


From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-1661417-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 5DBE5159C9B
	for <garchives@archives.gentoo.org>; Tue, 13 Aug 2024 15:39:40 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id 30013E2BA7;
	Tue, 13 Aug 2024 15:39:39 +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 0D16CE2BA4
	for <gentoo-commits@lists.gentoo.org>; Tue, 13 Aug 2024 15:39:39 +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 C57CF343090
	for <gentoo-commits@lists.gentoo.org>; Tue, 13 Aug 2024 15:39:37 +0000 (UTC)
Received: from localhost.localdomain (localhost [IPv6:::1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id E93C41EE9
	for <gentoo-commits@lists.gentoo.org>; Tue, 13 Aug 2024 15:39:34 +0000 (UTC)
From: "Lucio Sauer" <watermanpaint@posteo.net>
To: gentoo-commits@lists.gentoo.org
Content-Transfer-Encoding: 8bit
Content-type: text/plain; charset=UTF-8
Reply-To: gentoo-dev@lists.gentoo.org, "Lucio Sauer" <watermanpaint@posteo.net>
Message-ID: <1723504332.d6f2c0a5b4112b744edbea65d3d0b18a8ed337c1.watermanpaint@gentoo>
Subject: [gentoo-commits] repo/proj/guru:master commit in: dev-python/jpype/
X-VCS-Repository: repo/proj/guru
X-VCS-Files: dev-python/jpype/jpype-1.5.0.ebuild
X-VCS-Directories: dev-python/jpype/
X-VCS-Committer: watermanpaint
X-VCS-Committer-Name: Lucio Sauer
X-VCS-Revision: d6f2c0a5b4112b744edbea65d3d0b18a8ed337c1
X-VCS-Branch: master
Date: Tue, 13 Aug 2024 15:39:34 +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: eb13eea8-8906-403c-939f-9ada440bc055
X-Archives-Hash: 715c258066a7946a7c98fbf6bbd14980
Message-ID: <20240813153934.JcPiAYsAfIGt8SsM-6PlG5LjPpZvXXp448ZNTvDg4d4@z>

commit:     d6f2c0a5b4112b744edbea65d3d0b18a8ed337c1
Author:     Lucio Sauer <watermanpaint <AT> posteo <DOT> net>
AuthorDate: Mon Aug 12 23:12:12 2024 +0000
Commit:     Lucio Sauer <watermanpaint <AT> posteo <DOT> net>
CommitDate: Mon Aug 12 23:12:12 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=d6f2c0a5

dev-python/jpype: QA fixups

- unquoted S
- static version in SRC_URI
- description too long
- unconsistent indentation

Signed-off-by: Lucio Sauer <watermanpaint <AT> posteo.net>

 dev-python/jpype/jpype-1.5.0.ebuild | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/dev-python/jpype/jpype-1.5.0.ebuild b/dev-python/jpype/jpype-1.5.0.ebuild
index 66f80d3a4..c1732409a 100644
--- a/dev-python/jpype/jpype-1.5.0.ebuild
+++ b/dev-python/jpype/jpype-1.5.0.ebuild
@@ -8,9 +8,9 @@ PYTHON_COMPAT=( python3_{10..12} )
 
 inherit distutils-r1
 
-DESCRIPTION="Cross-language bridge to allow Python programs full access to Java class libraries"
+DESCRIPTION="Bridge to allow Python programs full access to Java class libraries"
 HOMEPAGE="https://github.com/jpype-project/jpype/"
-SRC_URI="https://github.com/jpype-project/jpype/releases/download/v1.5.0/JPype1-1.5.0.tar.gz "
+SRC_URI="https://github.com/jpype-project/jpype/releases/download/v${PV}/JPype1-${PV}.tar.gz "
 S=${WORKDIR}/JPype1-${PV}
 
 LICENSE="Apache-2.0"
@@ -25,10 +25,10 @@ distutils_enable_tests pytest
 # To be deleted after resolution of
 # https://bugs.gentoo.org/937642
 _distutils-r1_post_python_install() {
-    local keep
+	local keep
 }
 
 src_prepare() {
-    sed -i "s/'-g0', //g;s/, '-O2'//g"  ${S}/setupext/platform.py
-    default
+	sed -i "s/'-g0', //g;s/, '-O2'//g"  "${S}"/setupext/platform.py || die
+	default
 }