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 392E2158094 for ; Tue, 4 Oct 2022 09:40:55 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 843DBE0943; Tue, 4 Oct 2022 09:40:54 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 6F720E0943 for ; Tue, 4 Oct 2022 09:40:54 +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 BD92F33BECA for ; Tue, 4 Oct 2022 09:40:53 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0D708608 for ; Tue, 4 Oct 2022 09:40:51 +0000 (UTC) From: "Florian Schmaus" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Florian Schmaus" Message-ID: <1664876320.8fe090165234ed95ebb0c756ee2aa9e88d65761e.flow@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-java/felix-framework/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-java/felix-framework/felix-framework-7.0.5.ebuild X-VCS-Directories: dev-java/felix-framework/ X-VCS-Committer: flow X-VCS-Committer-Name: Florian Schmaus X-VCS-Revision: 8fe090165234ed95ebb0c756ee2aa9e88d65761e X-VCS-Branch: master Date: Tue, 4 Oct 2022 09:40:51 +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: b4642061-be74-4296-8e16-4af6d1cbfaa5 X-Archives-Hash: 4aca0145d543413170cf5da985d0d693 commit: 8fe090165234ed95ebb0c756ee2aa9e88d65761e Author: Florian Schmaus gentoo org> AuthorDate: Tue Oct 4 09:34:21 2022 +0000 Commit: Florian Schmaus gentoo org> CommitDate: Tue Oct 4 09:38:40 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8fe09016 dev-java/felix-framework: lowercase local variable name Signed-off-by: Florian Schmaus gentoo.org> dev-java/felix-framework/felix-framework-7.0.5.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-java/felix-framework/felix-framework-7.0.5.ebuild b/dev-java/felix-framework/felix-framework-7.0.5.ebuild index e80a2eac3786..a8a67fa28876 100644 --- a/dev-java/felix-framework/felix-framework-7.0.5.ebuild +++ b/dev-java/felix-framework/felix-framework-7.0.5.ebuild @@ -87,9 +87,9 @@ src_compile() { # according to pom.xml, line 129 # grep the line between and from pom.xml - local ADD_OPENS="$( sed -n '//,/<\/Add-opens/p' pom.xml \ + local add_opens="$(sed -n '//,/<\/Add-opens/p' pom.xml \ | grep -v Add-opens | tr -s '[:space:]')" || die - echo "Add-opens:${ADD_OPENS}" > "${T}/Add-opens-to-MANIFEST.MF" \ + echo "Add-opens:${add_opens}" > "${T}/Add-opens-to-MANIFEST.MF" \ || die "Add-opens-to-MANIFEST.MF failed" jar ufmv ${JAVA_JAR_FILENAME} "${T}/Add-opens-to-MANIFEST.MF" \ || die "updating MANIFEST.MF failed"