From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id A8EA5158091 for ; Mon, 6 Jun 2022 07:42:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EB32EE0855; Mon, 6 Jun 2022 07:42:33 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C2635E0837 for ; Mon, 6 Jun 2022 07:42:33 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D127134185F for ; Mon, 6 Jun 2022 07:42:32 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 41B79485 for ; Mon, 6 Jun 2022 07:42:31 +0000 (UTC) From: "Florian Schmaus" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Florian Schmaus" Message-ID: <1654501344.41f080c32bdb062b74f98ad388285f013e864d34.flow@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-java/bcprov/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-java/bcprov/bcprov-1.71.ebuild X-VCS-Directories: dev-java/bcprov/ X-VCS-Committer: flow X-VCS-Committer-Name: Florian Schmaus X-VCS-Revision: 41f080c32bdb062b74f98ad388285f013e864d34 X-VCS-Branch: master Date: Mon, 6 Jun 2022 07:42:31 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 71fc24b7-05c6-4a00-9333-9f2ffa2fb19c X-Archives-Hash: fe525f1bd598990117705a2187804de3 commit: 41f080c32bdb062b74f98ad388285f013e864d34 Author: Volkmar W. Pogatzki pogatzki net> AuthorDate: Sun Jun 5 12:45:11 2022 +0000 Commit: Florian Schmaus gentoo org> CommitDate: Mon Jun 6 07:42:24 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=41f080c3 dev-java/bcprov: drop 1.71 Signed-off-by: Volkmar W. Pogatzki pogatzki.net> Signed-off-by: Florian Schmaus gentoo.org> dev-java/bcprov/bcprov-1.71.ebuild | 110 ------------------------------------- 1 file changed, 110 deletions(-) diff --git a/dev-java/bcprov/bcprov-1.71.ebuild b/dev-java/bcprov/bcprov-1.71.ebuild deleted file mode 100644 index 585291fc3295..000000000000 --- a/dev-java/bcprov/bcprov-1.71.ebuild +++ /dev/null @@ -1,110 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -JAVA_PKG_IUSE="doc source test" -MAVEN_ID="org.bouncycastle:bcprov-jdk18on:1.71" -JAVA_TESTING_FRAMEWORKS="junit-4" - -inherit java-pkg-2 java-pkg-simple check-reqs - -DESCRIPTION="Java cryptography APIs" -HOMEPAGE="https://www.bouncycastle.org/java.html" -SRC_URI="https://github.com/bcgit/bc-java/archive/r${PV/./rv}.tar.gz -> bc-java-r${PV/./rv}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86" - -DEPEND=">=virtual/jdk-11:*" -RDEPEND=">=virtual/jre-1.8:*" -BDEPEND="app-arch/zip" - -DOCS=( ../{README,SECURITY}.md ) -HTML_DOCS=( ../{CONTRIBUTORS,index}.html ) - -S="${WORKDIR}/bc-java-r${PV/./rv}/prov" - -JAVA_SRC_DIR=( - "src/main/java" - "../core/src/main/java" # package org.bouncycastle.asn1 does not exist - "src/main/jdk1.9" # https://bugs.gentoo.org/797634 -) -JAVA_RESOURCE_DIRS="src/main/resources" - -JAVA_TEST_GENTOO_CLASSPATH="junit-4" -JAVA_TEST_SRC_DIR=( "src/test/java" "../core/src/test/java" ) -JAVA_TEST_RESOURCE_DIRS=( "src/test/resources" "../core/src/test/resources" ) - -JAVA_TEST_EXTRA_ARGS="-Dbc.test.data.home=${S}/../core/src/test/data" - -# Depending on vm_version 11 or 17 there are 2 different errrors -# 1) testJCE(org.bouncycastle.jce.provider.test.SimpleTestTest) -# junit.framework.AssertionFailedError: index 29 KeyStore: Exception: java.security.KeyStoreException: BKS-V1 not found -# at junit.framework.Assert.fail(Assert.java:57) -# at junit.framework.TestCase.fail(TestCase.java:223) -# at org.bouncycastle.jce.provider.test.SimpleTestTest.testJCE(SimpleTestTest.java:26) -# -# 1) testJCE(org.bouncycastle.jce.provider.test.SimpleTestTest) -# junit.framework.AssertionFailedError: index 9 BlockCipher: IDEA/PGPCFB/NoPadding failed encryption - java.io.IOException: javax.crypto.ShortBufferException: output buffer too short for input. -# at junit.framework.Assert.fail(Assert.java:57) -# at junit.framework.TestCase.fail(TestCase.java:223) -# at org.bouncycastle.jce.provider.test.SimpleTestTest.testJCE(SimpleTestTest.java:26) -JAVA_TEST_RUN_ONLY=( - "org.bouncycastle.asn1.test.AllTests" - "org.bouncycastle.crypto.agreement.test.AllTests" - "org.bouncycastle.crypto.ec.test.AllTests" - "org.bouncycastle.crypto.prng.test.AllTests" - "org.bouncycastle.crypto.test.AllTests" - "org.bouncycastle.jcajce.provider.test.AllTests" -# "org.bouncycastle.jce.provider.test.AllTests" # bug #827146 - "org.bouncycastle.jce.provider.test.nist.AllTests" - "org.bouncycastle.jce.provider.test.rsa3.AllTests" - "org.bouncycastle.pqc.crypto.lms.AllTests" - "org.bouncycastle.pqc.crypto.test.AllTests" - "org.bouncycastle.pqc.jcajce.provider.test.AllTests" - "org.bouncycastle.util.encoders.test.AllTests" -) - -check_env() { - if use test; then - # this is needed only for tests - CHECKREQS_MEMORY="2048M" - check-reqs_pkg_pretend - fi -} - -pkg_pretend() { - check_env -} - -pkg_setup() { - check_env -} - -src_prepare() { - default - java-pkg_clean .. -} - -src_test() { - JAVA_TEST_EXTRA_ARGS+=" -Xmx${CHECKREQS_MEMORY}" - java-pkg-simple_src_test -} - -src_install() { - default - einstalldocs - docinto html - dodoc -r ../docs - - # These files are not present in the upstream jar but are used for tests - # Removing them from the jar file after testing - zip --delete "${S}"/bcprov.jar \ - "org/bouncycastle/pqc/crypto/ntru/*" \ - "org/bouncycastle/pqc/math/ntru/*" \ - || die "cleaning after tests failed" - - java-pkg-simple_src_install -}