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 1CADF15800F for ; Fri, 13 Jan 2023 10:54:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 60DE0E07EA; Fri, 13 Jan 2023 10:54:32 +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 44853E07EA for ; Fri, 13 Jan 2023 10:54:32 +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 5CFC5340C3C for ; Fri, 13 Jan 2023 10:54:31 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id ED3237F2 for ; Fri, 13 Jan 2023 10:54:29 +0000 (UTC) From: "Florian Schmaus" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Florian Schmaus" Message-ID: <1673607210.a2b6b5a59677033aab0075b1cbf27ef7f55d7d41.flow@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.0-r1.ebuild dev-lisp/abcl/abcl-1.9.0.ebuild X-VCS-Directories: dev-lisp/abcl/ X-VCS-Committer: flow X-VCS-Committer-Name: Florian Schmaus X-VCS-Revision: a2b6b5a59677033aab0075b1cbf27ef7f55d7d41 X-VCS-Branch: master Date: Fri, 13 Jan 2023 10:54:29 +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: 57d648ab-7743-4172-9065-fed147e7b73b X-Archives-Hash: 3625c4d0902040ef6a4f05180fa14e00 commit: a2b6b5a59677033aab0075b1cbf27ef7f55d7d41 Author: Florian Schmaus gentoo org> AuthorDate: Fri Jan 13 10:53:07 2023 +0000 Commit: Florian Schmaus gentoo org> CommitDate: Fri Jan 13 10:53:30 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a2b6b5a5 dev-lisp/abcl: also install abcl-contrib.jar Closes: https://bugs.gentoo.org/890642 Signed-off-by: Florian Schmaus gentoo.org> dev-lisp/abcl/{abcl-1.9.0.ebuild => abcl-1.9.0-r1.ebuild} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-lisp/abcl/abcl-1.9.0.ebuild b/dev-lisp/abcl/abcl-1.9.0-r1.ebuild similarity index 87% rename from dev-lisp/abcl/abcl-1.9.0.ebuild rename to dev-lisp/abcl/abcl-1.9.0-r1.ebuild index c07e845ecaac..5d3a2bcdf8c9 100644 --- a/dev-lisp/abcl/abcl-1.9.0.ebuild +++ b/dev-lisp/abcl/abcl-1.9.0-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -24,7 +24,7 @@ src_compile() { } src_install() { - java-pkg_dojar dist/abcl.jar + java-pkg_dojar dist/abcl.jar dist/abcl-contrib.jar java-pkg_dolauncher ${PN} --java_args "-server -Xrs" --main org.armedbear.lisp.Main dodoc README }