From f77cbd6ea957bb04a972ad266f700df59760293f24ae05000bd3be32906e7a98 Mon Sep 17 00:00:00 2001 From: OBS User unknown Date: Tue, 8 Jul 2008 19:38:39 +0000 Subject: [PATCH] OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/libevent?expand=0&rev=7 --- libevent-1.4.3-stable.tar.bz2 | 3 --- libevent-1.4.5-stable.tar.bz2 | 3 +++ libevent.changes | 41 +++++++++++++++++++++++++++++++++++ libevent.spec | 41 +++++++++++++++++++++++++++++++++-- 4 files changed, 83 insertions(+), 5 deletions(-) delete mode 100644 libevent-1.4.3-stable.tar.bz2 create mode 100644 libevent-1.4.5-stable.tar.bz2 diff --git a/libevent-1.4.3-stable.tar.bz2 b/libevent-1.4.3-stable.tar.bz2 deleted file mode 100644 index b9ea2bf..0000000 --- a/libevent-1.4.3-stable.tar.bz2 +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:4b481e316b491181e4feba4791f83f1ac55d2dd4cc2a229f343c773dc7271733 -size 351738 diff --git a/libevent-1.4.5-stable.tar.bz2 b/libevent-1.4.5-stable.tar.bz2 new file mode 100644 index 0000000..92fc4fb --- /dev/null +++ b/libevent-1.4.5-stable.tar.bz2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15f9f488482a290ce32a17ecee77071051c989dadf15e8a6c9b506e9a9e57ef5 +size 356312 diff --git a/libevent.changes b/libevent.changes index ee0a0af..4b00cd5 100644 --- a/libevent.changes +++ b/libevent.changes @@ -1,3 +1,44 @@ +------------------------------------------------------------------- +Thu Jul 3 11:57:22 CEST 2008 - meissner@suse.de + +- upgraded to version 1.4.5-stable: + o Fix connection keep-alive behavior for HTTP/1.0 + o Fix use of freed memory in event_reinit; pointed out by Peter Postma + o Constify struct timeval * where possible; pointed out by Forest + Wilkinson + o allow min_heap_erase to be called on removed members; from liusifan. + o Rename INPUT and OUTPUT to EVRPC_INPUT and EVRPC_OUTPUT. Retain + INPUT/OUTPUT aliases on on-win32 platforms for backwards compatibility. + o Do not use SO_REUSEADDR when connecting + o Fix Windows build + o Fix a bug in event_rpcgen when generated fixed-sized entries + +- upgraded to version 1.4.4-stable: + o Correct the documentation on buffer printf functions. + o Don't warn on unimplemented epoll_create(): this isn't a problem, + just a reason to fall back to poll or select. + o Correctly handle timeouts larger than 35 minutes on Linux with epoll.c. + This is probably a kernel defect, but we'll have to support old kernels + anyway even if it gets fixed. + o Fix a potential stack corruption bug in tagging on 64-bit CPUs. + o expose bufferevent_setwatermark via header files and fix high watermark + on read + o fix a bug in bufferevent read water marks and add a test for them + o introduce bufferevent_setcb and bufferevent_setfd to allow better + manipulation of bufferevents + o use libevent's internal timercmp on all platforms, to avoid bugs on + old platforms where timercmp(a,b,<=) is buggy. + o reduce system calls for getting current time by caching it. + o fix evhttp_bind_socket() so that multiple sockets can be bound by + the same http server. + o Build test directory correctly with CPPFLAGS set. + o Fix build under Visual C++ 2005. + o Expose evhttp_accept_socket() API. + o Merge windows gettimeofday() replacement into a new + evutil_gettimeofday() function. + o Fix autoconf script behavior on IRIX. + o Make sure winsock2.h include always comes before windows.h include. + ------------------------------------------------------------------- Tue Apr 8 09:04:44 CEST 2008 - meissner@suse.de diff --git a/libevent.spec b/libevent.spec index 4c7d7ab..a8c5344 100644 --- a/libevent.spec +++ b/libevent.spec @@ -1,5 +1,5 @@ # -# spec file for package libevent (Version 1.4.3) +# spec file for package libevent (Version 1.4.5) # # Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany. # This file and all modifications and additions to the pristine @@ -14,7 +14,7 @@ Name: libevent Url: http://monkey.org/~provos/libevent/ Summary: Library Providing an Event Handling API -Version: 1.4.3 +Version: 1.4.5 Release: 1 Group: Development/Libraries/C and C++ License: BSD 3-Clause @@ -61,6 +61,43 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man?/* %changelog +* Thu Jul 03 2008 meissner@suse.de +- upgraded to version 1.4.5-stable: + o Fix connection keep-alive behavior for HTTP/1.0 + o Fix use of freed memory in event_reinit; pointed out by Peter Postma + o Constify struct timeval * where possible; pointed out by Forest + Wilkinson + o allow min_heap_erase to be called on removed members; from liusifan. + o Rename INPUT and OUTPUT to EVRPC_INPUT and EVRPC_OUTPUT. Retain + INPUT/OUTPUT aliases on on-win32 platforms for backwards compatibility. + o Do not use SO_REUSEADDR when connecting + o Fix Windows build + o Fix a bug in event_rpcgen when generated fixed-sized entries +- upgraded to version 1.4.4-stable: + o Correct the documentation on buffer printf functions. + o Don't warn on unimplemented epoll_create(): this isn't a problem, + just a reason to fall back to poll or select. + o Correctly handle timeouts larger than 35 minutes on Linux with epoll.c. + This is probably a kernel defect, but we'll have to support old kernels + anyway even if it gets fixed. + o Fix a potential stack corruption bug in tagging on 64-bit CPUs. + o expose bufferevent_setwatermark via header files and fix high watermark + on read + o fix a bug in bufferevent read water marks and add a test for them + o introduce bufferevent_setcb and bufferevent_setfd to allow better + manipulation of bufferevents + o use libevent's internal timercmp on all platforms, to avoid bugs on + old platforms where timercmp(a,b,<=) is buggy. + o reduce system calls for getting current time by caching it. + o fix evhttp_bind_socket() so that multiple sockets can be bound by + the same http server. + o Build test directory correctly with CPPFLAGS set. + o Fix build under Visual C++ 2005. + o Expose evhttp_accept_socket() API. + o Merge windows gettimeofday() replacement into a new + evutil_gettimeofday() function. + o Fix autoconf script behavior on IRIX. + o Make sure winsock2.h include always comes before windows.h include. * Tue Apr 08 2008 meissner@suse.de - upgraded to version 1.4.3stable * include Content-Length in reply for HTTP/1.0 requests with keep-alive