summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVolkmar W. Pogatzki <gentoo@pogatzki.net>2024-08-05 06:04:36 +0200
committerMaciej Barć <xgqt@gentoo.org>2024-08-05 10:59:59 +0200
commite547dbaa235081ec3a6951defbd8d6608a7276e7 (patch)
tree7e86e3a6131cf68ec9ad518db2867ae28c614d8d /dev-lisp
parentdev-lang/zig: fix building with `doc` USE-flag enabled on 9999 (diff)
downloadgentoo-e547dbaa235081ec3a6951defbd8d6608a7276e7.tar.gz
gentoo-e547dbaa235081ec3a6951defbd8d6608a7276e7.tar.bz2
gentoo-e547dbaa235081ec3a6951defbd8d6608a7276e7.zip
dev-lisp/abcl: drop 1.9.2
Bug: https://github.com/gentoo/gentoo/pull/37963 Signed-off-by: Volkmar W. Pogatzki <gentoo@pogatzki.net> Signed-off-by: Maciej Barć <xgqt@gentoo.org>
Diffstat (limited to 'dev-lisp')
-rw-r--r--dev-lisp/abcl/abcl-1.9.2.ebuild32
1 files changed, 0 insertions, 32 deletions
diff --git a/dev-lisp/abcl/abcl-1.9.2.ebuild b/dev-lisp/abcl/abcl-1.9.2.ebuild
deleted file mode 100644
index 16040ba68498..000000000000
--- a/dev-lisp/abcl/abcl-1.9.2.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit java-pkg-2 java-ant-2
-
-DESCRIPTION="Armed Bear Common Lisp is a Common Lisp implementation for the JVM"
-HOMEPAGE="https://abcl.org"
-SRC_URI="https://abcl.org/releases/${PV}/abcl-src-${PV}.tar.gz"
-S="${WORKDIR}/abcl-src-${PV}"
-
-LICENSE="GPL-2-with-classpath-exception"
-SLOT="0"
-KEYWORDS="amd64 x86"
-
-RDEPEND=">=virtual/jre-1.8:*"
-DEPEND=">=virtual/jdk-1.8:*"
-
-DOCS=( README )
-
-src_compile() {
- eant abcl.compile
- eant abcl.jar || die "Can't make ABCL jar archive"
-}
-
-src_install() {
- java-pkg_dojar dist/abcl.jar dist/abcl-contrib.jar
- java-pkg_dolauncher ${PN} --java_args "-server -Xrs" --main org.armedbear.lisp.Main
-
- einstalldocs
-}