From aff12d498765d13cc94443705cc464b2f2a46f91 Mon Sep 17 00:00:00 2001 From: DongHun Kwak Date: Thu, 15 Apr 2021 09:21:56 +0900 Subject: [PATCH] Bump to libev 4.33 Change-Id: Ia8e9414268f544e3bdda752c46edd9f52cd0ff72 Signed-off-by: DongHun Kwak --- packaging/libev.manifest | 5 +++++ packaging/libev.spec | 56 ++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 61 insertions(+) create mode 100644 packaging/libev.manifest create mode 100644 packaging/libev.spec diff --git a/packaging/libev.manifest b/packaging/libev.manifest new file mode 100644 index 0000000..86dbb26 --- /dev/null +++ b/packaging/libev.manifest @@ -0,0 +1,5 @@ + + + + + diff --git a/packaging/libev.spec b/packaging/libev.spec new file mode 100644 index 0000000..187fed5 --- /dev/null +++ b/packaging/libev.spec @@ -0,0 +1,56 @@ +Name: libev +Summary: High-performance event loop/event model with lots of features +Version: 4.33 +Release: 0 +License: BSD or GPLv2+ +Group: Development/ROS +Source0: %{name}-%{version}.tar.gz +Source1001: %{name}.manifest + +BuildRequires: cmake + +%description +Libev is modeled (very loosely) after libevent and the Event Perl +module, but is faster, scales better and is more correct, and also more +featureful. And also smaller. + +%package devel +Summary: High-performance event loop/event model with lots of features +Requires: %{name} = %{version} + + +%description devel +Libev is modeled (very loosely) after libevent and the Event Perl +module, but is faster, scales better and is more correct, and also more +featureful. And also smaller. + + +%prep +%setup -q +cp %{SOURCE1001} . + +%build +%{configure} +%{make_build} + +%install +%{make_install} + +%{remove_docs} + +%clean + +%post -p /sbin/ldconfig + +%postun -p /sbin/ldconfig + +%files +%manifest %{name}.manifest +%license LICENSE +%{_libdir}/%{name}.so.* + +%files devel +%manifest %{name}.manifest +%license LICENSE +%{_libdir}/%{name}.so +%{_includedir}/*.h -- 2.7.4