Update to 0.12
- use libefiboot and libefivar to make device paths and load options - don't depend on -lz or -lpci any more Signed-off-by: Peter Jones <pjones@redhat.com>
This commit is contained in:
parent
a51f1321e2
commit
dc516a0053
@ -1,22 +1,21 @@
|
||||
Summary: EFI Boot Manager
|
||||
Name: efibootmgr
|
||||
Version: 0.11.0
|
||||
Version: 0.12
|
||||
Release: 1%{?dist}
|
||||
Group: System Environment/Base
|
||||
License: GPLv2+
|
||||
URL: https://github.com/vathpela/%{name}/
|
||||
BuildRequires: pciutils-devel, zlib-devel, git
|
||||
BuildRequires: efivar-libs efivar-devel
|
||||
URL: http://github.com/rhinstaller/%{name}/
|
||||
BuildRequires: git
|
||||
BuildRequires: efivar-libs >= 0.19 , efivar-devel >= 0.19
|
||||
BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXXXX)
|
||||
# EFI/UEFI don't exist on PPC
|
||||
ExclusiveArch: %{ix86} x86_64 aarch64
|
||||
Requires: efivar-libs >= 0.8
|
||||
|
||||
# for RHEL / Fedora when efibootmgr was part of the elilo package
|
||||
Conflicts: elilo < 3.6-6
|
||||
Obsoletes: elilo < 3.6-6
|
||||
Conflicts: elilo <= 3.6-6
|
||||
Obsoletes: elilo <= 3.6-6
|
||||
|
||||
Source0: https://github.com/vathpela/%{name}/releases/download/%{name}-%{version}/%{name}-%{version}.tar.bz2
|
||||
Source0: https://github.com/rhinstaller/%{name}/releases/download/%{name}-%{version}/%{name}-%{version}.tar.bz2
|
||||
|
||||
%description
|
||||
%{name} displays and allows the user to edit the Intel Extensible
|
||||
@ -27,14 +26,17 @@ http://developer.intel.com/technology/efi/efi.htm and http://uefi.org/.
|
||||
%prep
|
||||
%setup -q
|
||||
git init
|
||||
git config user.email "%{name}-owner@fedoraproject.org"
|
||||
git config user.name "Fedora Ninjas"
|
||||
git config user.email "example@example.com"
|
||||
git config user.name "RHEL Ninjas"
|
||||
git add .
|
||||
git commit -a -q -m "%{version} baseline."
|
||||
git am %{patches} </dev/null
|
||||
git config --unset user.email
|
||||
git config --unset user.name
|
||||
|
||||
%build
|
||||
make %{?_smp_mflags} EXTRA_CFLAGS='%{optflags}'
|
||||
|
||||
%install
|
||||
rm -rf %{buildroot}
|
||||
mkdir -p %{buildroot}%{_sbindir} %{buildroot}%{_mandir}/man8
|
||||
@ -53,34 +55,23 @@ rm -rf %{buildroot}
|
||||
%doc README INSTALL COPYING
|
||||
|
||||
%changelog
|
||||
* Thu May 28 2015 Peter Jones <pjones@redhat.com> - 0.12-1
|
||||
- Update to 0.12
|
||||
- use libefiboot and libefivar to make device paths and load options
|
||||
- don't depend on -lz or -lpci any more
|
||||
|
||||
* Tue Oct 21 2014 Peter Jones <pjones@redhat.com> - 0.11.0-1
|
||||
- Update to 0.11.0
|
||||
- All the great things about 0.10.0
|
||||
- but without the cause of https://github.com/vathpela/efibootmgr/issues/18
|
||||
- Fix "-n" and friends not being assigned/checked right sometimes from 0.10.0-1
|
||||
- Generate more archives to avoid people using github's, because they're just
|
||||
bad.
|
||||
|
||||
* Mon Oct 20 2014 Peter Jones <pjones@redhat.com> - 0.10.0-1
|
||||
- Update to 0.10.0
|
||||
- Make -o parameter validation work better and be more informative
|
||||
- Better exit values
|
||||
- Fix a segfault with appending ascii arguments.
|
||||
|
||||
* Tue Oct 14 2014 Peter Jones <pjones@redhat.com> - 0.9.0-1
|
||||
- Update to 0.9.0
|
||||
|
||||
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.7.0-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
||||
|
||||
* Fri Aug 01 2014 Peter Jones <pjones@redhat.com> - 0.7.0-4
|
||||
- Rebase to current upstream master (in preperation for 0.8.0)
|
||||
|
||||
* Thu Jun 19 2014 Peter Jones <pjones@redhat.com> - 0.7.0-3
|
||||
- Reinstate an accidentally dropped hack to avoid apple brain damage.
|
||||
|
||||
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.7.0-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
||||
|
||||
* Tue Apr 01 2014 Peter Jones <pjones@redhat.com> - 0.7.0-1{?dist}
|
||||
- Release 0.7
|
||||
* Tue Sep 09 2014 Peter Jones <pjones@redhat.com> - 0.8.0-1
|
||||
- Release 0.8.0
|
||||
|
||||
* Mon Jan 13 2014 Peter Jones <pjones@redhat.com> - 0.6.1-1
|
||||
- Release 0.6.1
|
||||
@ -91,7 +82,7 @@ rm -rf %{buildroot}
|
||||
* Thu Jan 3 2008 Matt Domsch <Matt_Domsch@dell.com> 0.5.4-1
|
||||
- split efibootmgr into its own RPM for Fedora/RHEL.
|
||||
|
||||
* Tue Aug 24 2004 Matt Domsch <Matt_Domsch@dell.com>
|
||||
* Thu Aug 24 2004 Matt Domsch <Matt_Domsch@dell.com>
|
||||
- new home linux.dell.com
|
||||
|
||||
* Fri May 18 2001 Matt Domsch <Matt_Domsch@dell.com>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user