[efivar] Update package to 0.8 as well.

Peter Jones pjones at fedoraproject.org
Tue Apr 1 18:51:34 UTC 2014


commit e6701c2395a8f23fd6be16c20717eeeaa432a18f
Author: Peter Jones <pjones at redhat.com>
Date:   Tue Apr 1 14:51:36 2014 -0400

    Update package to 0.8 as well.

 .gitignore  |    3 ++
 efivar.spec |   86 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 sources     |    1 +
 3 files changed, 90 insertions(+), 0 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index e69de29..f930f0c 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1,3 @@
+*.tar.*
+clog
+*.rpm
diff --git a/efivar.spec b/efivar.spec
new file mode 100644
index 0000000..9782dd4
--- /dev/null
+++ b/efivar.spec
@@ -0,0 +1,86 @@
+Name:           efivar
+Version:        0.8
+Release:        0.1%{?dist}
+Summary:        Tools to manage UEFI variables
+License:        LGPLv2.1
+URL:            https://github.com/vathpela/efivar
+Requires:       %{name}-libs = %{version}-%{release}
+
+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 at 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
+* Tue Apr 01 2014 Peter Jones <pjones at redhat.com> - 0.8-0.1
+- Update package to 0.8 as well.
+
+* Fri Oct 25 2013 Peter Jones <pjones at redhat.com> - 0.7-1
+- Update package to 0.7
+- adds --append support to the binary.
+
+* Fri Sep 06 2013 Peter Jones <pjones at 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 at redhat.com> - 0.5-0.1
+- Update to 0.5
+
+* Mon Jun 17 2013 Peter Jones <pjones at redhat.com> - 0.4-0.2
+- Fix ldconfig invocation
+
+* Mon Jun 17 2013 Peter Jones <pjones at redhat.com> - 0.4-0.1
+- Initial spec file
diff --git a/sources b/sources
index e69de29..bdd3e18 100644
--- a/sources
+++ b/sources
@@ -0,0 +1 @@
+9e71f5f4fc1fad23898571d5562fc5d8  efivar-0.8.tar.xz


More information about the scm-commits mailing list