910a59e99d
- Add documentation for client/server mode. - Add --pinfd and --pinfile to server mode.
159 lines
4.8 KiB
RPMSpec
159 lines
4.8 KiB
RPMSpec
Summary: Signing utility for UEFI binaries
|
|
Name: pesign
|
|
Version: 0.99
|
|
Release: 1%{?dist}
|
|
Group: Development/System
|
|
License: GPLv2
|
|
URL: https://github.com/vathpela/pesign
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
|
BuildRequires: git gnu-efi nspr nspr-devel nss nss-devel nss-util popt-devel
|
|
Requires: nspr nss nss-util popt rpm
|
|
Requires(pre): shadow-utils
|
|
ExclusiveArch: i686 x86_64 ia64
|
|
|
|
# there is no tarball at github, of course. To get this version do:
|
|
# git clone https://github.com/vathpela/pesign.git
|
|
# git checkout %%{version}
|
|
Source0: pesign-%{version}.tar.bz2
|
|
Source1: rh-test-certs.tar.bz2
|
|
|
|
%description
|
|
This package contains the pesign utility for signing UEFI binaries as
|
|
well as other associated tools.
|
|
|
|
%prep
|
|
%setup -q -a 1
|
|
git init
|
|
git config user.email "pesign-owner@fedoraproject.org"
|
|
git config user.name "Fedora Ninjas"
|
|
git add .
|
|
git commit -a -q -m "%{version} baseline."
|
|
git am %{patches} </dev/null
|
|
|
|
%build
|
|
make PREFIX=%{_prefix} LIBDIR=%{_libdir}
|
|
|
|
%install
|
|
rm -rf %{buildroot}
|
|
mkdir -p %{buildroot}/%{_libdir}
|
|
make PREFIX=%{_prefix} LIBDIR=%{_libdir} INSTALLROOT=%{buildroot} install
|
|
|
|
# there's some stuff that's not really meant to be shipped yet
|
|
rm -rf %{buildroot}/boot %{buildroot}/usr/include
|
|
rm -rf %{buildroot}%{_libdir}/libdpe*
|
|
mv rh-test-certs/etc/pki/pesign/* %{buildroot}/etc/pki/pesign/
|
|
|
|
%clean
|
|
rm -rf %{buildroot}
|
|
|
|
%pre
|
|
getent group pesign >/dev/null || groupadd -r pesign
|
|
getent passwd pesign >/dev/null || \
|
|
useradd -r -g pesign -d /var/run/pesign -s /sbin/nologin \
|
|
-c "Group for the pesign signing daemon" pesign
|
|
exit 0
|
|
|
|
%post
|
|
%systemd_post pesign.service
|
|
|
|
%preun
|
|
%systemd_preun pesign.service
|
|
|
|
%postun
|
|
%systemd_postun_with_restart pesign.service
|
|
|
|
%files
|
|
%defattr(-,root,root,-)
|
|
%doc README TODO COPYING
|
|
%{_bindir}/pesign
|
|
%{_bindir}/pesign-client
|
|
%{_sysconfdir}/popt.d/pesign.popt
|
|
%{_sysconfdir}/rpm/macros.pesign
|
|
%{_mandir}/man*/*
|
|
%{_unitdir}/pesign.service
|
|
%{_prefix}/lib/tmpfiles.d/pesign.conf
|
|
%dir %attr(0770,pesign,pesign) /etc/pki/pesign
|
|
%attr(0660,pesign,pesign) /etc/pki/pesign/*
|
|
%dir %attr(0770, pesign, pesign) %{_localstatedir}/run/%{name}
|
|
%ghost %attr(0660, -, -) %{_localstatedir}/run/%{name}/socket
|
|
%ghost %attr(0660, -, -) %{_localstatedir}/run/%{name}/pesign.pid
|
|
|
|
%changelog
|
|
* Mon Oct 15 2012 Peter Jones <pjones@redhat.com> - 0.99-1
|
|
- Update to 0.99
|
|
- Add documentation for client/server mode.
|
|
- Add --pinfd and --pinfile to server mode.
|
|
|
|
* Fri Oct 12 2012 Peter Jones <pjones@redhat.com> - 0.98-1
|
|
- Update to 0.98
|
|
- Add client/server mode.
|
|
|
|
* Mon Oct 01 2012 Peter Jones <pjones@redhat.com> - 0.10-5
|
|
- Fix missing section address fixup.
|
|
|
|
* Wed Aug 15 2012 Peter Jones <pjones@redhat.com> - 0.10-4
|
|
- Make macros.pesign even better (and make it work right for i686 packages)
|
|
|
|
* Tue Aug 14 2012 Peter Jones <pjones@redhat.com> - 0.10-3
|
|
- Only sign things on x86_64; all else ignore gracefully.
|
|
|
|
* Tue Aug 14 2012 Peter Jones <pjones@redhat.com> - 0.10-2
|
|
- Make macros.pesign more reliable
|
|
|
|
* Mon Aug 13 2012 Peter Jones <pjones@redhat.com> - 0.10-1
|
|
- Update to 0.10
|
|
- Include rpm macros to support easy custom signing of signed packages.
|
|
|
|
* Fri Aug 10 2012 Peter Jones <pjones@redhat.com> - 0.9-1
|
|
- Update to 0.9
|
|
- Bug fix from Gary Ching-Pang Lin
|
|
- Support NSS Token selection for use with smart cards.
|
|
|
|
* Wed Aug 08 2012 Peter Jones <pjones@redhat.com> - 0.8-1
|
|
- Update to 0.8
|
|
- Don't open the db read-write
|
|
- Fix permissions on keystore (everybody can sign with test keys)
|
|
|
|
* Wed Aug 08 2012 Peter Jones <pjones@redhat.com> - 0.7-2
|
|
- Include test keys.
|
|
|
|
* Mon Jul 30 2012 Peter Jones <pjones@redhat.com> - 0.7-1
|
|
- Update to 0.7
|
|
- Better fix for MS compatibility.
|
|
|
|
* Mon Jul 30 2012 Peter Jones <pjones@redhat.com> - 0.6-1
|
|
- Update to 0.6
|
|
- Bug-for-bug compatibility with signtool.exe .
|
|
|
|
* Fri Jul 20 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.5-2
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
|
* Wed Jul 11 2012 Peter Jones <pjones@redhat.com> - 0.5-1
|
|
- Rebase to 0.5
|
|
- Do more rigorous bounds checking when hashing a new binary.
|
|
|
|
* Tue Jul 10 2012 Peter Jones <pjones@redhat.com> - 0.3-2
|
|
- Rebase to 0.4
|
|
|
|
* Fri Jun 22 2012 Peter Jones <pjones@redhat.com> - 0.3-2
|
|
- Move man page to a more reasonable place.
|
|
|
|
* Fri Jun 22 2012 Peter Jones <pjones@redhat.com> - 0.3-1
|
|
- Update to upstream's 0.3 .
|
|
|
|
* Thu Jun 21 2012 Peter Jones <pjones@redhat.com> - 0.2-4
|
|
- Do not build with smp flags.
|
|
|
|
* Thu Jun 21 2012 Peter Jones <pjones@redhat.com> - 0.2-3
|
|
- Make it build on i686, though it's unclear it'll ever be necessary.
|
|
|
|
* Thu Jun 21 2012 Peter Jones <pjones@redhat.com> - 0.2-2
|
|
- Fix compile problem with f18's compiler.
|
|
|
|
* Thu Jun 21 2012 Peter Jones <pjones@redhat.com> - 0.2-1
|
|
- Fix some rpmlint complaints nirik pointed out
|
|
- Add popt-devel build dep
|
|
|
|
* Fri Jun 15 2012 Peter Jones <pjones@redhat.com> - 0.1-1
|
|
- First version of SRPM.
|