93 lines
2.9 KiB
RPMSpec
93 lines
2.9 KiB
RPMSpec
Summary: EFI Boot Manager
|
|
Name: efibootmgr
|
|
Version: 0.12
|
|
Release: 2%{?dist}
|
|
Group: System Environment/Base
|
|
License: GPLv2+
|
|
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
|
|
|
|
# for RHEL / Fedora when efibootmgr was part of the elilo package
|
|
Conflicts: elilo <= 3.6-6
|
|
Obsoletes: elilo <= 3.6-6
|
|
|
|
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
|
|
Firmware Interface (EFI) Boot Manager variables. Additional
|
|
information about EFI can be found at
|
|
http://developer.intel.com/technology/efi/efi.htm and http://uefi.org/.
|
|
|
|
%prep
|
|
%setup -q
|
|
git init
|
|
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
|
|
install -p --mode 755 src/%{name}/%{name} %{buildroot}%{_sbindir}
|
|
gzip -9 -c src/man/man8/%{name}.8 > src/man/man8/%{name}.8.gz
|
|
touch -r src/man/man8/%{name}.8 src/man/man8/%{name}.8.gz
|
|
install -p --mode 644 src/man/man8/%{name}.8.gz %{buildroot}%{_mandir}/man8
|
|
|
|
%clean
|
|
rm -rf %{buildroot}
|
|
|
|
%files
|
|
%defattr(-,root,root,-)
|
|
%{_sbindir}/%{name}
|
|
%{_mandir}/man8/%{name}.8.gz
|
|
%doc README INSTALL COPYING
|
|
|
|
%changelog
|
|
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.12-2
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
|
|
|
* 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
|
|
- 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
|
|
- Make -o parameter validation work better and be more informative
|
|
- Better exit values
|
|
- Fix a segfault with appending ascii arguments.
|
|
|
|
* 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
|
|
|
|
* Mon Jan 13 2014 Jared Dominguez <Jared_Dominguez@dell.com>
|
|
- new home https://github.com/vathpela/efibootmgr
|
|
|
|
* Thu Jan 3 2008 Matt Domsch <Matt_Domsch@dell.com> 0.5.4-1
|
|
- split efibootmgr into its own RPM for Fedora/RHEL.
|
|
|
|
* 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>
|
|
- See doc/ChangeLog
|