gentoo-ebuilds/dev-java/xmlunit-matchers/xmlunit-matchers-2.9.1.ebuild
Arthur Zamarin ec7647d23d
dev-java/xmlunit-matchers: dekeyword x86
After a message to gentoo-dev ML, and no reply from any user on x86,

we decided to dekeyword most Java packages from x86, and reverse

dependencies of them.

Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
2024-10-17 18:32:03 +03:00

61 lines
1.3 KiB
Bash

# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
JAVA_PKG_IUSE="doc source test"
MAVEN_ID="org.xmlunit:xmlunit-matchers:${PV}"
JAVA_TESTING_FRAMEWORKS="junit-4"
inherit java-pkg-2 java-pkg-simple
DESCRIPTION="XMLUnit for Java Hamcrest Matchers"
HOMEPAGE="https://www.xmlunit.org/"
SRC_URI="https://github.com/xmlunit/xmlunit/releases/download/v${PV}/xmlunit-${PV}-src.tar.gz"
S="${WORKDIR}/xmlunit-${PV}-src/xmlunit-matchers"
LICENSE="Apache-2.0"
SLOT="2"
KEYWORDS="amd64 arm64 ppc64"
PROPERTIES="test_network"
RESTRICT="test"
DEPEND="
>=virtual/jdk-1.8:*
${CP_DEPEND}
dev-java/hamcrest-core:1.3
~dev-java/xmlunit-core-${PV}:2
test? (
dev-java/hamcrest-library:1.3
dev-java/mockito:4
)
"
RDEPEND="
>=virtual/jre-1.8:*
${CP_DEPEND}
"
DOCS=( ../{CONTRIBUTING,HELP_WANTED,README,RELEASE_NOTES}.md )
JAVA_AUTOMATIC_MODULE_NAME="org.xmlunit.matchers"
JAVA_CLASSPATH_EXTRA="
hamcrest-core-1.3
xmlunit-core-2
"
JAVA_SRC_DIR="src/main/java"
JAVA_TEST_EXCLUDES="org.xmlunit.TestResources"
JAVA_TEST_GENTOO_CLASSPATH="
hamcrest-library-1.3
junit-4
mockito-4
xmlunit-core-2
"
JAVA_TEST_SRC_DIR="src/test/java"
src_prepare() {
java-pkg-2_src_prepare
cp {../xmlunit-core/,}src/test/java/org/xmlunit/TestResources.java || die
}