libell/libell.spec

105 lines
2.9 KiB
RPMSpec
Raw Normal View History

2017-10-29 17:04:46 +00:00
Name: libell
2019-01-17 08:37:38 +00:00
Version: 0.17
Release: 2%{?dist}
2017-10-29 17:04:46 +00:00
Summary: Embedded Linux library
License: LGPLv2+
URL: https://01.org/ell
Source0: https://www.kernel.org/pub/linux/libs/ell/ell-%{version}.tar.xz
2018-09-24 09:57:18 +00:00
# https://lore.kernel.org/lkml/20180924094723.487697-1-lkundrak@v3.sk/T/#u
Source1: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/plain/include/uapi/linux/keyctl.h?h=v4.6#/keyctl.h
2017-10-29 17:04:46 +00:00
BuildRequires: gcc
%description
The Embedded Linux* Library (ELL) provides core, low-level functionality for
system daemons. It typically has no dependencies other than the Linux kernel, C
standard library, and libdl (for dynamic linking). While ELL is designed to be
efficient and compact enough for use on embedded Linux platforms, it is not
limited to resource-constrained systems.
%package devel
Summary: Embedded Linux library development files
2018-05-14 10:07:38 +00:00
Requires: %{name}%{?_isa} = %{version}-%{release}
2017-10-29 17:04:46 +00:00
%description devel
Headers for developing against libell.
%prep
%setup -q -n ell-%{version}
2018-09-24 09:57:18 +00:00
mkdir linux
cp -p %{SOURCE1} linux/keyctl.h
2017-10-29 17:04:46 +00:00
%build
%configure
%make_build V=1
%install
%make_install
2018-10-06 19:04:48 +00:00
find %{buildroot} -type f -name "*.la" -delete
2017-10-29 17:04:46 +00:00
%files
%license COPYING
2018-10-06 19:04:48 +00:00
%doc AUTHORS README TODO ChangeLog
%{_libdir}/libell.so.*
2017-10-29 17:04:46 +00:00
%files devel
%{_includedir}/ell
%{_libdir}/libell.so
%{_libdir}/pkgconfig/ell.pc
%changelog
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.17-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
2019-01-17 08:37:38 +00:00
* Thu Jan 17 2019 Peter Robinson <pbrobinson@fedoraproject.org> 0.17-1
- Update to 0.17 release
2018-12-12 02:26:12 +00:00
* Wed Dec 12 2018 Peter Robinson <pbrobinson@fedoraproject.org> 0.16-1
- Update to 0.16 release
2018-11-17 01:21:26 +00:00
* Fri Nov 16 2018 Peter Robinson <pbrobinson@fedoraproject.org> 0.15-1
- Update to 0.15 release
2018-11-11 12:56:34 +00:00
* Sat Nov 10 2018 Peter Robinson <pbrobinson@fedoraproject.org> 0.14-1
- Update to 0.14 release
2018-10-06 19:04:48 +00:00
* Sat Oct 6 2018 Peter Robinson <pbrobinson@fedoraproject.org> 0.11-1
- Update to 0.11 release
2018-09-24 09:57:18 +00:00
* Mon Sep 24 2018 Lubomir Rintel <lkundrak@v3.sk> - 0.9-1
- Update to 0.9 release
2018-08-11 07:33:00 +00:00
* Sat Aug 11 2018 Lubomir Rintel <lkundrak@v3.sk> - 0.8-1
- Update to 0.8 release
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.5-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
2018-05-14 10:07:38 +00:00
* Mon May 14 2018 Lubomir Rintel <lkundrak@v3.sk> - 0.5-1
- Update to 0.5 release
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.2-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
2017-10-29 17:04:46 +00:00
* Thu Oct 26 2017 Lubomir Rintel <lkundrak@v3.sk> - 0.2-2
- Renamed to libell to fix a naming conflict
- Addressed review issues (Igor Gnatenko, #1505237):
- Added BR gcc
- Made build verbose
- Moved pkgconfig file to devel subpackage
- Fixed license tag
- Dropped Group tag
- Packaged changelog
* Sun Oct 22 2017 Lubomir Rintel <lkundrak@v3.sk> - 0.2-1
- Initial packaging