Accepting request 181439 from devel:libraries:c_c++
update version 2.0.21 (forwarded request 181437 from MargueriteSu) OBS-URL: https://build.opensuse.org/request/show/181439 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/libevent?expand=0&rev=28
This commit is contained in:
commit
64b0c2761a
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:10698a0e6abb3ca00b1c9e8cfddc66933bcc4c9c78b5600a7064c4c3ef9c6a24
|
|
||||||
size 845446
|
|
3
libevent-2.0.21-stable.tar.gz
Normal file
3
libevent-2.0.21-stable.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:22a530a8a5ba1cb9c080cba033206b17dacd21437762155c6d30ee6469f574f5
|
||||||
|
size 850772
|
@ -1,3 +1,9 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Sat Jun 29 12:36:28 UTC 2013 - i@marguerite.su
|
||||||
|
|
||||||
|
- update to 2.0.21
|
||||||
|
* see ChangeLog for details.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Nov 16 21:24:42 UTC 2012 - andreas.stieger@gmx.de
|
Fri Nov 16 21:24:42 UTC 2012 - andreas.stieger@gmx.de
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package libevent
|
# spec file for package libevent
|
||||||
#
|
#
|
||||||
# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -19,37 +19,56 @@
|
|||||||
Name: libevent
|
Name: libevent
|
||||||
%define libsoname %{name}-2_0-5
|
%define libsoname %{name}-2_0-5
|
||||||
|
|
||||||
Version: 2.0.20
|
Version: 2.0.21
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Library Providing an Event Handling API
|
Summary: An event notification library
|
||||||
License: BSD-3-Clause
|
License: BSD-3-Clause
|
||||||
Group: Development/Libraries/C and C++
|
Group: System/Libraries
|
||||||
Url: http://libevent.org/
|
Url: http://libevent.org/
|
||||||
Source0: https://github.com/downloads/libevent/libevent/%{name}-%{version}-stable.tar.gz
|
Source0: https://github.com/downloads/libevent/libevent/%{name}-%{version}-stable.tar.gz
|
||||||
Source1: baselibs.conf
|
Source1: baselibs.conf
|
||||||
BuildRequires: openssl-devel
|
BuildRequires: openssl-devel
|
||||||
BuildRequires: pkgconfig
|
BuildRequires: pkg-config
|
||||||
BuildRequires: zlib-devel
|
BuildRequires: zlib-devel
|
||||||
PreReq: %fillup_prereq
|
Requires(pre): %fillup_prereq
|
||||||
PreReq: %insserv_prereq
|
Requires(pre): %insserv_prereq
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
|
|
||||||
%description
|
%description
|
||||||
The libevent library provides a mechanism to execute a function when a
|
The libevent API provides a mechanism to execute a callback function
|
||||||
specific event on a file descriptor occurs or after a given time has
|
when a specific event occurs on a file descriptor or after a timeout
|
||||||
passed.
|
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}
|
%package -n %{libsoname}
|
||||||
Summary: Shared libraries from libevent
|
Summary: An event notification library
|
||||||
Group: Development/Libraries/C and C++
|
Group: System/Libraries
|
||||||
Provides: %{name} = %{version}
|
Provides: %{name} = %{version}
|
||||||
Obsoletes: %{name} < %{version}
|
Obsoletes: %{name} < %{version}
|
||||||
|
|
||||||
%description -n %{libsoname}
|
%description -n %{libsoname}
|
||||||
The libevent library provides a mechanism to execute a function when a
|
The libevent API provides a mechanism to execute a callback function
|
||||||
specific event on a file descriptor occurs or after a given time has
|
when a specific event occurs on a file descriptor or after a timeout
|
||||||
passed.
|
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.
|
This package holds the shared libraries for libevent.
|
||||||
|
|
||||||
@ -63,9 +82,19 @@ Provides: %{name}:/usr/include/event.h
|
|||||||
Conflicts: libev-devel
|
Conflicts: libev-devel
|
||||||
|
|
||||||
%description devel
|
%description devel
|
||||||
The libevent library provides a mechanism to execute a function when a
|
The libevent API provides a mechanism to execute a callback function
|
||||||
specific event on a file descriptor occurs or after a given time has
|
when a specific event occurs on a file descriptor or after a timeout
|
||||||
passed.
|
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.
|
This package holds the development files for libevent2.
|
||||||
|
|
||||||
@ -74,7 +103,7 @@ This package holds the development files for libevent2.
|
|||||||
|
|
||||||
%build
|
%build
|
||||||
%configure --disable-static
|
%configure --disable-static
|
||||||
%{__make} %{?_smp_mflags}
|
make %{?_smp_mflags}
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%makeinstall
|
%makeinstall
|
||||||
@ -86,6 +115,7 @@ find %{buildroot}%{_libdir} -name "*.la" -delete -print
|
|||||||
|
|
||||||
%files -n %{libsoname}
|
%files -n %{libsoname}
|
||||||
%defattr(-,root,root,-)
|
%defattr(-,root,root,-)
|
||||||
|
%doc ChangeLog README LICENSE whatsnew-2.0.txt
|
||||||
%{_libdir}/%{name}-2.0.so.5*
|
%{_libdir}/%{name}-2.0.so.5*
|
||||||
%{_libdir}/%{name}_core-2.0.so.5*
|
%{_libdir}/%{name}_core-2.0.so.5*
|
||||||
%{_libdir}/%{name}_extra-2.0.so.5*
|
%{_libdir}/%{name}_extra-2.0.so.5*
|
||||||
@ -95,7 +125,11 @@ find %{buildroot}%{_libdir} -name "*.la" -delete -print
|
|||||||
%files devel
|
%files devel
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
%{_bindir}/event_rpcgen.py
|
%{_bindir}/event_rpcgen.py
|
||||||
%{_includedir}/*.h
|
%{_includedir}/evdns.h
|
||||||
|
%{_includedir}/event.h
|
||||||
|
%{_includedir}/evhttp.h
|
||||||
|
%{_includedir}/evrpc.h
|
||||||
|
%{_includedir}/evutil.h
|
||||||
%{_includedir}/event2
|
%{_includedir}/event2
|
||||||
%{_libdir}/%{name}.so
|
%{_libdir}/%{name}.so
|
||||||
%{_libdir}/%{name}_core.so
|
%{_libdir}/%{name}_core.so
|
||||||
|
Loading…
Reference in New Issue
Block a user