2014-04-01 18:51:36 +00:00
|
|
|
Name: efivar
|
2014-05-02 15:00:46 +00:00
|
|
|
Version: 0.10
|
2014-08-16 10:27:45 +00:00
|
|
|
Release: 3%{?dist}
|
2014-04-01 18:51:36 +00:00
|
|
|
Summary: Tools to manage UEFI variables
|
|
|
|
License: LGPLv2.1
|
|
|
|
URL: https://github.com/vathpela/efivar
|
|
|
|
Requires: %{name}-libs = %{version}-%{release}
|
2014-04-01 19:04:39 +00:00
|
|
|
ExclusiveArch: i386 x86_64 aarch64
|
2014-04-01 18:51:36 +00:00
|
|
|
|
|
|
|
BuildRequires: popt-devel git
|
|
|
|
Source0: https://github.com/vathpela/%{name}/archive/efivar-%{version}.tar.xz
|
|
|
|
|
|
|
|
%description
|
|
|
|
efivar provides a simple command line interface to the UEFI variable facility.
|
|
|
|
|
|
|
|
%package libs
|
|
|
|
Summary: Library to manage UEFI variables
|
|
|
|
|
|
|
|
%description libs
|
|
|
|
Library to allow for the simple manipulation of UEFI variables.
|
|
|
|
|
|
|
|
%package devel
|
|
|
|
Summary: Development headers for libefivar
|
|
|
|
Requires: %{name}-libs = %{version}-%{release}
|
|
|
|
|
|
|
|
%description devel
|
|
|
|
development headers required to use libefivar.
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q -n %{name}-%{version}
|
|
|
|
git init
|
|
|
|
git config user.email "shim-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 libdir=%{_libdir} bindir=%{_bindir} OPT_FLAGS="$RPM_OPT_FLAGS"
|
|
|
|
|
|
|
|
%install
|
|
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
%makeinstall
|
|
|
|
|
|
|
|
%clean
|
|
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
|
|
|
|
%post libs -p /sbin/ldconfig
|
|
|
|
|
|
|
|
%postun libs -p /sbin/ldconfig
|
|
|
|
|
|
|
|
%files
|
|
|
|
%doc COPYING README
|
|
|
|
%{_bindir}/efivar
|
|
|
|
%{_mandir}/man1/*
|
|
|
|
|
|
|
|
%files devel
|
|
|
|
%{_mandir}/man3/*
|
|
|
|
%{_includedir}/*
|
|
|
|
%{_libdir}/*.so
|
|
|
|
%{_libdir}/pkgconfig/*.pc
|
|
|
|
|
|
|
|
%files libs
|
|
|
|
%{_libdir}/*.so.*
|
|
|
|
|
|
|
|
%changelog
|
2014-08-16 10:27:45 +00:00
|
|
|
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.10-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
|
|
|
|
2014-06-07 09:58:10 +00:00
|
|
|
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.10-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
|
|
|
2014-05-02 15:00:46 +00:00
|
|
|
* Fri May 02 2014 Peter Jones <pjones@redhat.com> - 0.10-1
|
|
|
|
- Update package to 0.10.
|
|
|
|
- Fixes a build error due to different cflags in the builders vs updstream
|
|
|
|
makefile.
|
|
|
|
|
2014-05-02 14:47:16 +00:00
|
|
|
* Fri May 02 2014 Peter Jones <pjones@redhat.com> - 0.9-0.1
|
|
|
|
- Update package to 0.9.
|
|
|
|
|
2014-04-01 18:51:36 +00:00
|
|
|
* Tue Apr 01 2014 Peter Jones <pjones@redhat.com> - 0.8-0.1
|
|
|
|
- Update package to 0.8 as well.
|
|
|
|
|
|
|
|
* Fri Oct 25 2013 Peter Jones <pjones@redhat.com> - 0.7-1
|
|
|
|
- Update package to 0.7
|
|
|
|
- adds --append support to the binary.
|
|
|
|
|
|
|
|
* Fri Sep 06 2013 Peter Jones <pjones@redhat.com> - 0.6-1
|
|
|
|
- Update package to 0.6
|
|
|
|
- fixes to documentation from lersek
|
|
|
|
- more validation of uefi guids
|
|
|
|
- use .xz for archives
|
|
|
|
|
|
|
|
* Thu Sep 05 2013 Peter Jones <pjones@redhat.com> - 0.5-0.1
|
|
|
|
- Update to 0.5
|
|
|
|
|
|
|
|
* Mon Jun 17 2013 Peter Jones <pjones@redhat.com> - 0.4-0.2
|
|
|
|
- Fix ldconfig invocation
|
|
|
|
|
|
|
|
* Mon Jun 17 2013 Peter Jones <pjones@redhat.com> - 0.4-0.1
|
|
|
|
- Initial spec file
|