pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/lang/openjdk11



Module Name:    pkgsrc
Committed By:   ryoon
Date:           Tue Jan 26 15:10:11 UTC 2021

Modified Files:
        pkgsrc/lang/openjdk11: Makefile

Log Message:
openjdk11: Create JKS type cacerts file

Fix TLS/SSL network connection.
Avoid: javax.net.ssl.SSLException: Unexpected error:
java.security.InvalidAlgorithmParameterException: the trustAnchors
parameter must be non-empty

>From jperkin@. Thank you.


To generate a diff of this commit:
cvs rdiff -u -r1.28 -r1.29 pkgsrc/lang/openjdk11/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/lang/openjdk11/Makefile
diff -u pkgsrc/lang/openjdk11/Makefile:1.28 pkgsrc/lang/openjdk11/Makefile:1.29
--- pkgsrc/lang/openjdk11/Makefile:1.28 Mon Oct 26 15:16:30 2020
+++ pkgsrc/lang/openjdk11/Makefile      Tue Jan 26 15:10:11 2021
@@ -1,7 +1,8 @@
-# $NetBSD: Makefile,v 1.28 2020/10/26 15:16:30 ryoon Exp $
+# $NetBSD: Makefile,v 1.29 2021/01/26 15:10:11 ryoon Exp $
 
 DISTNAME=      openjdk-jdk11u-${GITHUB_TAG:C/\+/-/}
 PKGNAME=       openjdk11-1.${GITHUB_TAG:C/\+/./:C/jdk-([.0-9]+).*/\1/}
+PKGREVISION=   1
 CATEGORIES=    lang
 MASTER_SITES=  ${MASTER_SITE_GITHUB:=battleblow/}
 GITHUB_PROJECT=        openjdk-jdk11u
@@ -151,6 +152,7 @@ ${WRKDIR}/cacerts.out:
                  -keystore ${.TARGET}.tmp                              \
                  -alias `${ECHO} $$cert | sed 's,.*/\\([^/]*\\)\\.pem,\\1,'` \
                  -file $$cert                                          \
+                 -storetype jks                                        \
                  -storepass changeit;                                  \
        done
        mv ${.TARGET}.tmp ${.TARGET}



Home | Main Index | Thread Index | Old Index