d740f3e869
update version 2.0.21 OBS-URL: https://build.opensuse.org/request/show/181437 OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libevent?expand=0&rev=21
144 lines
4.8 KiB
RPMSpec
144 lines
4.8 KiB
RPMSpec
#
|
|
# spec file for package libevent
|
|
#
|
|
# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
Name: libevent
|
|
%define libsoname %{name}-2_0-5
|
|
|
|
Version: 2.0.21
|
|
Release: 0
|
|
Summary: An event notification library
|
|
License: BSD-3-Clause
|
|
Group: System/Libraries
|
|
Url: http://libevent.org/
|
|
Source0: https://github.com/downloads/libevent/libevent/%{name}-%{version}-stable.tar.gz
|
|
Source1: baselibs.conf
|
|
BuildRequires: openssl-devel
|
|
BuildRequires: pkg-config
|
|
BuildRequires: zlib-devel
|
|
Requires(pre): %fillup_prereq
|
|
Requires(pre): %insserv_prereq
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
|
|
%description
|
|
The libevent API provides a mechanism to execute a callback function
|
|
when a specific event occurs on a file descriptor or after a timeout
|
|
has been reached. Furthermore, libevent also support callbacks due to
|
|
signals or regular timeouts.
|
|
|
|
Currently, libevent supports /dev/poll, kqueue(2), event ports,
|
|
POSIX select(2), Windows select(), poll(2), and epoll(4).
|
|
|
|
Libevent additionally provides a sophisticated framework for buffered
|
|
network IO, with support for sockets, filters, rate-limiting, SSL,
|
|
zero-copy file transmission, and IOCP. Libevent includes support for
|
|
several useful protocols, including DNS, HTTP, and a minimal RPC
|
|
framework.
|
|
|
|
%package -n %{libsoname}
|
|
Summary: An event notification library
|
|
Group: System/Libraries
|
|
Provides: %{name} = %{version}
|
|
Obsoletes: %{name} < %{version}
|
|
|
|
%description -n %{libsoname}
|
|
The libevent API provides a mechanism to execute a callback function
|
|
when a specific event occurs on a file descriptor or after a timeout
|
|
has been reached. Furthermore, libevent also support callbacks due to
|
|
signals or regular timeouts.
|
|
|
|
Currently, libevent supports /dev/poll, kqueue(2), event ports,
|
|
POSIX select(2), Windows select(), poll(2), and epoll(4).
|
|
|
|
Libevent additionally provides a sophisticated framework for buffered
|
|
network IO, with support for sockets, filters, rate-limiting, SSL,
|
|
zero-copy file transmission, and IOCP. Libevent includes support for
|
|
several useful protocols, including DNS, HTTP, and a minimal RPC
|
|
framework.
|
|
|
|
This package holds the shared libraries for libevent.
|
|
|
|
%package devel
|
|
Summary: Development files for libevent2
|
|
Group: Development/Libraries/C and C++
|
|
Requires: %{libsoname} = %{version}
|
|
Requires: glibc-devel
|
|
Provides: %{name}:/usr/include/event.h
|
|
# Both have /usr/include/event.h
|
|
Conflicts: libev-devel
|
|
|
|
%description devel
|
|
The libevent API provides a mechanism to execute a callback function
|
|
when a specific event occurs on a file descriptor or after a timeout
|
|
has been reached. Furthermore, libevent also support callbacks due to
|
|
signals or regular timeouts.
|
|
|
|
Currently, libevent supports /dev/poll, kqueue(2), event ports,
|
|
POSIX select(2), Windows select(), poll(2), and epoll(4).
|
|
|
|
Libevent additionally provides a sophisticated framework for buffered
|
|
network IO, with support for sockets, filters, rate-limiting, SSL,
|
|
zero-copy file transmission, and IOCP. Libevent includes support for
|
|
several useful protocols, including DNS, HTTP, and a minimal RPC
|
|
framework.
|
|
|
|
This package holds the development files for libevent2.
|
|
|
|
%prep
|
|
%setup -q -n %{name}-%{version}-stable
|
|
|
|
%build
|
|
%configure --disable-static
|
|
make %{?_smp_mflags}
|
|
|
|
%install
|
|
%makeinstall
|
|
find %{buildroot}%{_libdir} -name "*.la" -delete -print
|
|
|
|
%post -n %{libsoname} -p /sbin/ldconfig
|
|
|
|
%postun -n %{libsoname} -p /sbin/ldconfig
|
|
|
|
%files -n %{libsoname}
|
|
%defattr(-,root,root,-)
|
|
%doc ChangeLog README LICENSE whatsnew-2.0.txt
|
|
%{_libdir}/%{name}-2.0.so.5*
|
|
%{_libdir}/%{name}_core-2.0.so.5*
|
|
%{_libdir}/%{name}_extra-2.0.so.5*
|
|
%{_libdir}/%{name}_pthreads-2.0.so.5*
|
|
%{_libdir}/%{name}_openssl-2.0.so.5*
|
|
|
|
%files devel
|
|
%defattr(-,root,root)
|
|
%{_bindir}/event_rpcgen.py
|
|
%{_includedir}/evdns.h
|
|
%{_includedir}/event.h
|
|
%{_includedir}/evhttp.h
|
|
%{_includedir}/evrpc.h
|
|
%{_includedir}/evutil.h
|
|
%{_includedir}/event2
|
|
%{_libdir}/%{name}.so
|
|
%{_libdir}/%{name}_core.so
|
|
%{_libdir}/%{name}_extra.so
|
|
%{_libdir}/%{name}_pthreads.so
|
|
%{_libdir}/%{name}_openssl.so
|
|
%{_libdir}/pkgconfig/%{name}.pc
|
|
%{_libdir}/pkgconfig/%{name}_pthreads.pc
|
|
%{_libdir}/pkgconfig/%{name}_openssl.pc
|
|
|
|
%changelog
|