diff --git a/.gitignore b/.gitignore index e69de29..ef12f53 100644 --- a/.gitignore +++ b/.gitignore @@ -0,0 +1 @@ +x509watch-0.2.0.tar.gz diff --git a/sources b/sources index e69de29..32ffdeb 100644 --- a/sources +++ b/sources @@ -0,0 +1 @@ +df482f9421a0a9a666d837468c329261 x509watch-0.2.0.tar.gz diff --git a/x509watch.spec b/x509watch.spec new file mode 100644 index 0000000..54f024c --- /dev/null +++ b/x509watch.spec @@ -0,0 +1,45 @@ +Summary: Simple tool to list expiring or expired X.509 certificates +Name: x509watch +Version: 0.2.0 +Release: 1%{?dist} +License: GPLv2+ +Group: Applications/System +URL: http://ftp.robert-scheck.de/linux/%{name}/ +Source: http://ftp.robert-scheck.de/linux/%{name}/%{name}-%{version}.tar.gz +Requires: %{_bindir}/openssl +BuildArch: noarch +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) + +%description +x509watch is a simple command line application, written in Perl, that can be +used to list soon expiring or already expired X.509 certificates, such as e.g. +SSL certificates. All certificates are searched by default in the standard PKI +directory, but any other directory can be specified as parameter. Only Base64 +encoded DER and PEM X.509 certificates are supported. + +%prep +%setup -q + +%build + +%install +rm -rf $RPM_BUILD_ROOT +make DESTDIR=$RPM_BUILD_ROOT install + +%clean +rm -rf $RPM_BUILD_ROOT + +%files +%defattr(-,root,root,-) +%doc ChangeLog COPYING README +%{_bindir}/%{name} +%{_sysconfdir}/cron.daily/%{name} +%config(noreplace) %{_sysconfdir}/sysconfig/%{name} + +%changelog +* Tue Jul 27 2010 Robert Scheck 0.2.0-1 +- Upgrade to 0.2.0 (#618059) + +* Mon Jul 26 2010 Robert Scheck 0.1.0-1 +- Upgrade to 0.1.0 +- Initial spec file for Fedora and Red Hat Enterprise Linux