This commit is contained in:
parent
d7500067b9
commit
485c8c7e0f
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:64e750380c1be627ab7ef403b8466bafe5f4e7293259da2749db296939ea2482
|
|
||||||
size 330044
|
|
3
libevent-1.4.2-rc.tar.bz2
Normal file
3
libevent-1.4.2-rc.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:0a0fd12f9200b92c8617acc27f83d81072c117d8ef553f61b54f863ce1421085
|
||||||
|
size 350809
|
@ -1,3 +1,26 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Mar 28 13:47:32 CET 2008 - meissner@suse.de
|
||||||
|
|
||||||
|
- upgraded to version 1.4.2rc
|
||||||
|
* make Solaris event subsystems more reliable; from W.C.A. Wijngaards
|
||||||
|
* event_base_get_method(); from Springande Ulv
|
||||||
|
* fix HTTP/1.1 chunk formatting; from "propanbutan"
|
||||||
|
* allow 64-bit content lengths; from Scott Lamb
|
||||||
|
* and more...
|
||||||
|
- upgraded to version 1.4.1beta
|
||||||
|
* fixed some memory leaks and other misc cleanup; from Christopher Layne, Scott Lamb and Charles Kerr
|
||||||
|
* introduced event_reinit to deal with fork()
|
||||||
|
* improved efficiency of generated RPC structure
|
||||||
|
* performance improvements to Win32 backend
|
||||||
|
* and many more...
|
||||||
|
- upgraded to version 1.4.0beta
|
||||||
|
* a new RPC subsytem for writing distributed clients and servers
|
||||||
|
* almost everything is documented via Doxygen now
|
||||||
|
* many fixes and improvements to evdns and evhttp
|
||||||
|
* libevent now builds two additional libraries: libevent_core (containing only the event core) and libevent_extras (contained evdns, evhttp and evrpc)
|
||||||
|
* performance improvements due to using a heap instead of red-black trees for timeouts
|
||||||
|
* Solaris' event ports are better supported
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Dec 27 06:09:22 CET 2007 - crrodriguez@suse.de
|
Thu Dec 27 06:09:22 CET 2007 - crrodriguez@suse.de
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package libevent (Version 1.3e)
|
# spec file for package libevent (Version 1.4.2)
|
||||||
#
|
#
|
||||||
# Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
# This file and all modifications and additions to the pristine
|
# This file and all modifications and additions to the pristine
|
||||||
# package are under the same license as the package itself.
|
# package are under the same license as the package itself.
|
||||||
#
|
#
|
||||||
@ -10,17 +10,18 @@
|
|||||||
|
|
||||||
# norootforbuild
|
# norootforbuild
|
||||||
|
|
||||||
|
|
||||||
Name: libevent
|
Name: libevent
|
||||||
Url: http://monkey.org/~provos/libevent/
|
Url: http://monkey.org/~provos/libevent/
|
||||||
Summary: Library Providing an Event Handling API
|
Summary: Library Providing an Event Handling API
|
||||||
Version: 1.3e
|
Version: 1.4.2
|
||||||
Release: 1
|
Release: 1
|
||||||
Group: Development/Libraries/C and C++
|
Group: Development/Libraries/C and C++
|
||||||
License: BSD 3-Clause
|
License: BSD 3-Clause
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
PreReq: %fillup_prereq %insserv_prereq
|
PreReq: %fillup_prereq %insserv_prereq
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
Source: http://monkey.org/~provos/libevent-%{version}.tar.bz2
|
Source: http://monkey.org/~provos/libevent-%{version}-rc.tar.bz2
|
||||||
Source1: libevent-1.3e-rpmlintrc
|
Source1: libevent-1.3e-rpmlintrc
|
||||||
|
|
||||||
%description
|
%description
|
||||||
@ -35,7 +36,7 @@ Authors:
|
|||||||
Nils Provos <provos@citi.umich.edu>
|
Nils Provos <provos@citi.umich.edu>
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q
|
%setup -q -n %name-%version-rc
|
||||||
|
|
||||||
%build
|
%build
|
||||||
autoreconf -i -f
|
autoreconf -i -f
|
||||||
@ -60,7 +61,27 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
%{_mandir}/man?/*
|
%{_mandir}/man?/*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
* Thu Dec 27 2007 - crrodriguez@suse.de
|
* Fri Mar 28 2008 meissner@suse.de
|
||||||
|
- upgraded to version 1.4.2rc
|
||||||
|
* make Solaris event subsystems more reliable; from W.C.A. Wijngaards
|
||||||
|
* event_base_get_method(); from Springande Ulv
|
||||||
|
* fix HTTP/1.1 chunk formatting; from "propanbutan"
|
||||||
|
* allow 64-bit content lengths; from Scott Lamb
|
||||||
|
* and more...
|
||||||
|
- upgraded to version 1.4.1beta
|
||||||
|
* fixed some memory leaks and other misc cleanup; from Christopher Layne, Scott Lamb and Charles Kerr
|
||||||
|
* introduced event_reinit to deal with fork()
|
||||||
|
* improved efficiency of generated RPC structure
|
||||||
|
* performance improvements to Win32 backend
|
||||||
|
* and many more...
|
||||||
|
- upgraded to version 1.4.0beta
|
||||||
|
* a new RPC subsytem for writing distributed clients and servers
|
||||||
|
* almost everything is documented via Doxygen now
|
||||||
|
* many fixes and improvements to evdns and evhttp
|
||||||
|
* libevent now builds two additional libraries: libevent_core (containing only the event core) and libevent_extras (contained evdns, evhttp and evrpc)
|
||||||
|
* performance improvements due to using a heap instead of red-black trees for timeouts
|
||||||
|
* Solaris' event ports are better supported
|
||||||
|
* Thu Dec 27 2007 crrodriguez@suse.de
|
||||||
- fix library-without-ldconfig-* errors
|
- fix library-without-ldconfig-* errors
|
||||||
- version 1.3e
|
- version 1.3e
|
||||||
* Add a "Date" header to HTTP responses when it's missing, as required by HTTP 1.1. Original Patch from Ralph Moritz.
|
* Add a "Date" header to HTTP responses when it's missing, as required by HTTP 1.1. Original Patch from Ralph Moritz.
|
||||||
@ -68,21 +89,21 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
* Fix a memory leak in the DNS server.
|
* Fix a memory leak in the DNS server.
|
||||||
* Handle NULL timeouts correctly on Solaris; from Trond Norbye
|
* Handle NULL timeouts correctly on Solaris; from Trond Norbye
|
||||||
* Recalculate pending events properly when reallocating event array on Solaris; from Trond Norbye
|
* Recalculate pending events properly when reallocating event array on Solaris; from Trond Norbye
|
||||||
* Mon Mar 05 2007 - meissner@suse.de
|
* Mon Mar 05 2007 meissner@suse.de
|
||||||
- upgraded to 1.3b:
|
- upgraded to 1.3b:
|
||||||
+ signals now useable in multithreaded apps.
|
+ signals now useable in multithreaded apps.
|
||||||
* Tue Feb 20 2007 - meissner@suse.de
|
* Tue Feb 20 2007 meissner@suse.de
|
||||||
- Updated to 1.3a.
|
- Updated to 1.3a.
|
||||||
+ Small bug and performances fixes to evhttp layer.
|
+ Small bug and performances fixes to evhttp layer.
|
||||||
+ DNS Server from Adam Langley and Nick Mathewson
|
+ DNS Server from Adam Langley and Nick Mathewson
|
||||||
+ Chunked transfer encoding for HTTP/1.1 from Dug Song.
|
+ Chunked transfer encoding for HTTP/1.1 from Dug Song.
|
||||||
+ DNS DDoS fix; bug report from Jon Oberheide.
|
+ DNS DDoS fix; bug report from Jon Oberheide.
|
||||||
+ Various small improvements.
|
+ Various small improvements.
|
||||||
* Sun Nov 12 2006 - lmuelle@suse.de
|
* Sun Nov 12 2006 lmuelle@suse.de
|
||||||
- Update to version 1.2.
|
- Update to version 1.2.
|
||||||
+ Support for non-blocking DNS resolution.
|
+ Support for non-blocking DNS resolution.
|
||||||
+ Support for lightweight HTTP clients and servers.
|
+ Support for lightweight HTTP clients and servers.
|
||||||
* Wed Jan 25 2006 - mls@suse.de
|
* Wed Jan 25 2006 mls@suse.de
|
||||||
- converted neededforbuild to BuildRequires
|
- converted neededforbuild to BuildRequires
|
||||||
* Mon May 30 2005 - okir@suse.de
|
* Mon May 30 2005 okir@suse.de
|
||||||
- Initial packaging
|
- Initial packaging
|
||||||
|
Loading…
Reference in New Issue
Block a user