source: projects/specs/trunk/e/efivar/efivar-vl.spec @ 9868

Revision 9868, 4.6 KB checked in by tomop, 8 years ago (diff)

efivar-0.21-3, efibootmgr-0.12-3

Line 
1Name:           efivar
2Version:        0.21
3Release:        3%{?_dist_release}
4Summary:        Tools to manage UEFI variables
5License:        LGPLv2.1
6URL:            https://github.com/rhinstaller/efivar
7Requires:       %{name}-libs = %{version}-%{release}
8ExclusiveArch:  %{ix86} x86_64 aarch64
9
10BuildRequires:  popt-devel
11Source0:        https://github.com/rhinstaller/efivar/releases/download/efivar-%{version}/efivar-%{version}.tar.bz2
12
13# https://github.com/rhinstaller/efivar/commit/a3606c02fd271d32e364fcc540e34ba1899309f6
14Patch0:         a3606c02fd271d32e364fcc540e34ba1899309f6.patch
15
16Vendor: Project Vine
17Distribution: Vine Linux
18Packager: tomop
19
20%description
21efivar provides a simple command line interface to the UEFI variable facility.
22
23%package libs
24Summary: Library to manage UEFI variables
25
26%description libs
27Library to allow for the simple manipulation of UEFI variables.
28
29%package devel
30Summary: Development headers for libefivar
31Requires: %{name}-libs = %{version}-%{release}
32
33%description devel
34development headers required to use libefivar.
35
36%prep
37%setup -q -n %{name}-%{version}
38%patch0 -p1 -b .ifrn
39
40%build
41make libdir=%{_libdir} bindir=%{_bindir} OPT_FLAGS="$RPM_OPT_FLAGS"
42
43%install
44rm -rf $RPM_BUILD_ROOT
45%makeinstall
46
47%clean
48rm -rf $RPM_BUILD_ROOT
49
50%post libs
51/sbin/ldconfig
52
53%postun libs
54/sbin/ldconfig
55
56%files
57%{!?_licensedir:%global license %%doc}
58%license COPYING
59%doc README.md
60%{_bindir}/efivar
61%{_mandir}/man1/*
62
63%files devel
64%{_mandir}/man3/*
65%{_includedir}/*
66%{_libdir}/*.so
67%{_libdir}/pkgconfig/*.pc
68
69%files libs
70%{_libdir}/*.so.*
71
72%changelog
73* Tue Dec 15 2015 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 0.21-3
74- initial build for Vine Linux.
75- added Patch0.
76
77* Mon Nov 02 2015 Peter Jones <pjones@redhat.com> - 0.21-2
78- Bump the release here so f22->f23->f24 updates work.
79
80* Mon Jul 13 2015 Peter Jones <pjones@redhat.com> - 0.21-1
81- Rename "make test" so packagers don't think it's a good idea to run it
82  during builds.
83- Error check sizes in vars_get_variable()
84- Fix some file size comparisons
85- make SONAME reflect the correct values.
86- Fix some uses of "const"
87- Compile with -O2 by default
88- Fix some strict-aliasing violations
89- Fix some of the .pc files and how we do linking to work better.
90
91* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.20-2
92- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
93
94* Tue Jun 02 2015 Peter Jones <pjones@redhat.com> - 0.20-1
95- Update to 0.20
96- Make sure tester is build with the right link order for libraries.
97- Adjust linker order for pkg-config
98- Work around LocateDevicePath() not grokking PcieRoot() devices properly.
99- Rectify some missing changelog entries
100
101* Thu May 28 2015 Peter Jones <pjones@redhat.com> - 0.19-1
102- Update to 0.19
103- add API from efibootmgr so fwupdate and other tools can use it.
104
105* Wed Oct 15 2014 Peter Jones <pjones@redhat.com> - 0.15-1
106- Update to 0.15
107- Make 32-bit builds set variables' DataSize correctly.
108
109* Wed Oct 08 2014 Peter Jones <pjones@redhat.com> - 0.14-1
110- Update to 0.14
111- add efi_id_guid_to_guid() and efi_guid_to_id_guid(), which support {ID GUID}
112  as a concept.
113- Add some vendor specific guids to our guid list.
114- Call "empty" "zero" now, as many other places do.  References to
115  efi_guid_is_empty() and efi_guid_empty still exist for ABI compatibility.
116- add "efivar -L" to the man page.
117
118* Tue Oct 07 2014 Peter Jones <pjones@redhat.com> - 0.13-1
119- Update to 0.13:
120- add efi_symbol_to_guid()
121- efi_name_to_guid() will now fall back on efi_symbol_to_guid() as a last
122  resort
123- "efivar -L" to list all the guids we know about
124- better namespacing on libefivar.so (rename well_known_* -> efi_well_known_*)
125
126* Thu Sep 25 2014 Peter Jones <pjones@redhat.com> - 0.12-1
127- Update to 0.12
128
129* Wed Aug 20 2014 Peter Jones <pjones@redhat.com> - 0.11-1
130- Update to 0.11
131
132* Fri May 02 2014 Peter Jones <pjones@redhat.com> - 0.10-1
133- Update package to 0.10.
134- Fixes a build error due to different cflags in the builders vs updstream
135  makefile.
136
137* Fri May 02 2014 Peter Jones <pjones@redhat.com> - 0.9-0.1
138- Update package to 0.9.
139
140* Tue Apr 01 2014 Peter Jones <pjones@redhat.com> - 0.8-0.1
141- Update package to 0.8 as well.
142
143* Fri Oct 25 2013 Peter Jones <pjones@redhat.com> - 0.7-1
144- Update package to 0.7
145- adds --append support to the binary.
146
147* Fri Sep 06 2013 Peter Jones <pjones@redhat.com> - 0.6-1
148- Update package to 0.6
149- fixes to documentation from lersek
150- more validation of uefi guids
151- use .xz for archives
152
153* Thu Sep 05 2013 Peter Jones <pjones@redhat.com> - 0.5-0.1
154- Update to 0.5
155
156* Mon Jun 17 2013 Peter Jones <pjones@redhat.com> - 0.4-0.2
157- Fix ldconfig invocation
158
159* Mon Jun 17 2013 Peter Jones <pjones@redhat.com> - 0.4-0.1
160- Initial spec file
Note: See TracBrowser for help on using the repository browser.