Blame SPECS/pesign.spec

3020c4
%global macrosdir %(d=%{_rpmconfigdir}/macros.d; [ -d $d ] || d=%{_sysconfdir}/rpm; echo $d)
3020c4
3020c4
Name:    pesign
3020c4
Summary: Signing utility for UEFI binaries
3020c4
Version: 113
3020c4
Release: 21%{?dist}
3020c4
License: GPLv2
3020c4
URL:     https://github.com/vathpela/pesign
3020c4
3020c4
Obsoletes: pesign-rh-test-certs <= 0.111-7
3020c4
BuildRequires: make
3020c4
BuildRequires: gcc
3020c4
BuildRequires: git
3020c4
BuildRequires: nspr
3020c4
BuildRequires: nss
3020c4
BuildRequires: nss-util
3020c4
BuildRequires: popt-devel
3020c4
BuildRequires: nss-tools
3020c4
BuildRequires: nspr-devel >= 4.9.2-1
3020c4
BuildRequires: nss-devel >= 3.13.6-1
3020c4
BuildRequires: efivar-devel >= 31-1
3020c4
BuildRequires: libuuid-devel
3020c4
BuildRequires: tar
3020c4
BuildRequires: xz
3020c4
BuildRequires: python3-rpm-macros
3020c4
BuildRequires: python3
3020c4
%if 0%{?rhel} >= 7 || 0%{?fedora} >= 17
3020c4
BuildRequires: systemd-rpm-macros
3020c4
%endif
3020c4
Requires:      nspr
3020c4
Requires:      nss
3020c4
Requires:      nss-tools >= 3.53
3020c4
Requires:      nss-util
3020c4
Requires:      popt
3020c4
Requires:      rpm
3020c4
Requires(pre): shadow-utils
3020c4
ExclusiveArch: %{ix86} x86_64 ia64 aarch64 %{arm}
3020c4
%if 0%{?rhel} == 7
3020c4
BuildRequires: rh-signing-tools >= 1.20-2
3020c4
%endif
3020c4
3020c4
Source0: https://github.com/rhboot/pesign/releases/download/%{version}/pesign-%{version}.tar.bz2
3020c4
Source1: certs.tar.xz
3020c4
Source2: pesign.py
3020c4
3020c4
Patch0001: 0001-efikeygen-Fix-the-build-with-nss-3.44.patch
3020c4
Patch0002: 0002-pesigcheck-Fix-a-wrong-assignment.patch
3020c4
Patch0003: 0003-Make-0.112-client-and-server-work-with-the-113-proto.patch
3020c4
Patch0004: 0004-Rename-var-run-to-run.patch
3020c4
Patch0005: 0005-Apparently-opensc-got-updated-and-the-token-name-cha.patch
3020c4
Patch0006: 0006-client-try-run-and-var-run-for-the-socket-path.patch
3020c4
Patch0007: 0007-client-remove-an-extra-debug-print.patch
3020c4
Patch0008: 0008-Move-most-of-macros.pesign-to-pesign-rpmbuild-helper.patch
3020c4
Patch0009: 0009-pesign-authorize-shellcheck.patch
3020c4
Patch0010: 0010-pesign-authorize-don-t-setfacl-etc-pki-pesign-foo.patch
3020c4
Patch0011: 0011-kernel-building-hack.patch
3020c4
Patch0012: 0012-Use-run-not-var-run.patch
3020c4
Patch0013: 0013-Turn-off-free-nonheap-object.patch
3020c4
Patch0014: 0014-macros.pesign-handle-centos-like-rhel-with-rhelver.patch
3020c4
Patch0015: 0015-Detect-the-presence-of-rpm-sign-when-checking-for-rh.patch
3020c4
3020c4
%description
3020c4
This package contains the pesign utility for signing UEFI binaries as
3020c4
well as other associated tools.
3020c4
3020c4
%prep
3020c4
%setup -q -T -b 0
3020c4
%setup -q -T -D -c -n pesign-%{version}/ -a 1
3020c4
git init
3020c4
git config user.email "pesign-owner@fedoraproject.org"
3020c4
git config user.name "Fedora Ninjas"
3020c4
git add .
3020c4
git commit -a -q -m "%{version} baseline."
3020c4
git am %{patches} 
3020c4
git config --unset user.email
3020c4
git config --unset user.name
3020c4
3020c4
%build
3020c4
make PREFIX=%{_prefix} LIBDIR=%{_libdir}
3020c4
3020c4
%install
3020c4
mkdir -p %{buildroot}/%{_libdir}
3020c4
make PREFIX=%{_prefix} LIBDIR=%{_libdir} INSTALLROOT=%{buildroot} \
3020c4
	install
3020c4
%if 0%{?rhel} >= 7 || 0%{?fedora} >= 17
3020c4
make PREFIX=%{_prefix} LIBDIR=%{_libdir} INSTALLROOT=%{buildroot} \
3020c4
	install_systemd
3020c4
%endif
3020c4
3020c4
# there's some stuff that's not really meant to be shipped yet
3020c4
rm -rf %{buildroot}/boot %{buildroot}/usr/include
3020c4
rm -rf %{buildroot}%{_libdir}/libdpe*
3020c4
mkdir -p %{buildroot}%{_sysconfdir}/pki/pesign/
3020c4
mkdir -p %{buildroot}%{_sysconfdir}/pki/pesign-rh-test/
3020c4
cp -a etc/pki/pesign/* %{buildroot}%{_sysconfdir}/pki/pesign/
3020c4
cp -a etc/pki/pesign-rh-test/* %{buildroot}%{_sysconfdir}/pki/pesign-rh-test/
3020c4
3020c4
if [ %{macrosdir} != %{_sysconfdir}/rpm ]; then
3020c4
	mkdir -p %{buildroot}%{macrosdir}
3020c4
	mv %{buildroot}%{_sysconfdir}/rpm/macros.pesign \
3020c4
		%{buildroot}%{macrosdir}
3020c4
	rmdir %{buildroot}%{_sysconfdir}/rpm
3020c4
fi
3020c4
rm -vf %{buildroot}/usr/share/doc/pesign-%{version}/COPYING
3020c4
3020c4
# and find-debuginfo.sh has some pretty awful deficencies too...
3020c4
cp -av libdpe/*.[ch] src/
3020c4
3020c4
install -d -m 0755 %{buildroot}%{python3_sitelib}/mockbuild/plugins/
3020c4
install -m 0755 %{SOURCE2} %{buildroot}%{python3_sitelib}/mockbuild/plugins/
3020c4
3020c4
%pre
3020c4
getent group pesign >/dev/null || groupadd -r pesign
3020c4
getent passwd pesign >/dev/null || \
3020c4
	useradd -r -g pesign -d /run/pesign -s /sbin/nologin \
3020c4
		-c "Group for the pesign signing daemon" pesign
3020c4
exit 0
3020c4
3020c4
%if 0%{?rhel} >= 7 || 0%{?fedora} >= 17
3020c4
%post
3020c4
%systemd_post pesign.service
3020c4
3020c4
%preun
3020c4
%systemd_preun pesign.service
3020c4
3020c4
%postun
3020c4
%systemd_postun_with_restart pesign.service
3020c4
3020c4
%posttrans
3020c4
certutil -d %{_sysconfdir}/pki/pesign/ -X -L > /dev/null
3020c4
3020c4
# this is disabled currently because it breaks the fedora kernel build root
3020c4
# generation - because we don't currently have a good way of populating
3020c4
# /etc/pesign/{users,groups} before the buildroot is installed, or
3020c4
# populating them and re-running pesign-authorize afterwards but before the
3020c4
# package build of e.g. kernel
3020c4
#%%{_libexecdir}/pesign/pesign-authorize
3020c4
%endif
3020c4
3020c4
%files
3020c4
%{!?_licensedir:%global license %%doc}
3020c4
%license COPYING
3020c4
%doc README TODO
3020c4
%{_bindir}/authvar
3020c4
%{_bindir}/efikeygen
3020c4
%{_bindir}/efisiglist
3020c4
%{_bindir}/pesigcheck
3020c4
%{_bindir}/pesign
3020c4
%{_bindir}/pesign-client
3020c4
%dir %{_libexecdir}/pesign/
3020c4
%dir %attr(0770,pesign,pesign) %{_sysconfdir}/pki/pesign/
3020c4
%config(noreplace) %attr(0660,pesign,pesign) %{_sysconfdir}/pki/pesign/*
3020c4
%dir %attr(0775,pesign,pesign) %{_sysconfdir}/pki/pesign-rh-test/
3020c4
%config(noreplace) %attr(0664,pesign,pesign) %{_sysconfdir}/pki/pesign-rh-test/*
3020c4
%{_libexecdir}/pesign/pesign-authorize
3020c4
%{_libexecdir}/pesign/pesign-rpmbuild-helper
3020c4
%config(noreplace)/%{_sysconfdir}/pesign/users
3020c4
%config(noreplace)/%{_sysconfdir}/pesign/groups
3020c4
%{_sysconfdir}/popt.d/pesign.popt
3020c4
%{macrosdir}/macros.pesign
3020c4
%{_mandir}/man*/*
3020c4
%dir %attr(0770, pesign, pesign) %{_rundir}/%{name}
3020c4
%ghost %attr(0660, -, -) %{_rundir}/%{name}/socket
3020c4
%ghost %attr(0660, -, -) %{_rundir}/%{name}/pesign.pid
3020c4
%if 0%{?rhel} >= 7 || 0%{?fedora} >= 17
3020c4
%{_tmpfilesdir}/pesign.conf
3020c4
%{_unitdir}/pesign.service
3020c4
%endif
3020c4
%{python3_sitelib}/mockbuild/plugins/*/pesign.*
3020c4
%{python3_sitelib}/mockbuild/plugins/pesign.*
3020c4
3020c4
%changelog
3020c4
* Tue Dec 14 2021 Robbie Harwood <rharwood@redhat.com> - 113-21
3020c4
- Sync with beta changes
3020c4
- Resolves: rhbz#2030501
3020c4
3020c4
* Tue Aug 10 2021 Peter Jones <pjones@redhat.com> - 113-18
3020c4
- Detect the CentOS version number correctly in rpm pesign macro
3020c4
  Related: rhbz#1991688
3020c4
3020c4
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 113-17
3020c4
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
3020c4
  Related: rhbz#1991688
3020c4
3020c4
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 113-16
3020c4
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
3020c4
3020c4
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 113-15
3020c4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
3020c4
3020c4
* Mon Nov 16 2020 Jeff Law <law@redhat.com> - 113-14
3020c4
- Turn off -Wfree-nonheap-object
3020c4
3020c4
* Mon Aug 03 2020 Peter Jones <pjones@redhat.com> - 113-13
3020c4
- Add the rundir related stuff that was staged on my f32 checkout.
3020c4
3020c4
* Mon Aug 03 2020 Peter Jones <pjones@redhat.com> - 113-12
3020c4
- Try to make kernel and fwupd both work at the same time.
3020c4
3020c4
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 113-11
3020c4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
3020c4
3020c4
* Thu Jul 16 2020 Peter Jones <pjones@redhat.com> - 113-10
3020c4
- I really cannot figure out why bkernel01 thinks the certificate nickname
3020c4
  starts with /CN=, but it does, so I'm gonna stop fighting with the sand.
3020c4
3020c4
* Thu Jul 16 2020 Peter Jones <pjones@redhat.com> - 113-9
3020c4
- Even more kernel build debugging...
3020c4
3020c4
* Tue Jul 07 2020 Peter Jones <pjones@redhat.com> - 113-8
3020c4
- More kernel build debugging...
3020c4
3020c4
* Tue Jul 07 2020 Peter Jones <pjones@redhat.com> - 113-6
3020c4
- Disable the pesign-authorize call in posttrans, until we can figure out a
3020c4
  better way to deal with that in the fedora kernel builder chroot setup
3020c4
3020c4
* Tue Jul 07 2020 Peter Jones <pjones@redhat.com> - 113-5
3020c4
- Make pesign require nss-tools for the posttrans scriptlet
3020c4
- Move most of macros.pesign to /usr/libexec/pesign/pesign-rpmbuild-helper
3020c4
3020c4
* Mon Jul 06 2020 Peter Jones <pjones@redhat.com> - 113-4
3020c4
- Attempt to fix kernel signing failures caused by -3...
3020c4
3020c4
* Fri Jun 12 2020 Peter Jones <pjones@redhat.com> - 113-3
3020c4
- Fix the signer name for fedora and some other minor nits
3020c4
  Related: rhbz#1708773
3020c4
  Related: rhbz#1678146
3020c4
3020c4
* Thu Jun 11 2020 Peter Jones <pjones@redhat.com> - 113-2
3020c4
- Fix a signing protocol bug we introduced in 113 that makes the fedora
3020c4
  kernel builders fail.
3020c4
  Related: rhbz#1708773
3020c4
3020c4
* Thu Jun 11 2020 Javier Martinez Canillas <javierm@redhat.com> - 113-1
3020c4
- Update to 113 release
3020c4
  Resolves: rhbz#1708773
3020c4
3020c4
* Mon Jun 08 2020 Javier Martinez Canillas <javierm@redhat.com> - 0.112-31
3020c4
- Switch default NSS database to SQLite format (pjones)
3020c4
  Resolves: rhbz#1827902
3020c4
3020c4
* Mon Feb 24 2020 Peter Jones <pjones@redhat.com> - 0.112-30
3020c4
- Make sure the patch for -29 is actually in the build in f32, and
3020c4
  synchronize with master.
3020c4
3020c4
* Tue Feb 18 2020 Peter Jones <pjones@redhat.com> - 0.112-29
3020c4
- Rebuild to match OpenSC's token name mangling change.
3020c4
3020c4
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.112-28
3020c4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
3020c4
3020c4
* Tue Nov 12 2019 Peter Jones <pjones@redhat.com> - 0.112-27
3020c4
- Rebuild to fix an NSS API issue.	
3020c4
3020c4
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.112-26
3020c4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
3020c4
3020c4
* Wed Mar  6 2019 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 0.112-25
3020c4
- Fix build (#1675653)
3020c4
- Add missing closing quote in macro (#1651020)
3020c4
- Update obsolete /var/run/ path (#1678146)
3020c4
3020c4
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.112-25
3020c4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
3020c4
3020c4
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.112-24
3020c4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
3020c4
3020c4
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.112-23
3020c4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
3020c4
3020c4
* Mon Jan 22 2018 Peter Robinson <pbrobinson@fedoraproject.org> 0.112-22
3020c4
- Minor spec cleanups, fix arm conditional
3020c4
3020c4
* Fri Oct 06 2017 Troy Dawson <tdawson@redhat.com> - 0.112-21
3020c4
- Cleanup spec file conditionals
3020c4
3020c4
* Tue Aug 15 2017 Peter Jones <pjones@redhat.com> - 0.112-20
3020c4
- Maybe fewer typoes would be better.
3020c4
3020c4
* Tue Aug 15 2017 Peter Jones <pjones@redhat.com> - 0.112-19
3020c4
- Update to match f26's build so new kernel builds will work.
3020c4
3020c4
* Thu Aug 10 2017 Peter Jones <pjones@redhat.com> - 0.112-10
3020c4
- Try to fix the db problem nirik is seeing trying to upgrade the builders.
3020c4
3020c4
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.112-9
3020c4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
3020c4
3020c4
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.112-8
3020c4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
3020c4
3020c4
* Sat Jul 08 2017 Peter Jones <pjones@redhat.com> - 0.112-7
3020c4
- Rebuild for efivar-31-1.fc26
3020c4
  Related: rhbz#1468841
3020c4
3020c4
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.112-6
3020c4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
3020c4
3020c4
* Fri Jan 06 2017 Peter Jones <pjones@redhat.com> - 0.112-5
3020c4
- Don't Req: or BuildReq: coolkey or opensc; those belong in system deploy
3020c4
  scripts.
3020c4
  Related: rhbz#1349073
3020c4
3020c4
* Wed Aug 17 2016 Peter Jones <pjones@redhat.com> - 0.112-4
3020c4
- Build as -4 to make bodhi happy.
3020c4
3020c4
* Fri Aug 12 2016 Adam Williamson <awilliam@redhat.com> - 0.112-3
3020c4
- backport fix for command line parsing from upstream master
3020c4
3020c4
* Wed Aug 10 2016 Peter Jones <pjones@redhat.com> - 0.112-2
3020c4
- Build with newer efivar.
3020c4
3020c4
* Wed Apr 20 2016 Peter Jones <pjones@redhat.com> - 0.112-1
3020c4
- Update to 0.112
3020c4
- Also fix up some spec file woes:
3020c4
  - dumb things in %%setup
3020c4
  - find-debuginfo.sh not working right for some source files...
3020c4
3020c4
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0.111-8
3020c4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
3020c4
3020c4
* Thu Dec 10 2015 Peter Jones <pjones@redhat.com> - 0.111-7
3020c4
- Obsolete pesign-rh-test-certs, it was in -1's update.
3020c4
  Resolves: rhbz#1283475
3020c4
3020c4
* Wed Dec 02 2015 Peter Jones <pjones@redhat.com> - 0.111-6
3020c4
- *Don't* use --certdir if we're using the socket.
3020c4
  Related: rhbz#1283475
3020c4
  Related: rhbz#1284063
3020c4
  Related: rhbz#1284561
3020c4
3020c4
* Tue Dec 01 2015 Peter Jones <pjones@redhat.com> - 0.111-5
3020c4
- Actually do a better job of choosing which cert to use when, so people will
3020c4
  stop seeing any of this problem.  (Thanks for the thought, jforbes.)
3020c4
  Resolves: rhbz#1283475
3020c4
  Resolves: rhbz#1284063
3020c4
  Resolves: rhbz#1284561
3020c4
3020c4
* Mon Nov 30 2015 Peter Jones <pjones@redhat.com> - 0.111-5
3020c4
- setfacl even harder.
3020c4
  Related: rhbz#1283475
3020c4
  Related: rhbz#1284063
3020c4
  Related: rhbz#1284561
3020c4
3020c4
* Fri Nov 20 2015 Peter Jones <pjones@redhat.com> - 0.111-3
3020c4
- Better ACL setting code.
3020c4
  Related: rhbz#1283475
3020c4
3020c4
* Thu Nov 19 2015 Peter Jones <pjones@redhat.com> - 0.111-2
3020c4
- Allow the mockbuild user to read the nss database if the account exists.
3020c4
3020c4
* Wed Oct 28 2015 Peter Jones <pjones@redhat.com> - 0.111-1
3020c4
- Rebase to 0.111
3020c4
- Split test certs out into a "Recommends" subpackage.
3020c4
3020c4
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.110-3
3020c4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
3020c4
3020c4
* Wed Mar  4 2015 Ville Skyttä <ville.skytta@iki.fi> - 0.110-2
3020c4
- Install macros in %%{_rpmconfigdir}/macros.d where available (#1074281)
3020c4
3020c4
* Fri Oct 24 2014 Peter Jones <pjones@redhat.com> - 0.110-1
3020c4
- Update to pesign-0.110
3020c4
3020c4
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.108-4
3020c4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
3020c4
3020c4
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.108-3
3020c4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
3020c4
3020c4
* Thu May 29 2014 Peter Jones <pjones@redhat.com> - 0.108-2
3020c4
- Fix a networking problem nirik observed when reinstalling builders.
3020c4
3020c4
* Sat Aug 10 2013 Peter Jones <pjones@redhat.com> - 0.108-1
3020c4
- Remove errant result files and raise an error from %%pesign 
3020c4
3020c4
* Tue Aug 06 2013 Peter Jones <pjones@redhat.com> - 0.106-3
3020c4
- Add code for signing in RHEL 7
3020c4
3020c4
* Mon Aug 05 2013 Peter Jones <pjones@redhat.com> - 0.106-2
3020c4
- Fix for new %%doc rules.
3020c4
3020c4
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.106-2
3020c4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
3020c4
3020c4
* Tue May 21 2013 Peter Jones <pjones@redhat.com> - 0.106-1
3020c4
- Update to 0.106
3020c4
- Hopefully fix the segfault dgilmore was seeing.
3020c4
3020c4
* Mon May 20 2013 Peter Jones <pjones@redhat.com> - 0.105-1
3020c4
- Various bug fixes.
3020c4
3020c4
* Wed May 15 2013 Peter Jones <pjones@redhat.com> - 0.104-1
3020c4
- Make sure alignment is correct on signature list entries
3020c4
  Resolves: rhbz#963361
3020c4
- Make sure section alignment is correct if we have to extend the file
3020c4
3020c4
* Wed Feb 06 2013 Peter Jones <pjones@redhat.com> - 0.103-2
3020c4
- Conditionalize systemd bits so they don't show up in RHEL 6 builds
3020c4
3020c4
* Tue Feb 05 2013 Peter Jones <pjones@redhat.com> - 0.103-1
3020c4
- One more compiler problem.  Let's expect a few more, shall we?
3020c4
3020c4
* Tue Feb 05 2013 Peter Jones <pjones@redhat.com> - 0.102-1
3020c4
- Don't use --std=gnu11 because we have to work on RHEL 6 builders.
3020c4
3020c4
* Mon Feb 04 2013 Peter Jones <pjones@redhat.com> - 0.101-1
3020c4
- Update to 0.101 to fix more "pesign -E" issues.
3020c4
3020c4
* Fri Nov 30 2012 Peter Jones <pjones@redhat.com> - 0.100-1
3020c4
- Fix insertion of signatures from a file.
3020c4
3020c4
* Mon Nov 26 2012 Matthew Garrett <mjg59@srcf.ucam.org> - 0.99-9
3020c4
- Add a patch needed for new shim builds
3020c4
3020c4
* Fri Oct 19 2012 Peter Jones <pjones@redhat.com> - 0.99-8
3020c4
- Get the Fedora signing token name right.
3020c4
3020c4
* Fri Oct 19 2012 Peter Jones <pjones@redhat.com>
3020c4
- Add coolkey and opensc modules to pki database during %%install.
3020c4
3020c4
* Fri Oct 19 2012 Peter Jones <pjones@redhat.com> - 0.99-7
3020c4
- setfacl u:kojibuilder:rw /var/run/pesign/socket
3020c4
- Fix command line checking in client
3020c4
- Add client stdin pin reading.
3020c4
3020c4
* Thu Oct 18 2012 Peter Jones <pjones@redhat.com> - 0.99-6
3020c4
- Automatically select daemon as signer when using rpm macros.
3020c4
3020c4
* Thu Oct 18 2012 Peter Jones <pjones@redhat.com> - 0.99-5
3020c4
- Make it work on the -el6 branch as well.
3020c4
3020c4
* Wed Oct 17 2012 Peter Jones <pjones@redhat.com> - 0.99-4
3020c4
- Fix some more bugs found by valgrind and coverity.
3020c4
- Don't build utils/ ; we're not using them and they're not ready anyway. 
3020c4
3020c4
* Wed Oct 17 2012 Peter Jones <pjones@redhat.com> - 0.99-3
3020c4
- Fix daemon startup bug from 0.99-2
3020c4
3020c4
* Wed Oct 17 2012 Peter Jones <pjones@redhat.com> - 0.99-2
3020c4
- Fix various bugs from 0.99-1
3020c4
- Don't make the database unreadable just yet.
3020c4
3020c4
* Mon Oct 15 2012 Peter Jones <pjones@redhat.com> - 0.99-1
3020c4
- Update to 0.99
3020c4
- Add documentation for client/server mode.
3020c4
- Add --pinfd and --pinfile to server mode.
3020c4
3020c4
* Fri Oct 12 2012 Peter Jones <pjones@redhat.com> - 0.98-1
3020c4
- Update to 0.98
3020c4
- Add client/server mode.
3020c4
3020c4
* Mon Oct 01 2012 Peter Jones <pjones@redhat.com> - 0.10-5
3020c4
- Fix missing section address fixup.
3020c4
3020c4
* Wed Aug 15 2012 Peter Jones <pjones@redhat.com> - 0.10-4
3020c4
- Make macros.pesign even better (and make it work right for i686 packages)
3020c4
3020c4
* Tue Aug 14 2012 Peter Jones <pjones@redhat.com> - 0.10-3
3020c4
- Only sign things on x86_64; all else ignore gracefully.
3020c4
3020c4
* Tue Aug 14 2012 Peter Jones <pjones@redhat.com> - 0.10-2
3020c4
- Make macros.pesign more reliable
3020c4
3020c4
* Mon Aug 13 2012 Peter Jones <pjones@redhat.com> - 0.10-1
3020c4
- Update to 0.10
3020c4
- Include rpm macros to support easy custom signing of signed packages.
3020c4
3020c4
* Fri Aug 10 2012 Peter Jones <pjones@redhat.com> - 0.9-1
3020c4
- Update to 0.9
3020c4
- Bug fix from Gary Ching-Pang Lin
3020c4
- Support NSS Token selection for use with smart cards.
3020c4
3020c4
* Wed Aug 08 2012 Peter Jones <pjones@redhat.com> - 0.8-1
3020c4
- Update to 0.8
3020c4
- Don't open the db read-write
3020c4
- Fix permissions on keystore (everybody can sign with test keys)
3020c4
3020c4
* Wed Aug 08 2012 Peter Jones <pjones@redhat.com> - 0.7-2
3020c4
- Include test keys.
3020c4
3020c4
* Mon Jul 30 2012 Peter Jones <pjones@redhat.com> - 0.7-1
3020c4
- Update to 0.7
3020c4
- Better fix for MS compatibility.
3020c4
3020c4
* Mon Jul 30 2012 Peter Jones <pjones@redhat.com> - 0.6-1
3020c4
- Update to 0.6
3020c4
- Bug-for-bug compatibility with signtool.exe .
3020c4
3020c4
* Fri Jul 20 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.5-2
3020c4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
3020c4
3020c4
* Wed Jul 11 2012 Peter Jones <pjones@redhat.com> - 0.5-1
3020c4
- Rebase to 0.5
3020c4
- Do more rigorous bounds checking when hashing a new binary.
3020c4
3020c4
* Tue Jul 10 2012 Peter Jones <pjones@redhat.com> - 0.3-2
3020c4
- Rebase to 0.4
3020c4
3020c4
* Fri Jun 22 2012 Peter Jones <pjones@redhat.com> - 0.3-2
3020c4
- Move man page to a more reasonable place.
3020c4
3020c4
* Fri Jun 22 2012 Peter Jones <pjones@redhat.com> - 0.3-1
3020c4
- Update to upstream's 0.3 .
3020c4
3020c4
* Thu Jun 21 2012 Peter Jones <pjones@redhat.com> - 0.2-4
3020c4
- Do not build with smp flags.
3020c4
3020c4
* Thu Jun 21 2012 Peter Jones <pjones@redhat.com> - 0.2-3
3020c4
- Make it build on i686, though it's unclear it'll ever be necessary.
3020c4
3020c4
* Thu Jun 21 2012 Peter Jones <pjones@redhat.com> - 0.2-2
3020c4
- Fix compile problem with f18's compiler.
3020c4
3020c4
* Thu Jun 21 2012 Peter Jones <pjones@redhat.com> - 0.2-1
3020c4
- Fix some rpmlint complaints nirik pointed out
3020c4
- Add popt-devel build dep
3020c4
3020c4
* Fri Jun 15 2012 Peter Jones <pjones@redhat.com> - 0.1-1
3020c4
- First version of SRPM.