commit:     f4a8605e553d660c2aa9a0f43f7afdd11ba6e0ca
Author:     Volkmar W. Pogatzki <gentoo <AT> pogatzki <DOT> net>
AuthorDate: Tue Mar 15 09:53:19 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Mar 15 17:20:22 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f4a8605e

dev-java/lucene: Restrict to jdk:1.8

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Volkmar W. Pogatzki <gentoo <AT> pogatzki.net>
Closes: https://github.com/gentoo/gentoo/pull/24574
Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-java/lucene/lucene-2.4.1-r3.ebuild | 83 ++++++++++++++++++++++++++++++++++
 1 file changed, 83 insertions(+)

diff --git a/dev-java/lucene/lucene-2.4.1-r3.ebuild 
b/dev-java/lucene/lucene-2.4.1-r3.ebuild
new file mode 100644
index 000000000000..762e6681fc1e
--- /dev/null
+++ b/dev-java/lucene/lucene-2.4.1-r3.ebuild
@@ -0,0 +1,83 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+JAVA_PKG_IUSE="doc source test"
+JAVA_PKG_BSFIX_ALL="no"
+JAVA_PKG_BSFIX_NAME="build.xml common-build.xml"
+
+inherit java-pkg-2 java-ant-2
+
+DESCRIPTION="High-performance, full-featured text search engine written 
entirely in Java"
+HOMEPAGE="https://lucene.apache.org";
+SRC_URI="https://archive.apache.org/dist/${PN}/java/${P}-src.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="2.4"
+KEYWORDS="~amd64 ~x86"
+
+CDEPEND="
+       dev-java/javacc:0"
+
+# Restricting to jdk:1.8 since it fails to build with openjdk-17
+# BUILD FAILED
+# /var/tmp/portage/dev-java/lucene-2.4.1-r3/work/lucene-2.4.1/build.xml:52: 
rmic does not exist under Java 15 and higher,
+# use rmic of an older JDK and explicitly set the executable attribute
+DEPEND="
+       ${CDEPEND}
+       virtual/jdk:1.8
+       test? (
+               dev-java/junit:0
+               dev-java/ant-core:0
+       )"
+
+RDEPEND="
+       ${CDEPEND}
+       >=virtual/jre-1.8:*"
+
+src_prepare() {
+       default
+       java-pkg_clean
+       sed -i -e '/-Xmax/ d' common-build.xml || die
+
+       # Portage marks shese files as bogus for some reason.
+       find . -type f -name instruction_arrow.png -exec rm -v {} \; || die
+}
+
+src_compile() {
+       # regenerate javacc files just because we can
+       # put javacc.jar on ant's classpath here even when <javacc> task
+       # doesn't use it - it's to fool the <available> test, first time
+       # it's useful not to have ignoresystemclasses=true...
+       ANT_TASKS="ant-core javacc" \
+               eant \
+               -Djavacc.home="${EPREFIX}"/usr/share/javacc/lib \
+               javacc
+       ANT_TASKS="none" \
+               eant \
+               -Dversion=${PV} \
+               jar-core \
+               jar-demo \
+               $(use_doc javadocs-core javadocs-demo)
+}
+
+src_test() {
+       java-ant_rewrite-classpath common-build.xml
+       EANT_GENTOO_CLASSPATH="junit ant-core" \
+               ANT_TASKS="ant-junit" \
+               eant \
+               test-core
+}
+
+src_install() {
+       einstalldocs
+       java-pkg_newjar "build/${PN}-core-${PV}.jar" "${PN}-core.jar"
+       java-pkg_newjar "build/${PN}-demos-${PV}.jar" "${PN}-demos.jar"
+
+       if use doc; then
+               dodoc -r docs
+               java-pkg_dohtml -r build/docs/api
+       fi
+       use source && java-pkg_dosrc src/java/org
+}

Reply via email to