mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-07-25 16:43:26 +02:00
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>
56 lines
1.7 KiB
Bash
56 lines
1.7 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.apache.httpcomponents:httpcore:4.4.14"
|
|
JAVA_TESTING_FRAMEWORKS="junit-4"
|
|
|
|
inherit java-pkg-2 java-pkg-simple verify-sig
|
|
|
|
DESCRIPTION="Apache HttpComponents Core (blocking I/O)"
|
|
HOMEPAGE="https://hc.apache.org/httpcomponents-core-5.2.x/"
|
|
SRC_URI="https://archive.apache.org/dist/httpcomponents/httpcore/source/httpcomponents-core-${PV}-src.tar.gz
|
|
verify-sig? (
|
|
https://archive.apache.org/dist/httpcomponents/httpcore/source/httpcomponents-core-${PV}-src.tar.gz.asc
|
|
)"
|
|
S="${WORKDIR}/httpcore"
|
|
|
|
LICENSE="Apache-2.0"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 arm64 ppc64"
|
|
|
|
VERIFY_SIG_OPENPGP_KEY_PATH="/usr/share/openpgp-keys/httpcomponents-core.hc.apache.org.asc"
|
|
BDEPEND="verify-sig? ( sec-keys/openpgp-keys-apache-httpcomponents-httpcore )"
|
|
DEPEND=">=virtual/jdk-1.8:*
|
|
test? (
|
|
dev-java/commons-logging:0
|
|
dev-java/mockito:0
|
|
)"
|
|
|
|
RDEPEND=">=virtual/jre-1.8:*"
|
|
|
|
DOCS=( ../{LICENSE,NOTICE,README,RELEASE_NOTES}.txt )
|
|
|
|
JAVA_SRC_DIR=(
|
|
"src/main/java"
|
|
"src/main/java-deprecated"
|
|
)
|
|
JAVA_RESOURCE_DIRS="src/main/resources"
|
|
|
|
JAVA_TEST_GENTOO_CLASSPATH="commons-logging,junit-4,mockito"
|
|
JAVA_TEST_SRC_DIR="src/test/java"
|
|
JAVA_TEST_RESOURCE_DIRS="src/test/resources"
|
|
|
|
src_test() {
|
|
# https://bugs.gentoo.org/923603
|
|
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.lang=ALL-UNNAMED )
|
|
JAVA_TEST_EXTRA_ARGS+=( --add-opens=java.base/java.net=ALL-UNNAMED )
|
|
JAVA_TEST_EXTRA_ARGS+=( --add-opens=java.base/java.io=ALL-UNNAMED )
|
|
eapply "${FILESDIR}/httpcore-4.4.14-skipFailingTest.patch"
|
|
fi
|
|
java-pkg-simple_src_test
|
|
}
|