From d93e2e53371fcd7982a253c8d8a328605c2e2198 Mon Sep 17 00:00:00 2001 From: Adrien Destugues Date: Tue, 10 Nov 2015 00:20:49 +0100 Subject: [PATCH] Update ca_root_certificates. Now that we have OpenSSL 1.2, we can use up to date certificates again. --- .../ca_root_certificates-2015_10_28.recipe | 36 +++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 haiku-data/ca_root_certificates/ca_root_certificates-2015_10_28.recipe diff --git a/haiku-data/ca_root_certificates/ca_root_certificates-2015_10_28.recipe b/haiku-data/ca_root_certificates/ca_root_certificates-2015_10_28.recipe new file mode 100644 index 000000000..384d2e9ef --- /dev/null +++ b/haiku-data/ca_root_certificates/ca_root_certificates-2015_10_28.recipe @@ -0,0 +1,36 @@ +SUMMARY="Bundle of CA root certificates" +DESCRIPTION="Certificate data from Mozilla. + +This is a bundle of X.509 certificates of public Certificate Authorities (CA). \ +These were automatically extracted from Mozilla's root certificates file \ +(certdata.txt). It contains the certificates in PEM format and therefore \ +can be directly used with curl / libcurl / php_curl, or with an \ +Apache+mod_ssl webserver for SSL client authentication." +HOMEPAGE="http://www.mozilla.org/en-US/about/governance/policies/security-group/certs/" +COPYRIGHT="2008-2014 Mozilla" +LICENSE="MPL v1.1 + GNU GPL v2 + GNU LGPL v2.1" +SOURCE_URI="https://github.com/bagder/ca-bundle/raw/86347ecbdc2277f365d02f0d208b822a214e012d/ca-bundle.crt#noarchive" +SOURCE_FILENAME="ca-bundle-$portVersion.crt" +CHECKSUM_SHA256="7d8aaf09d6756ca3387bc1f1927debd748378dda807c30c84d116ed4e90d31b8" +REVISION="1" +ARCHITECTURES="any" +DISABLE_SOURCE_PACKAGE=yes + +PROVIDES=" + ca_root_certificates = $portVersion compat >= 0 + " +REQUIRES=" + " +BUILD_REQUIRES=" + " +BUILD_PREREQUIRES=" + " + +INSTALL() +{ + installDir="$dataRootDir/ssl/" + mkdir -p "$installDir" + cp ca-bundle-*.crt "$installDir/CARootCertificates.pem" +}