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 03CC615838C for ; Tue, 23 Jan 2024 09:42:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CD885E2A8D; Tue, 23 Jan 2024 09:42:44 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B14A4E2A8D for ; Tue, 23 Jan 2024 09:42:44 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A7ED4343339 for ; Tue, 23 Jan 2024 09:42:43 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C9FAB14B1 for ; Tue, 23 Jan 2024 09:42:41 +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: <1706002953.d3e32af191491a385fea63c285d0eade85d329c1.fordfrog@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-java/ant-core/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-java/ant-core/ant-core-1.10.14.ebuild X-VCS-Directories: dev-java/ant-core/ X-VCS-Committer: fordfrog X-VCS-Committer-Name: Miroslav Šulc X-VCS-Revision: d3e32af191491a385fea63c285d0eade85d329c1 X-VCS-Branch: master Date: Tue, 23 Jan 2024 09:42:41 +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: 15ef60d8-376e-4653-83a1-37ae13807139 X-Archives-Hash: cf24305e72b2dc144b8a66176527261c commit: d3e32af191491a385fea63c285d0eade85d329c1 Author: Volkmar W. Pogatzki pogatzki net> AuthorDate: Tue Dec 26 10:47:11 2023 +0000 Commit: Miroslav Šulc gentoo org> CommitDate: Tue Jan 23 09:42:33 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d3e32af1 dev-java/ant-core: compatibility symlink, add 1.10.14 Some packages still depend on dev-java/ant-core just for getting ant.jar into their classpath. Starting from version 1.10.14 ant-core is no longer used as a regular package. Instead, ant.jar is provided by dev-java/ant. This version of dev-java/ant-core provides only the package.env file to register the compatibility symlink /usr/share/ant-core/lib/ant.jar which is provided by dev-java/ant. Delete this package at the end of transition period after adjusting JAVA_ANT_E_DEPEND in java-ant-2.eclass when all reverse dependencies have switched to dev-java/ant. Bug: https://bugs.gentoo.org/802165 Signed-off-by: Volkmar W. Pogatzki pogatzki.net> Signed-off-by: Miroslav Šulc gentoo.org> dev-java/ant-core/ant-core-1.10.14.ebuild | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/dev-java/ant-core/ant-core-1.10.14.ebuild b/dev-java/ant-core/ant-core-1.10.14.ebuild new file mode 100644 index 000000000000..be672e0f7aa2 --- /dev/null +++ b/dev-java/ant-core/ant-core-1.10.14.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit java-pkg-2 + +DESCRIPTION="Compatibility link to ant-core for >=dev-java/ant-1.10.14" +HOMEPAGE="https://ant.apache.org/" +S="${WORKDIR}" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64" + +DEPEND=" + ~dev-java/ant-${PV}:0 + >=virtual/jdk-1.8:* +" +RDEPEND=">=virtual/jre-1.8:*" + +src_compile() { :; } + +src_install() { + java-pkg_regjar /usr/share/ant-core/lib/ant.jar +}