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

Signed-off-by: Maciej Barć <xgqt@gentoo.org>
This commit is contained in:
Maciej Barć
2025-04-16 09:17:25 +02:00
parent ecd66ed03a
commit 75dfc0bc97
2 changed files with 0 additions and 44 deletions

View File

@@ -1,2 +1 @@
DIST closure-compiler-v20240317.jar 13984957 BLAKE2B cc9fd9e7dca6a95e62fe6d922dfad90d654ddddf15cd001c75a60ea5a893cea20e59d70b9a053d6b69853fc16c249c5994b2cff093838ff3fa79af0d5964313b SHA512 7bf276195fc6857e491cc16b12b33e1da55988c634ec5fea34d5b67e11e6caed91afff1d81bd91d77863200301f098549526d543be9c54eee4550bc20791a295
DIST closure-compiler-v20250402.jar 14062314 BLAKE2B f1c422e9240797b65355404eade63bd50ee04fae4d022052bcc0fd85485163e905e1b5f7357b18b9d70ca8592c31db9114d7c2f0aeb02cf256d7ab4e3f9301da SHA512 9669f7e816781b018c298749a50b638cc739bb079a6831355f7f02e5228393184af420bbe56537255188067ac22983f3ca266d687d25e4a1ffbdacf0bbb69b71

View File

@@ -1,43 +0,0 @@
# Copyright 1999-2024 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/"
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:*
"
src_unpack() {
:
}
src_compile() {
:
}
src_install() {
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[@]}"
}