commit: f68f6548c347c508e0b6047ebc874307f1539daf Author: Ulrich Müller <ulm <AT> gentoo <DOT> org> AuthorDate: Fri Feb 14 14:11:06 2025 +0000 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org> CommitDate: Sun Feb 16 07:22:07 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f68f6548
dev-java/antlr: Port to ver_replacing Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org> dev-java/antlr/antlr-3.5.3.ebuild | 13 +++---------- dev-java/antlr/antlr-4.9.3.ebuild | 13 +++---------- 2 files changed, 6 insertions(+), 20 deletions(-) diff --git a/dev-java/antlr/antlr-3.5.3.ebuild b/dev-java/antlr/antlr-3.5.3.ebuild index d0a32d44e244..062a48415e29 100644 --- a/dev-java/antlr/antlr-3.5.3.ebuild +++ b/dev-java/antlr/antlr-3.5.3.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2024 Gentoo Authors +# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 -inherit java-pkg-2 +inherit eapi9-ver java-pkg-2 DESCRIPTION="A parser generator for many languages" HOMEPAGE="https://www.antlr3.org/" @@ -49,14 +49,7 @@ pkg_postinst() { # If upgrading from a version of this slot that installs JARs, # display a message about submodule split local changed_ver="3.5.2-r2" - local should_show_msg - for replaced_ver in ${REPLACING_VERSIONS}; do - if ver_test "${replaced_ver}" -lt "${changed_ver}"; then - should_show_msg=1 - break - fi - done - [[ "${should_show_msg}" ]] || return + ver_replacing -lt "${changed_ver}" || return elog "Since version ${changed_ver}, ${PN}-${SLOT} no longer installs JARs." elog "Please find the JARs from files installed by submodule packages" elog "antlr-runtime-${SLOT} and antlr-tool-${SLOT}." diff --git a/dev-java/antlr/antlr-4.9.3.ebuild b/dev-java/antlr/antlr-4.9.3.ebuild index 50b53bbba0b2..3a8b33648053 100644 --- a/dev-java/antlr/antlr-4.9.3.ebuild +++ b/dev-java/antlr/antlr-4.9.3.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2024 Gentoo Authors +# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 -inherit java-pkg-2 +inherit eapi9-ver java-pkg-2 DESCRIPTION="A parser generator for many languages" HOMEPAGE="https://www.antlr.org/" @@ -49,14 +49,7 @@ pkg_postinst() { # If upgrading from a version of this slot that installs JARs, # display a message about submodule split local changed_ver="4.9.3" - local should_show_msg - for replaced_ver in ${REPLACING_VERSIONS}; do - if ver_test "${replaced_ver}" -lt "${changed_ver}"; then - should_show_msg=1 - break - fi - done - [[ "${should_show_msg}" ]] || return + ver_replacing -lt "${changed_ver}" || return elog "Since version ${changed_ver}, ${PN}-${SLOT} no longer installs JARs." elog "Please find the JARs from files installed by submodule packages" elog "antlr-runtime-${SLOT} and antlr-tool-${SLOT}."
