2008-06-02 08:47:49 +00:00
|
|
|
### Note that mkcabundle.pl is used to generate ca-bundle.crt
|
|
|
|
### before generating a source RPM, and is not used during the
|
|
|
|
### build.
|
|
|
|
|
|
|
|
%define pkidir %{_sysconfdir}/pki
|
|
|
|
|
|
|
|
Summary: The Mozilla CA root certificate bundle
|
|
|
|
Name: ca-certificates
|
2009-07-22 14:33:22 +00:00
|
|
|
Version: 2009
|
2009-07-24 18:34:22 +00:00
|
|
|
Release: 2%{?dist}
|
2008-06-02 08:47:49 +00:00
|
|
|
License: Public Domain
|
|
|
|
Group: System Environment/Base
|
|
|
|
URL: http://www.mozilla.org/
|
|
|
|
Source0: ca-bundle.crt
|
|
|
|
Source1: generate-cacerts.pl
|
|
|
|
Source2: mkcabundle.pl
|
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
|
|
|
|
BuildRequires: perl, java-openjdk
|
|
|
|
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}
|
|
|
|
mkdir %{name}
|
|
|
|
|
|
|
|
%build
|
|
|
|
pushd %{name}
|
|
|
|
%{__perl} %{SOURCE1} %{_bindir}/keytool %{SOURCE0}
|
|
|
|
touch -r %{SOURCE0} cacerts
|
|
|
|
popd
|
|
|
|
|
|
|
|
%install
|
|
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
|
|
|
|
mkdir -p $RPM_BUILD_ROOT{%{pkidir}/tls/certs,%{pkidir}/java}
|
|
|
|
|
|
|
|
install -p -m 644 %{SOURCE0} $RPM_BUILD_ROOT%{pkidir}/tls/certs/ca-bundle.crt
|
2008-06-02 09:22:02 +00:00
|
|
|
ln -s certs/ca-bundle.crt $RPM_BUILD_ROOT%{pkidir}/tls/cert.pem
|
2008-06-02 08:47:49 +00:00
|
|
|
|
|
|
|
# Install Java cacerts file.
|
|
|
|
mkdir -p -m 700 $RPM_BUILD_ROOT%{pkidir}/java
|
|
|
|
install -p -m 644 %{name}/cacerts $RPM_BUILD_ROOT%{pkidir}/java/
|
|
|
|
|
|
|
|
%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
|
|
|
|
%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
|
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)
|