gentoo-ebuilds/dev-java/xerial-core/xerial-core-2.1.ebuild
Arthur Zamarin 55185cc6b5
dev-java/xerial-core: 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:01 +03:00

53 lines
1.6 KiB
Bash

# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
# Skeleton command:
# java-ebuilder --generate-ebuild --workdir . --pom pom.xml --download-uri mirror://gentoo/distfiles/4f/xerial-core-2.0.1.tar.bz2 --slot 0 --keywords "~amd64 ~x86" --ebuild xerial-core-2.0.1-r1.ebuild
EAPI=8
JAVA_PKG_IUSE="doc source test"
MAVEN_ID="org.xerial:xerial-core:2.1"
JAVA_TESTING_FRAMEWORKS="junit-4"
inherit java-pkg-2 java-pkg-simple
DESCRIPTION="Core library of the Xerial project."
HOMEPAGE="https://xerial.org"
SRC_URI="https://github.com/xerial/xerial-java/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="amd64 arm64 ppc64"
DEPEND=">=virtual/jdk-1.8:*"
RDEPEND=">=virtual/jre-1.8:*"
DOCS=( NOTICE README )
S="${WORKDIR}/xerial-java-${PV}/xerial-core"
JAVA_SRC_DIR="src/main/java"
JAVA_RESOURCE_DIRS="src/main/resources"
JAVA_TEST_GENTOO_CLASSPATH="junit-4"
JAVA_TEST_SRC_DIR="src/test/java"
JAVA_TEST_RESOURCE_DIRS="src/test/resources"
src_test() {
# 1) listResoucesInJAR(org.xerial.util.FileResourceTest)
# java.lang.AssertionError: at least one resource must be found in org.junit.runner
local vm_version="$(java-config -g PROVIDES_VERSION)"
if ver_test "${vm_version}" -ge 11; then
sed \
-e '/import org.junit.Test/a import org.junit.Ignore;' \
-e '/listResoucesInJAR/i @Ignore' \
-i src/test/java/org/xerial/util/FileResourceTest.java || die
sed \
-e '/import org.junit.Test/a import org.junit.Ignore;' \
-e '/addPackage/i @Ignore' \
-e '/recursive/i @Ignore' \
-i src/test/java/org/xerial/util/opt/CommandLauncherTest.java || die
fi
java-pkg-simple_src_test
}