2010-04-07 09:40:17 +00:00
|
|
|
# certdata.txt is generated by extracting it from Mozilla CVS.
|
|
|
|
# This is done by running:
|
|
|
|
#
|
|
|
|
# cvs -d :pserver:anonymous@cvs-mirror.mozilla.org:/cvsroot \
|
|
|
|
# co -p mozilla/security/nss/lib/ckfw/builtins/certdata.txt \
|
|
|
|
# > certdata.txt
|
|
|
|
#
|
|
|
|
# Keep the RCS version in sync with the spec Version.
|
2008-06-02 08:47:49 +00:00
|
|
|
|
|
|
|
%define pkidir %{_sysconfdir}/pki
|
|
|
|
|
|
|
|
Summary: The Mozilla CA root certificate bundle
|
|
|
|
Name: ca-certificates
|
2010-04-07 09:40:17 +00:00
|
|
|
Version: 2010.63
|
|
|
|
Release: 1%{?dist}
|
2008-06-02 08:47:49 +00:00
|
|
|
License: Public Domain
|
|
|
|
Group: System Environment/Base
|
|
|
|
URL: http://www.mozilla.org/
|
2010-01-15 17:11:52 +00:00
|
|
|
Source0: certdata.txt
|
|
|
|
Source1: blacklist.txt
|
|
|
|
Source2: generate-cacerts.pl
|
|
|
|
Source3: certdata2pem.py
|
2008-06-02 08:47:49 +00:00
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
|
2010-01-15 20:22:01 +00:00
|
|
|
BuildRequires: perl, java-openjdk, python, rcs
|
2008-06-02 08:47:49 +00:00
|
|
|
BuildArch: noarch
|
|
|
|
|
|
|
|
%description
|
|
|
|
This package contains the set of CA certificates chosen by the
|
|
|
|
Mozilla Foundation for use with the Internet PKI.
|
|
|
|
|
|
|
|
%prep
|
|
|
|
rm -rf %{name}
|
2010-01-15 20:22:01 +00:00
|
|
|
mkdir %{name} %{name}/certs %{name}/java
|
2008-06-02 08:47:49 +00:00
|
|
|
|
|
|
|
%build
|
2010-01-15 17:11:52 +00:00
|
|
|
pushd %{name}/certs
|
|
|
|
cp %{SOURCE0} %{SOURCE1} .
|
|
|
|
python %{SOURCE3}
|
|
|
|
popd
|
2008-06-02 08:47:49 +00:00
|
|
|
pushd %{name}
|
2010-01-15 17:11:52 +00:00
|
|
|
(
|
|
|
|
cat <<EOF
|
|
|
|
# This is a bundle of X.509 certificates of public Certificate
|
|
|
|
# Authorities. It was generated from the Mozilla root CA list.
|
|
|
|
#
|
|
|
|
# Source: mozilla/security/nss/lib/ckfw/builtins/certdata.txt
|
|
|
|
#
|
|
|
|
# Generated from:
|
|
|
|
EOF
|
|
|
|
ident -q %{SOURCE0} | sed '1d;s/^/#/';
|
|
|
|
echo '#';
|
|
|
|
) > ca-bundle.crt
|
2010-03-18 12:23:55 +00:00
|
|
|
(
|
|
|
|
cat <<EOF
|
|
|
|
# This is a bundle of X.509 certificates of public Certificate
|
|
|
|
# Authorities. It was generated from the Mozilla root CA list.
|
|
|
|
# These certificates are in the OpenSSL "TRUSTED CERTIFICATE"
|
|
|
|
# format and have trust bits set accordingly.
|
|
|
|
#
|
|
|
|
# Source: mozilla/security/nss/lib/ckfw/builtins/certdata.txt
|
|
|
|
#
|
|
|
|
# Generated from:
|
|
|
|
EOF
|
|
|
|
ident -q %{SOURCE0} | sed '1d;s/^/#/';
|
|
|
|
echo '#';
|
|
|
|
) > ca-bundle.trust.crt
|
|
|
|
for f in certs/*.crt; do
|
|
|
|
tbits=`sed -n '/^# openssl-trust/{s/^.*=//;p;}' $f`
|
|
|
|
case $tbits in
|
|
|
|
*serverAuth*) openssl x509 -text -in "$f" >> ca-bundle.crt ;;
|
|
|
|
esac
|
|
|
|
if [ -n "$tbits" ]; then
|
|
|
|
targs=""
|
|
|
|
for t in $tbits; do
|
|
|
|
targs="${targs} -addtrust $t"
|
|
|
|
done
|
|
|
|
openssl x509 -text -in "$f" -trustout $targs >> ca-bundle.trust.crt
|
|
|
|
fi
|
|
|
|
done
|
2010-01-15 20:22:01 +00:00
|
|
|
popd
|
|
|
|
pushd %{name}/java
|
2010-01-15 20:48:32 +00:00
|
|
|
test -s ../ca-bundle.crt || exit 1
|
|
|
|
%{__perl} %{SOURCE2} %{_bindir}/keytool ../ca-bundle.crt
|
2008-06-02 08:47:49 +00:00
|
|
|
touch -r %{SOURCE0} cacerts
|
|
|
|
popd
|
|
|
|
|
|
|
|
%install
|
|
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
|
|
|
|
mkdir -p $RPM_BUILD_ROOT{%{pkidir}/tls/certs,%{pkidir}/java}
|
|
|
|
|
2010-01-15 20:48:32 +00:00
|
|
|
install -p -m 644 %{name}/ca-bundle.crt $RPM_BUILD_ROOT%{pkidir}/tls/certs/ca-bundle.crt
|
2010-03-19 14:00:29 +00:00
|
|
|
install -p -m 644 %{name}/ca-bundle.trust.crt $RPM_BUILD_ROOT%{pkidir}/tls/certs/ca-bundle.trust.crt
|
2008-06-02 09:22:02 +00:00
|
|
|
ln -s certs/ca-bundle.crt $RPM_BUILD_ROOT%{pkidir}/tls/cert.pem
|
2010-01-15 17:11:52 +00:00
|
|
|
touch -r %{SOURCE0} $RPM_BUILD_ROOT%{pkidir}/tls/certs/ca-bundle.crt
|
2010-03-18 12:23:55 +00:00
|
|
|
touch -r %{SOURCE0} $RPM_BUILD_ROOT%{pkidir}/tls/certs/ca-bundle.trust.crt
|
2008-06-02 08:47:49 +00:00
|
|
|
|
|
|
|
# Install Java cacerts file.
|
|
|
|
mkdir -p -m 700 $RPM_BUILD_ROOT%{pkidir}/java
|
2010-01-15 20:22:01 +00:00
|
|
|
install -p -m 644 %{name}/java/cacerts $RPM_BUILD_ROOT%{pkidir}/java/
|
2008-06-02 08:47:49 +00:00
|
|
|
|
|
|
|
%clean
|
|
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
|
|
|
|
%files
|
|
|
|
%defattr(-,root,root,-)
|
|
|
|
%dir %{pkidir}/java
|
|
|
|
%config(noreplace) %{pkidir}/java/cacerts
|
|
|
|
%dir %{pkidir}/tls
|
|
|
|
%dir %{pkidir}/tls/certs
|
2010-03-18 12:23:55 +00:00
|
|
|
%config(noreplace) %{pkidir}/tls/certs/ca-bundle.*crt
|
2008-06-02 09:28:52 +00:00
|
|
|
%{pkidir}/tls/cert.pem
|
2008-06-02 08:47:49 +00:00
|
|
|
|
|
|
|
%changelog
|
2010-04-07 09:40:17 +00:00
|
|
|
* Wed Apr 7 2010 Joe Orton <jorton@redhat.com> - 2010.63-1
|
|
|
|
- update to certdata.txt r1.63
|
|
|
|
- use upstream RCS version in Version
|
|
|
|
|
2010-03-19 14:00:29 +00:00
|
|
|
* Fri Mar 19 2010 Joe Orton <jorton@redhat.com> - 2010-4
|
|
|
|
- fix ca-bundle.crt (#575111)
|
|
|
|
|
2010-03-18 12:23:55 +00:00
|
|
|
* Thu Mar 18 2010 Joe Orton <jorton@redhat.com> - 2010-3
|
|
|
|
- update to certdata.txt r1.58
|
|
|
|
- add /etc/pki/tls/certs/ca-bundle.trust.crt using 'TRUSTED CERTICATE' format
|
|
|
|
- exclude ECC certs from the Java cacerts database
|
|
|
|
- catch keytool failures
|
|
|
|
- fail parsing certdata.txt on finding untrusted but not blacklisted cert
|
|
|
|
|
2010-01-15 20:22:01 +00:00
|
|
|
* Fri Jan 15 2010 Joe Orton <jorton@redhat.com> - 2010-2
|
|
|
|
- fix Java cacert database generation: use Subject rather than Issuer
|
|
|
|
for alias name; add diagnostics; fix some alias names.
|
|
|
|
|
2010-01-15 17:11:52 +00:00
|
|
|
* Mon Jan 11 2010 Joe Orton <jorton@redhat.com> - 2010-1
|
|
|
|
- adopt Python certdata.txt parsing script from Debian
|
|
|
|
|
2009-07-24 18:34:22 +00:00
|
|
|
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2009-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
|
|
|
|
2009-07-22 14:33:22 +00:00
|
|
|
* Wed Jul 22 2009 Joe Orton <jorton@redhat.com> 2009-1
|
|
|
|
- update to certdata.txt r1.53
|
|
|
|
|
2009-02-24 06:21:09 +00:00
|
|
|
* Mon Feb 23 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2008-8
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
|
|
|
|
2008-10-14 09:14:38 +00:00
|
|
|
* Tue Oct 14 2008 Joe Orton <jorton@redhat.com> 2008-7
|
|
|
|
- update to certdata.txt r1.49
|
|
|
|
|
2008-06-25 15:33:23 +00:00
|
|
|
* Wed Jun 25 2008 Thomas Fitzsimmons <fitzsim@redhat.com> - 2008-6
|
|
|
|
- Change generate-cacerts.pl to produce pretty aliases.
|
|
|
|
|
2008-06-02 09:22:02 +00:00
|
|
|
* Mon Jun 2 2008 Joe Orton <jorton@redhat.com> 2008-5
|
|
|
|
- include /etc/pki/tls/cert.pem symlink to ca-bundle.crt
|
|
|
|
|
2008-06-02 08:47:49 +00:00
|
|
|
* Tue May 27 2008 Joe Orton <jorton@redhat.com> 2008-4
|
|
|
|
- use package name for temp dir, recreate it in prep
|
|
|
|
|
|
|
|
* Tue May 27 2008 Joe Orton <jorton@redhat.com> 2008-3
|
|
|
|
- fix source script perms
|
|
|
|
- mark packaged files as config(noreplace)
|
|
|
|
|
|
|
|
* Tue May 27 2008 Joe Orton <jorton@redhat.com> 2008-2
|
|
|
|
- add (but don't use) mkcabundle.pl
|
|
|
|
- tweak description
|
|
|
|
- use /usr/bin/keytool directly; BR java-openjdk
|
|
|
|
|
|
|
|
* Tue May 27 2008 Joe Orton <jorton@redhat.com> 2008-1
|
|
|
|
- Initial build (#448497)
|