mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
dev-java/bcpkix: drop 1.69
Signed-off-by: Volkmar W. Pogatzki <gentoo@pogatzki.net> Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
This commit is contained in:
committed by
Arthur Zamarin
parent
6a15f3af96
commit
2d6a105329
@@ -1,2 +1 @@
|
||||
DIST bc-java-r1rv69.tar.gz 56587177 BLAKE2B be5321f48911840de70d3201c0436cf4147a25999abb605dc4c176ea9292796ca25633635d66dccab685a4bb162258c4495ccc764782119a0750ec1b7456a7db SHA512 5224f424faf549e8e3f2db1134e74647b09bebb654ed23bb0bcd493f065fdb3f2b4f2815be0137ebcc9d62b25a6725b7a26b76d55eb3ad014ad0ce92961126de
|
||||
DIST bc-java-r1rv71.tar.gz 117684695 BLAKE2B db0a1b2576a55592e0447aa8734e8ecb6fe8452d08dabf010070f3c6b5a3b4caa7a5929baaa52796fed0ef397e18fe58fdb91dfef6da75af8f28efb627d2b808 SHA512 c9a095a034863a46027e28754ae96d9750162120bc1af124fa700ad05d23716a606633b674e2e8490bda658d30d30e93f42ba00dcc1ac13596a24f8aa43a666d
|
||||
|
||||
@@ -1,102 +0,0 @@
|
||||
# Copyright 1999-2021 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
JAVA_PKG_IUSE="doc source test"
|
||||
MAVEN_ID="org.bouncycastle:bcpkix-jdk15on:1.69"
|
||||
JAVA_TESTING_FRAMEWORKS="junit-4"
|
||||
|
||||
inherit java-pkg-2 java-pkg-simple check-reqs
|
||||
|
||||
DESCRIPTION="Java APIs for CMS, PKCS, EAC, TSP, CMP, CRMF, OCSP, and certificate generation"
|
||||
HOMEPAGE="https://www.bouncycastle.org/java.html"
|
||||
SRC_URI="https://github.com/bcgit/bc-java/archive/refs/tags/r${PV/./rv}.tar.gz -> bc-java-r${PV/./rv}.tar.gz"
|
||||
|
||||
LICENSE="BSD"
|
||||
SLOT="0"
|
||||
KEYWORDS="amd64 arm64 ppc64 x86"
|
||||
|
||||
CDEPEND="
|
||||
~dev-java/bcprov-${PV}:0
|
||||
~dev-java/bcutil-${PV}:0
|
||||
"
|
||||
DEPEND="${CDEPEND}
|
||||
>=virtual/jdk-1.8:*"
|
||||
RDEPEND="${CDEPEND}
|
||||
>=virtual/jre-1.8:*"
|
||||
|
||||
DOCS=( ../{README,SECURITY}.md )
|
||||
HTML_DOCS=( ../{CONTRIBUTORS,index,LICENSE}.html )
|
||||
|
||||
S="${WORKDIR}/bc-java-r${PV/./rv}/pkix"
|
||||
|
||||
JAVA_GENTOO_CLASSPATH="bcprov,bcutil"
|
||||
JAVA_SRC_DIR=(
|
||||
"src/main/java"
|
||||
"src/main/jdk1.9" # https://bugs.gentoo.org/797634
|
||||
)
|
||||
# JAVA_RESOURCE_DIRS="src/main/resources" # Does not exist
|
||||
|
||||
JAVA_TEST_GENTOO_CLASSPATH="junit-4"
|
||||
JAVA_TEST_SRC_DIR="src/test/java"
|
||||
JAVA_TEST_RESOURCE_DIRS="src/test/resources"
|
||||
|
||||
JAVA_TEST_EXTRA_ARGS="-Dbc.test.data.home=${S}/../core/src/test/data"
|
||||
|
||||
JAVA_TEST_RUN_ONLY=(
|
||||
"org.bouncycastle.cert.cmp.test.AllTests"
|
||||
"org.bouncycastle.cert.crmf.test.AllTests"
|
||||
"org.bouncycastle.cert.ocsp.test.AllTests"
|
||||
"org.bouncycastle.cert.path.test.AllTests"
|
||||
"org.bouncycastle.cert.test.AllTests"
|
||||
"org.bouncycastle.cms.test.AllTests"
|
||||
"org.bouncycastle.dvcs.test.AllTests"
|
||||
"org.bouncycastle.eac.test.AllTests"
|
||||
# "org.bouncycastle.est.test.AllTests" # (16 tests) org.bouncycastle.est.ESTException: localhost.me: Temporary failure in name resolution HTTP Status Code: 0
|
||||
"org.bouncycastle.mime.test.AllTests"
|
||||
"org.bouncycastle.mozilla.test.AllTests"
|
||||
"org.bouncycastle.openssl.test.AllTests"
|
||||
"org.bouncycastle.operator.test.AllTests"
|
||||
"org.bouncycastle.pkcs.test.AllTests"
|
||||
"org.bouncycastle.tsp.test.AllTests"
|
||||
)
|
||||
|
||||
# https://bugs.gentoo.org/823347
|
||||
check_env() {
|
||||
if use test; then
|
||||
# this is needed only for tests
|
||||
CHECKREQS_MEMORY="2048M"
|
||||
check-reqs_pkg_pretend
|
||||
fi
|
||||
}
|
||||
|
||||
# https://bugs.gentoo.org/823347
|
||||
pkg_pretend() {
|
||||
check_env
|
||||
}
|
||||
|
||||
# https://bugs.gentoo.org/823347
|
||||
pkg_setup() {
|
||||
check_env
|
||||
}
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
cd ../ || die
|
||||
java-pkg_clean
|
||||
}
|
||||
|
||||
# https://bugs.gentoo.org/823347
|
||||
src_test() {
|
||||
JAVA_TEST_EXTRA_ARGS+=" -Xmx${CHECKREQS_MEMORY}"
|
||||
java-pkg-simple_src_test
|
||||
}
|
||||
|
||||
src_install() {
|
||||
default
|
||||
einstalldocs
|
||||
docinto html
|
||||
dodoc -r ../docs
|
||||
java-pkg-simple_src_install
|
||||
}
|
||||
Reference in New Issue
Block a user