2012-06-21 13:33:06 +00:00
|
|
|
Summary: Signing utility for UEFI binaries
|
|
|
|
Name: pesign
|
2012-06-22 15:39:18 +00:00
|
|
|
Version: 0.3
|
2012-06-22 20:18:39 +00:00
|
|
|
Release: 2%{?dist}
|
2012-06-21 13:33:06 +00:00
|
|
|
Group: Development/System
|
|
|
|
License: GPLv2
|
|
|
|
URL: https://github.com/vathpela/pesign
|
2012-06-22 20:18:39 +00:00
|
|
|
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
|
|
|
|
|
2012-06-21 13:33:06 +00:00
|
|
|
# there is no tarball at github, of course. To get this version do:
|
|
|
|
# git clone https://github.com/vathpela/pesign.git
|
|
|
|
# git checkout %%{version}
|
|
|
|
Source: pesign-%{version}.tar.bz2
|
2012-06-22 20:18:39 +00:00
|
|
|
Patch0: 0001-Man-page-should-be-in-section-1.patch
|
2012-06-21 13:33:06 +00:00
|
|
|
|
|
|
|
%description
|
|
|
|
This package contains the pesign utility for signing UEFI binaries as
|
|
|
|
well as other associated tools.
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q
|
|
|
|
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
|
2012-06-22 15:39:18 +00:00
|
|
|
make PREFIX=%{_prefix} LIBDIR=%{_libdir}
|
2012-06-21 13:33:06 +00:00
|
|
|
|
|
|
|
%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
|
2012-06-21 14:55:08 +00:00
|
|
|
rm -rf %{buildroot}/boot %{buildroot}/usr/include %{buildroot}%{_libdir}
|
2012-06-21 13:33:06 +00:00
|
|
|
|
|
|
|
%clean
|
|
|
|
rm -rf %{buildroot}
|
|
|
|
|
|
|
|
%files
|
|
|
|
%defattr(-,root,root,-)
|
|
|
|
%doc README TODO COPYING
|
|
|
|
%{_bindir}/pesign
|
|
|
|
%{_sysconfdir}/popt.d/pesign.popt
|
2012-06-22 20:18:39 +00:00
|
|
|
%{_mandir}/man*/*
|
2012-06-21 13:33:06 +00:00
|
|
|
%attr(0700,root,root) /etc/pki/pesign
|
|
|
|
|
|
|
|
%changelog
|
2012-06-22 20:18:39 +00:00
|
|
|
* Fri Jun 22 2012 Peter Jones <pjones@redhat.com> - 0.3-2
|
|
|
|
- Move man page to a more reasonable place.
|
|
|
|
|
2012-06-22 15:39:18 +00:00
|
|
|
* Fri Jun 22 2012 Peter Jones <pjones@redhat.com> - 0.3-1
|
|
|
|
- Update to upstream's 0.3 .
|
|
|
|
|
2012-06-21 15:04:53 +00:00
|
|
|
* Thu Jun 21 2012 Peter Jones <pjones@redhat.com> - 0.2-4
|
|
|
|
- Do not build with smp flags.
|
|
|
|
|
2012-06-21 14:55:08 +00:00
|
|
|
* 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.
|
|
|
|
|
2012-06-21 13:46:54 +00:00
|
|
|
* Thu Jun 21 2012 Peter Jones <pjones@redhat.com> - 0.2-2
|
|
|
|
- Fix compile problem with f18's compiler.
|
|
|
|
|
2012-06-21 13:33:06 +00:00
|
|
|
* 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.
|