-
Notifications
You must be signed in to change notification settings - Fork 104
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Rework version numbers. - Add error tracking API. - Remove use of deprecated readdir_r - SATA device path fixes. - Use symmacros.h to make newer compilers happy - Fix a bug in efidp_size() double-counting End nodes sometimes. - Handle nonnull comparisons in the headers more gracefully.
- Loading branch information
Showing
2 changed files
with
14 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
VERSION = 24 | ||
VERSION = 26 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,8 +7,8 @@ URL: https://github.com/rhinstaller/efivar | |
Requires: %{name}-libs = %{version}-%{release} | ||
ExclusiveArch: %{ix86} x86_64 aarch64 | ||
|
||
BuildRequires: popt-devel git | ||
Source0: https://github.com/rhinstaller/efivar/releases/download/%{version}/efivar-%{version}.tar.bz2 | ||
BuildRequires: popt-devel popt-static git glibc-static | ||
Source0: https://github.com/rhinstaller/efivar/releases/download/efivar-%{version}/efivar-%{version}.tar.bz2 | ||
|
||
%description | ||
efivar provides a simple command line interface to the UEFI variable facility. | ||
|
@@ -69,6 +69,17 @@ rm -rf $RPM_BUILD_ROOT | |
%{_libdir}/*.so.* | ||
|
||
%changelog | ||
* Thu Aug 11 2016 Peter Jones <[email protected]> - 26-1 | ||
- Use symmacros.h to make newer compilers happy | ||
- Fix a bug in efidp_size() double-counting End nodes sometimes. | ||
- Handle nonnull comparisons in the headers more gracefully. | ||
|
||
* Wed Aug 10 2016 Peter Jones <[email protected]> - 25-1 | ||
- Rework version numbers. | ||
- Add error tracking API. | ||
- Remove use of deprecated readdir_r | ||
- SATA device path fixes. | ||
|
||
* Mon Jul 13 2015 Peter Jones <[email protected]> - 0.21-1 | ||
- Rename "make test" so packagers don't think it's a good idea to run it | ||
during builds. | ||
|