commit:     1b3542498d54254fd5435dd102f67d8d2557d267
Author:     Yuan Liao <liaoyuan <AT> gmail <DOT> com>
AuthorDate: Tue Feb  8 19:56:01 2022 +0000
Commit:     Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
CommitDate: Thu Feb 17 08:40:26 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1b354249

dev-java/avalon-framework: Switch to log4j-12-api:2 and java-pkg-simple

Switch to java-pkg-simple.eclass because the previous revision of this
package uses a Gentoo custom build.xml, which is the deprecated approach
of making Java packages with no/unsupported build system.  Tests can
also be enabled easily thanks to the switch.

Closes: https://bugs.gentoo.org/831717
Signed-off-by: Yuan Liao <liaoyuan <AT> gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/24134
Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>

 .../avalon-framework-4.2.0-r4.ebuild               | 56 ++++++++++++++++++++++
 1 file changed, 56 insertions(+)

diff --git a/dev-java/avalon-framework/avalon-framework-4.2.0-r4.ebuild 
b/dev-java/avalon-framework/avalon-framework-4.2.0-r4.ebuild
new file mode 100644
index 000000000000..27fbd1ae42ef
--- /dev/null
+++ b/dev-java/avalon-framework/avalon-framework-4.2.0-r4.ebuild
@@ -0,0 +1,56 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+JAVA_PKG_IUSE="doc source test"
+# The tests themselves are JUnit 3 tests, but using
+# junit-4 here causes 61 additional tests to be run
+JAVA_TESTING_FRAMEWORKS="junit-4"
+
+inherit java-pkg-2 java-pkg-simple
+
+DESCRIPTION="Avalon Framework"
+HOMEPAGE="https://avalon.apache.org/";
+SRC_URI="mirror://apache/avalon/avalon-framework/source/${P}-src.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="4.2"
+KEYWORDS="~amd64 ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris 
~x86-solaris"
+
+CP_DEPEND="
+       dev-java/avalon-logkit:2.0
+       dev-java/log4j-12-api:2
+"
+
+DEPEND="
+       >=virtual/jdk-1.8:*
+       ${CP_DEPEND}
+       test? (
+               dev-java/junit:0
+       )
+"
+
+RDEPEND="
+       >=virtual/jre-1.8:*
+       ${CP_DEPEND}
+"
+
+S="${WORKDIR}/${PN}"
+
+PATCHES=( "${FILESDIR}/4.2.0-enum.patch" )
+DOCS=( NOTICE.TXT )
+
+JAVA_SRC_DIR=( {api,impl}/src/java )
+
+JAVA_TEST_GENTOO_CLASSPATH="junit"
+JAVA_TEST_SRC_DIR=( {api,impl}/src/test )
+
+src_prepare() {
+       default # https://bugs.gentoo.org/780585
+}
+
+src_install() {
+       java-pkg-simple_src_install
+       einstalldocs # https://bugs.gentoo.org/789582
+}

Reply via email to