Update to 0.13:

- add efi_symbol_to_guid()
- efi_name_to_guid() will now fall back on efi_symbol_to_guid() as a last
  resort
- "efivar -L" to list all the guids we know about
- better namespacing on libefivar.so (rename well_known_* -> efi_well_known_*)

Signed-off-by: Peter Jones <pjones@redhat.com>
This commit is contained in:
Peter Jones 2014-10-07 14:54:16 -04:00
parent 7c24fedf52
commit 27ee51dc99
2 changed files with 19 additions and 6 deletions

View File

@ -1,13 +1,13 @@
Name: efivar Name: efivar
Version: 0.11 Version: 0.13
Release: 1%{?dist} Release: 1%{?dist}
Summary: Tools to manage UEFI variables Summary: Tools to manage UEFI variables
License: LGPLv2.1 License: LGPLv2.1
URL: https://github.com/vathpela/efivar URL: https://github.com/vathpela/efivar
Requires: %{name}-libs = %{version}-%{release} Requires: %{name}-libs = %{version}-%{release}
ExclusiveArch: %{ix86} x86_64 aarch64 ExclusiveArch: %{ix86} x86_64 aarch64
BuildRequires: popt-devel git BuildRequires: popt-devel git
Source0: https://github.com/vathpela/%{name}/archive/efivar-%{version}.tar.bz2 Source0: https://github.com/vathpela/efivar/releases/download/efivar-%{version}/efivar-%{version}.tar.bz2
%description %description
efivar provides a simple command line interface to the UEFI variable facility. efivar provides a simple command line interface to the UEFI variable facility.
@ -28,7 +28,7 @@ development headers required to use libefivar.
%prep %prep
%setup -q -n %{name}-%{version} %setup -q -n %{name}-%{version}
git init git init
git config user.email "efivar-owner@fedoraproject.org" git config user.email "%{name}-owner@fedoraproject.org"
git config user.name "Fedora Ninjas" git config user.name "Fedora Ninjas"
git add . git add .
git commit -a -q -m "%{version} baseline." git commit -a -q -m "%{version} baseline."
@ -49,7 +49,9 @@ rm -rf $RPM_BUILD_ROOT
%postun libs -p /sbin/ldconfig %postun libs -p /sbin/ldconfig
%files %files
%doc COPYING README %{!?_licensedir:%global license %%doc}
%license COPYING
%doc README
%{_bindir}/efivar %{_bindir}/efivar
%{_mandir}/man1/* %{_mandir}/man1/*
@ -63,6 +65,17 @@ rm -rf $RPM_BUILD_ROOT
%{_libdir}/*.so.* %{_libdir}/*.so.*
%changelog %changelog
* Tue Oct 07 2014 Peter Jones <pjones@redhat.com> - 0.13-1
- Update to 0.13:
- add efi_symbol_to_guid()
- efi_name_to_guid() will now fall back on efi_symbol_to_guid() as a last
resort
- "efivar -L" to list all the guids we know about
- better namespacing on libefivar.so (rename well_known_* -> efi_well_known_*)
* Thu Sep 25 2014 Peter Jones <pjones@redhat.com> - 0.12-1
- Update to 0.12
* Wed Aug 20 2014 Peter Jones <pjones@redhat.com> - 0.11-1 * Wed Aug 20 2014 Peter Jones <pjones@redhat.com> - 0.11-1
- Update to 0.11 - Update to 0.11

View File

@ -1 +1 @@
ad5eef0c9310fb422e3ca677ea6774b9 efivar-0.11.tar.bz2 3e4f593014eae9805719563c007bfd0d efivar-0.13.tar.bz2