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 E3FC11581C1 for ; Sat, 6 Jul 2024 08:47:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 11BA8E2AB4; Sat, 6 Jul 2024 08:47:57 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 DCB85E2AB4 for ; Sat, 6 Jul 2024 08:47:56 +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 E47CD340BEF for ; Sat, 6 Jul 2024 08:47:55 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7525F156D for ; Sat, 6 Jul 2024 08:47:54 +0000 (UTC) From: "Miroslav Šulc" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Miroslav Šulc" Message-ID: <1720255660.4a649afe454eeeddeb4b6ec651b825eff322a88a.fordfrog@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lisp/abcl/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-lisp/abcl/abcl-1.9.2-r1.ebuild X-VCS-Directories: dev-lisp/abcl/ X-VCS-Committer: fordfrog X-VCS-Committer-Name: Miroslav Šulc X-VCS-Revision: 4a649afe454eeeddeb4b6ec651b825eff322a88a X-VCS-Branch: master Date: Sat, 6 Jul 2024 08:47:54 +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: 1ab32df3-06a7-4a37-8c50-b87048248fb4 X-Archives-Hash: 5a218ac74a8e0ea1cf74808fca0872bb commit: 4a649afe454eeeddeb4b6ec651b825eff322a88a Author: Volkmar W. Pogatzki pogatzki net> AuthorDate: Sun Jun 23 09:59:20 2024 +0000 Commit: Miroslav Šulc gentoo org> CommitDate: Sat Jul 6 08:47:40 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4a649afe dev-lisp/abcl: build without BSFIX, drop java-ant-2 Signed-off-by: Volkmar W. Pogatzki pogatzki.net> Closes: https://github.com/gentoo/gentoo/pull/37338/commits/cf3fa180a32e3ac6fd25c581c313c9ff6c8c19dc Signed-off-by: Miroslav Šulc gentoo.org> dev-lisp/abcl/abcl-1.9.2-r1.ebuild | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/dev-lisp/abcl/abcl-1.9.2-r1.ebuild b/dev-lisp/abcl/abcl-1.9.2-r1.ebuild new file mode 100644 index 000000000000..4915ed2e0d82 --- /dev/null +++ b/dev-lisp/abcl/abcl-1.9.2-r1.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit java-pkg-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" + +BDEPEND=">=dev-java/ant-1.10.14-r3:0" +DEPEND=">=virtual/jdk-1.8:*" +RDEPEND=">=virtual/jre-1.8:*" + +src_compile() { + eant abcl.compile + eant abcl.jar +} + +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 +}