dev-lang/closure-compiler-bin: drop old 20250706

Signed-off-by: Maciej Barć <xgqt@gentoo.org>
This commit is contained in:
Maciej Barć
2025-10-23 22:18:26 +02:00
parent 8812bc6b5e
commit 8b83082d75
2 changed files with 0 additions and 51 deletions

View File

@@ -1,2 +1 @@
DIST closure-compiler-bin-20250706.maven.jar 14046635 BLAKE2B ea7c55cbffeff5692fe8902b733c008224db6e7483224c7f947500e91064121f0e1288dd341d02c5d23e244630290838e4c343f3b8fa8f60fe58531a29c418ed SHA512 14a1b08e2d822580a4921b18cc7a3e68c34a41d315a53f4ca0c3e1e50b00ca969b207e8062f42413005805350a752f85ebd22fceb4ac1c7bd212f5ba9d8b1a94
DIST closure-compiler-bin-20250820.maven.jar 14080764 BLAKE2B 17f0d4f7240e5d2deb5f1daf2d771b5cc655ab491ae0189958cd90491d1da50d32ce88adb86e8a6141c357f5c289933ba187029250f326c682e3b094b192cd5e SHA512 c2f8a1278e64fd9b0421ecfc763037ced5f2609c6561c4a1822f544f2ed9d98d7989a50a92f0d8e33a2c68a87609ec833f4fdef622cbcb094d349843250619ef

View File

@@ -1,50 +0,0 @@
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit java-pkg-2
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/"
MAVEN_REPO="https://repo1.maven.org/maven2"
SRC_URI="
${MAVEN_REPO}/com/google/javascript/${MY_PN}/v${PV}/${MY_P}.jar
-> ${P}.maven.jar
"
S="${WORKDIR}"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="amd64 ~x86"
RDEPEND="
>=virtual/jre-1.8:*
"
src_unpack() {
:
}
src_compile() {
:
}
src_install() {
local jar_dir="/opt/${PN}-${SLOT}/lib"
java-pkg_jarinto "${jar_dir}"
java-pkg_newjar "${DISTDIR}/${P}.maven.jar" "${PN}.jar"
local -a dolauncher_opts=(
"${MY_PN}"
--jar "${jar_dir}/${PN}.jar"
-into /opt
)
java-pkg_dolauncher "${dolauncher_opts[@]}"
}