mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2025-12-09 00:07:57 +03:00
94 lines
2.4 KiB
Bash
94 lines
2.4 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"
|
|
MAVEN_ID="commons-validator:commons-validator:${PV}"
|
|
JAVA_TESTING_FRAMEWORKS="junit-jupiter"
|
|
|
|
inherit java-pkg-2 java-pkg-simple junit5 verify-sig
|
|
|
|
DESCRIPTION="Commons component to validate user input, or data input"
|
|
HOMEPAGE="https://commons.apache.org/proper/commons-validator/"
|
|
SRC_URI="mirror://apache/commons/validator/source/${P}-src.tar.gz
|
|
verify-sig? ( https://downloads.apache.org/commons/validator/source/${P}-src.tar.gz.asc )"
|
|
S="${WORKDIR}/${P}-src"
|
|
|
|
LICENSE="Apache-2.0"
|
|
SLOT="0"
|
|
KEYWORDS="amd64"
|
|
IUSE="log4j"
|
|
|
|
BDEPEND="verify-sig? ( sec-keys/openpgp-keys-ggregory )"
|
|
|
|
COMMON_DEPEND="
|
|
>=dev-java/commons-beanutils-1.11.0:0[log4j=]
|
|
dev-java/commons-collections:0
|
|
>=dev-java/commons-digester-2.1-r3:2.1[log4j=]
|
|
>=dev-java/commons-logging-1.3.5:0[log4j=]
|
|
log4j? (
|
|
dev-java/log4j-12-api:2
|
|
dev-java/log4j-api:2
|
|
)
|
|
"
|
|
|
|
# [-vintage] because, if junit:5 compiled with 'USE=vintage':
|
|
# Error: Module junit not found, required by org.junit.vintage.engine
|
|
DEPEND="
|
|
${COMMON_DEPEND}
|
|
dev-java/jakarta-servlet-api:4
|
|
dev-java/slf4j-api:0
|
|
>=virtual/jdk-11:*
|
|
test? (
|
|
>=dev-java/commons-csv-1.14.0:0
|
|
>=dev-java/commons-codec-1.18.0:0
|
|
>=dev-java/commons-io-2.18.0:0
|
|
>=dev-java/commons-lang-3.17.0:3.6
|
|
dev-java/junit-clptr:0
|
|
dev-java/junit-pioneer:0
|
|
dev-java/junit:5[-vintage]
|
|
dev-java/opentest4j:0
|
|
)
|
|
"
|
|
|
|
RDEPEND="
|
|
${COMMON_DEPEND}
|
|
>=virtual/jre-1.8:*
|
|
"
|
|
|
|
JAVA_CLASSPATH_EXTRA="jakarta-servlet-api-4 slf4j-api"
|
|
JAVA_GENTOO_CLASSPATH="commons-beanutils commons-collections commons-digester-2.1 commons-logging"
|
|
JAVA_INTERMEDIATE_JAR_NAME="org.apache.${PN/-/.}"
|
|
JAVA_MODULE_INFO_OUT="src/main"
|
|
JAVA_RESOURCE_DIRS="src/main/resources"
|
|
JAVA_SRC_DIR="src/main/java"
|
|
JAVA_TEST_GENTOO_CLASSPATH="
|
|
commons-csv
|
|
commons-codec
|
|
commons-io
|
|
commons-lang-3.6
|
|
junit-clptr
|
|
junit-pioneer
|
|
junit-5
|
|
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() {
|
|
java-pkg-2_src_prepare
|
|
|
|
if use log4j; then
|
|
JAVA_GENTOO_CLASSPATH+="
|
|
log4j-12-api-2
|
|
log4j-api-2
|
|
"
|
|
fi
|
|
|
|
# src/test/java/org/apache/commons/validator/routines/IBANValidatorTest.java:52: error: cannot find symbol
|
|
# import org.junit.jupiter.params.provider.FieldSource;
|
|
rm src/test/java/org/apache/commons/validator/routines/IBANValidatorTest.java || die
|
|
}
|