wok-6.x rev 17865
Up: cacerts (20150325)
author | Aleksej Bobylev <al.bobylev@gmail.com> |
---|---|
date | Wed Mar 25 17:21:43 2015 +0200 (2015-03-25) |
parents | b1b64d852292 |
children | ed3808231473 |
files | cacerts/description.txt cacerts/receipt cacerts/stuff/make-ca.sh cacerts/stuff/make-cert.pl cacerts/stuff/remove-expired-certs.sh |
line diff
1.1 --- a/cacerts/description.txt Wed Mar 25 16:55:26 2015 +0200 1.2 +++ b/cacerts/description.txt Wed Mar 25 17:21:43 2015 +0200 1.3 @@ -2,5 +2,5 @@ 1.4 In order for a certificate to be trusted, it must be signed by a trusted agent 1.5 called a Certificate Authority (CA). The certificates loaded by this section 1.6 are from the list on the Mozilla version control system and formats it into 1.7 -a form used by OpenSSL-1.0.1e. The certificates can also be used by other 1.8 +a form used by OpenSSL-1.0.2a. The certificates can also be used by other 1.9 applications either directly of indirectly through openssl.
2.1 --- a/cacerts/receipt Wed Mar 25 16:55:26 2015 +0200 2.2 +++ b/cacerts/receipt Wed Mar 25 17:21:43 2015 +0200 2.3 @@ -1,14 +1,15 @@ 2.4 # SliTaz package receipt. 2.5 2.6 PACKAGE="cacerts" 2.7 -VERSION="1.87" 2.8 +VERSION="20150325" 2.9 CATEGORY="security" 2.10 SHORT_DESC="Certificate Authority Certificates" 2.11 MAINTAINER="al.bobylev@gmail.com" 2.12 LICENSE="MPL2" 2.13 WEB_SITE="http://www.linuxfromscratch.org/blfs/view/svn/postlfs/cacerts.html" 2.14 TARBALL="$PACKAGE-$VERSION.txt" 2.15 -WGET_URL="http://mxr.mozilla.org/mozilla/source/security/nss/lib/ckfw/builtins/certdata.txt?raw=1" 2.16 +#WGET_URL="http://mxr.mozilla.org/mozilla/source/security/nss/lib/ckfw/builtins/certdata.txt?raw=1" 2.17 +WGET_URL="http://anduin.linuxfromscratch.org/sources/other/certdata.txt" 2.18 2.19 DEPENDS="openssl" 2.20 BUILD_DEPENDS="openssl"
3.1 --- a/cacerts/stuff/make-ca.sh Wed Mar 25 16:55:26 2015 +0200 3.2 +++ b/cacerts/stuff/make-ca.sh Wed Mar 25 17:21:43 2015 +0200 3.3 @@ -34,7 +34,7 @@ 3.4 3.5 mkdir "${TEMPDIR}/certs" 3.6 3.7 -# Get a list of staring lines for each cert 3.8 +# Get a list of starting lines for each cert 3.9 CERTBEGINLIST=$(grep -n "^# Certificate" "${certdata}" | cut -d ":" -f1) 3.10 3.11 # Get a list of ending lines for each cert 3.12 @@ -52,11 +52,10 @@ 3.13 sed -n "${certbegin},${certend}p" "${certdata}" > "${TEMPDIR}/certs/${certbegin}.tmp" 3.14 done 3.15 3.16 -unset CERTBEGINLIST CERTDATA CERTENDLIST certebegin certend 3.17 +unset CERTBEGINLIST CERTDATA CERTENDLIST certbegin certend 3.18 3.19 mkdir -p certs 3.20 -touch certs/dummy 3.21 -rm certs/* # Make sure the directory is clean 3.22 +rm -f certs/* # Make sure the directory is clean 3.23 3.24 for tempfile in ${TEMPDIR}/certs/*.tmp; do 3.25 # Make sure that the cert is trusted...
4.1 --- a/cacerts/stuff/make-cert.pl Wed Mar 25 16:55:26 2015 +0200 4.2 +++ b/cacerts/stuff/make-cert.pl Wed Mar 25 17:21:43 2015 +0200 4.3 @@ -1,7 +1,7 @@ 4.4 #!/usr/bin/perl -w 4.5 4.6 # Used to generate PEM encoded files from Mozilla certdata.txt. 4.7 -# Run as ./mkcrt.pl > certificate.crt 4.8 +# Run as ./make-cert.pl > certificate.crt 4.9 # 4.10 # Parts of this script courtesy of RedHat (mkcabundle.pl) 4.11 #
5.1 --- a/cacerts/stuff/remove-expired-certs.sh Wed Mar 25 16:55:26 2015 +0200 5.2 +++ b/cacerts/stuff/remove-expired-certs.sh Wed Mar 25 17:21:43 2015 +0200 5.3 @@ -1,5 +1,5 @@ 5.4 #!/bin/sh 5.5 -# Begin /bin/remove-expired-certs.sh 5.6 +# Begin remove-expired-certs.sh 5.7 # 5.8 # Version 20120211 5.9