mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-01-06 02:17:34 -08:00
Bug: https://bugs.gentoo.org/473598 Bug: https://bugs.gentoo.org/720224 Signed-off-by: Fabian Groffen <grobian@gentoo.org>
76 lines
2.7 KiB
Bash
76 lines
2.7 KiB
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
JAVA_PKG_IUSE="doc source test"
|
|
JAVA_TESTING_FRAMEWORKS="junit-jupiter"
|
|
MAVEN_ID="commons-io:commons-io:${PV}"
|
|
|
|
inherit java-pkg-2 java-pkg-simple junit5 verify-sig
|
|
|
|
DESCRIPTION="Utility classes, stream implementations, file filters, and much more"
|
|
HOMEPAGE="https://commons.apache.org/proper/commons-io/"
|
|
SRC_URI="mirror://apache/commons/io/source/${P}-src.tar.gz
|
|
verify-sig? ( https://downloads.apache.org/commons/io/source/${P}-src.tar.gz.asc )"
|
|
S="${WORKDIR}/${P}-src"
|
|
|
|
LICENSE="Apache-2.0"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 arm64 ppc64"
|
|
|
|
BDEPEND="verify-sig? ( sec-keys/openpgp-keys-ggregory )"
|
|
|
|
# [-vintage] because, if junit:5 compiled with 'USE=vintage':
|
|
# Error: Module junit not found, required by org.junit.vintage.engine
|
|
DEPEND="
|
|
>=virtual/jdk-11:*
|
|
test? (
|
|
>=dev-java/commons-codec-1.18.0:0
|
|
>=dev-java/commons-lang-3.18.0:0
|
|
dev-java/jimfs:0
|
|
dev-java/jmh-core:0
|
|
dev-java/junit:5[-vintage]
|
|
dev-java/mockito:4
|
|
dev-java/junit-pioneer:0
|
|
dev-java/opentest4j:0
|
|
)
|
|
"
|
|
|
|
RDEPEND=">=virtual/jre-1.8:*"
|
|
|
|
PATCHES=(
|
|
"${FILESDIR}/commons-io-2.20.0-BOMInputStreamTest.patch" # java.nio.BufferOverflowException
|
|
"${FILESDIR}/commons-io-2.20.0-CharSequenceInputStreamTest.patch" # java.nio.BufferOverflowException
|
|
"${FILESDIR}/commons-io-2.20.0-ThrottledInputStreamTest.patch" # org.mockito.exceptions.base.MockitoException:
|
|
"${FILESDIR}/commons-io-2.20.0-URIOriginalTest.patch" # java.net.UnknownHostException: example.com
|
|
"${FILESDIR}/commons-io-2.20.0-XmlStreamReaderTest.patch" # Needs network access
|
|
)
|
|
|
|
JAVA_INTERMEDIATE_JAR_NAME="org.apache.${PN/-/.}"
|
|
JAVA_MODULE_INFO_OUT="src/main"
|
|
JAVA_SRC_DIR="src/main/java"
|
|
JAVA_TEST_GENTOO_CLASSPATH="commons-codec commons-lang jimfs jmh-core junit-pioneer junit-5 mockito-4 opentest4j"
|
|
JAVA_TEST_RESOURCE_DIRS="src/test/resources"
|
|
JAVA_TEST_SRC_DIR="src/test/java"
|
|
VERIFY_SIG_OPENPGP_KEY_PATH="/usr/share/openpgp-keys/ggregory.asc"
|
|
|
|
src_prepare() {
|
|
default #780585
|
|
java-pkg-2_src_prepare
|
|
|
|
# This test has compilation errors:
|
|
# src/test/java/org/apache/commons/io/file/PathUtilsContentEqualsTest.java:125:
|
|
# error: reference to newFileSystem is ambiguous
|
|
# FileSystem fileSystem2 = FileSystems.newFileSystem(refDir.resolveSibling(refDir.getFileName() + ".zip"), null)) {
|
|
# ^
|
|
# both method newFileSystem(Path,ClassLoader) in FileSystems and method newFileSystem(Path,Map<String,?>)
|
|
# in FileSystems match
|
|
rm src/test/java/org/apache/commons/io/file/PathUtilsContentEqualsTest.java || die
|
|
|
|
local vm_version="$(java-config -g PROVIDES_VERSION)"
|
|
if ver_test "${vm_version}" -ge 17; then
|
|
JAVA_TEST_EXTRA_ARGS+=( --add-opens=java.base/java.{io,lang,util,time,time.chrono}=ALL-UNNAMED )
|
|
fi
|
|
}
|