commit:     5424ae7d183c99806f3361207d4f3ba2bfa6ef71
Author:     Maciej Barć <xgqt <AT> gentoo <DOT> org>
AuthorDate: Sun Feb 11 23:14:57 2024 +0000
Commit:     Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Sun Feb 11 23:23:13 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5424ae7d

dev-lang/closure-compiler-bin: bump to EAPI 8; tweaks

Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>

 ...ild => closure-compiler-bin-20211107-r1.ebuild} | 27 +++++++++++++---------
 1 file changed, 16 insertions(+), 11 deletions(-)

diff --git a/dev-lang/closure-compiler-bin/closure-compiler-bin-20211107.ebuild 
b/dev-lang/closure-compiler-bin/closure-compiler-bin-20211107-r1.ebuild
similarity index 50%
rename from dev-lang/closure-compiler-bin/closure-compiler-bin-20211107.ebuild
rename to dev-lang/closure-compiler-bin/closure-compiler-bin-20211107-r1.ebuild
index caecdb89ffdd..1790b462aa70 100644
--- a/dev-lang/closure-compiler-bin/closure-compiler-bin-20211107.ebuild
+++ b/dev-lang/closure-compiler-bin/closure-compiler-bin-20211107-r1.ebuild
@@ -1,7 +1,7 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=7
+EAPI=8
 
 inherit java-pkg-2
 
@@ -9,16 +9,18 @@ MY_PN="${PN%-bin}"
 MY_P="${MY_PN}-v${PV}"
 
 DESCRIPTION="JavaScript optimizing compiler"
-HOMEPAGE="https://developers.google.com/closure/compiler/ 
https://github.com/google/closure-compiler";
+HOMEPAGE="https://developers.google.com/closure/compiler/
+       https://github.com/google/closure-compiler/";
 
SRC_URI="https://repo1.maven.org/maven2/com/google/javascript/${MY_PN}/v${PV}/${MY_P}.jar";
+S="${WORKDIR}"
 
 LICENSE="Apache-2.0"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
 
-RDEPEND=">=virtual/jre-1.8"
-
-S="${WORKDIR}"
+RDEPEND="
+       >=virtual/jre-1.8:*
+"
 
 src_unpack() {
        :
@@ -29,10 +31,13 @@ src_compile() {
 }
 
 src_install() {
-       java-pkg_jarinto /opt/${PN}-${SLOT}/lib
-       java-pkg_newjar "${DISTDIR}"/${MY_P}.jar ${PN}.jar
-       java-pkg_dolauncher \
-               ${MY_PN} \
-               --jar /opt/${PN}-${SLOT}/lib/${PN}.jar \
+       java-pkg_jarinto "/opt/${PN}-${SLOT}/lib"
+       java-pkg_newjar "${DISTDIR}/${MY_P}.jar" "${PN}.jar"
+
+       local -a dolauncher_opts=(
+               "${MY_PN}"
+               --jar "/opt/${PN}-${SLOT}/lib/${PN}.jar"
                -into /opt
+       )
+       java-pkg_dolauncher "${dolauncher_opts[@]}"
 }

Reply via email to