commit: 3e8002a9aab4e0a05678d30dcc222d4cc968a63c
Author: Michael Mair-Keimberger <mmk <AT> levelnine <DOT> at>
AuthorDate: Thu Feb 27 08:54:10 2025 +0000
Commit: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
CommitDate: Thu Feb 27 09:31:24 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3e8002a9
dev-java/bcprov: remove unused patch(es)
Signed-off-by: Michael Mair-Keimberger <mmk <AT> levelnine.at>
Signed-off-by: Ionen Wolkens <ionen <AT> gentoo.org>
.../bcprov/files/bcprov-1.79-PKCS12StoreTest.patch | 21 ---------------------
1 file changed, 21 deletions(-)
diff --git a/dev-java/bcprov/files/bcprov-1.79-PKCS12StoreTest.patch
b/dev-java/bcprov/files/bcprov-1.79-PKCS12StoreTest.patch
deleted file mode 100644
index b644fa927034..000000000000
--- a/dev-java/bcprov/files/bcprov-1.79-PKCS12StoreTest.patch
+++ /dev/null
@@ -1,21 +0,0 @@
-There was 1 failure:
-1) testJCE(org.bouncycastle.jce.provider.test.SimpleTestTest)
-junit.framework.AssertionFailedError: index 30 PKCS12Store: Exception:
java.io.FileNotFoundException: /tmp/PKCS12-AES256-AES128.p12 (Permission denied)
- 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:33)
-
-FAILURES!!!
-Tests run: 1, Failures: 1
-
----
a/prov/src/test/java/org/bouncycastle/jce/provider/test/PKCS12StoreTest.java
-+++
b/prov/src/test/java/org/bouncycastle/jce/provider/test/PKCS12StoreTest.java
-@@ -2153,7 +2153,7 @@ public class PKCS12StoreTest
-
- inStore.load(new ByteArrayInputStream(bOut.toByteArray()), passwd);
-
-- FileOutputStream fOut = new FileOutputStream("/tmp/" + storeType +
".p12");
-+ FileOutputStream fOut = new
FileOutputStream(System.getProperty("java.io.tmpdir") + storeType + ".p12");
- fOut.write(bOut.toByteArray());
- fOut.close();
- Key k = inStore.getKey("key", null);