diff --git a/libevent-1.3a-optflags.patch b/libevent-1.3a-optflags.patch deleted file mode 100644 index 78e0f00..0000000 --- a/libevent-1.3a-optflags.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- libevent-1.3a/sample/Makefile.am.xx 2007-02-20 11:57:04.000000000 +0100 -+++ libevent-1.3a/sample/Makefile.am 2007-02-20 11:57:09.000000000 +0100 -@@ -2,7 +2,7 @@ - - LDADD = ../libevent.la - CPPFPLAGS = -I.. --CFLAGS = -I../compat -+CFLAGS = -I../compat @CFLAGS@ - - noinst_PROGRAMS = event-test time-test signal-test - diff --git a/libevent-1.3b.tar.gz b/libevent-1.3b.tar.gz deleted file mode 100644 index fd52fd0..0000000 --- a/libevent-1.3b.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:200a229e1fcaf07772b454a087a7cdf4b2e8b90b8493883d4027fd70a3dbf0d1 -size 445461 diff --git a/libevent-1.3e-rpmlintrc b/libevent-1.3e-rpmlintrc new file mode 100644 index 0000000..f4b17c4 --- /dev/null +++ b/libevent-1.3e-rpmlintrc @@ -0,0 +1,4 @@ +#in the meanwhile.. +addFilter("devel-file-in-non-devel-package") +# libevent does not have proper SONAME in place.. +addFilter("shlib-policy-name-error") diff --git a/libevent-1.3e.tar.bz2 b/libevent-1.3e.tar.bz2 new file mode 100644 index 0000000..ce82519 --- /dev/null +++ b/libevent-1.3e.tar.bz2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64e750380c1be627ab7ef403b8466bafe5f4e7293259da2749db296939ea2482 +size 330044 diff --git a/libevent.changes b/libevent.changes index 111bda7..c1f211d 100644 --- a/libevent.changes +++ b/libevent.changes @@ -1,3 +1,14 @@ +------------------------------------------------------------------- +Thu Dec 27 06:09:22 CET 2007 - crrodriguez@suse.de + +- fix library-without-ldconfig-* errors +- 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. + * Fix a memory leak in which failed HTTP connections whould not free the request object. + * Fix a memory leak in the DNS server. + * Handle NULL timeouts correctly on Solaris; from Trond Norbye + * Recalculate pending events properly when reallocating event array on Solaris; from Trond Norbye + ------------------------------------------------------------------- Mon Mar 5 14:00:29 CET 2007 - meissner@suse.de diff --git a/libevent.spec b/libevent.spec index afc8eea..c40a0dd 100644 --- a/libevent.spec +++ b/libevent.spec @@ -1,5 +1,5 @@ # -# spec file for package libevent (Version 1.3b) +# spec file for package libevent (Version 1.3e) # # Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany. # This file and all modifications and additions to the pristine @@ -11,18 +11,17 @@ # norootforbuild Name: libevent -URL: http://monkey.org/~provos/libevent/ +Url: http://monkey.org/~provos/libevent/ Summary: Library Providing an Event Handling API -Version: 1.3b +Version: 1.3e Release: 1 Group: Development/Libraries/C and C++ -License: BSD License and BSD-like +License: BSD 3-Clause BuildRoot: %{_tmppath}/%{name}-%{version}-build PreReq: %fillup_prereq %insserv_prereq -Autoreqprov: on BuildRoot: %{_tmppath}/%{name}-%{version}-build -Source: http://monkey.org/~provos/libevent-%{version}.tar.gz -Patch0: libevent-1.3a-optflags.patch +Source: http://monkey.org/~provos/libevent-%{version}.tar.bz2 +Source1: libevent-1.3e-rpmlintrc %description The libevent library provides a mechanism to execute a function when a @@ -37,7 +36,6 @@ Authors: %prep %setup -q -%patch0 -p1 %build autoreconf -i -f @@ -50,6 +48,10 @@ make DESTDIR=$RPM_BUILD_ROOT install %clean rm -rf $RPM_BUILD_ROOT +%post -p /sbin/ldconfig + +%postun -p /sbin/ldconfig + %files %defattr(-,root,root) %{_libdir}/lib* @@ -58,6 +60,14 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man?/* %changelog +* Thu Dec 27 2007 - crrodriguez@suse.de +- fix library-without-ldconfig-* errors +- 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. + * Fix a memory leak in which failed HTTP connections whould not free the request object. + * Fix a memory leak in the DNS server. + * Handle NULL timeouts correctly 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 - upgraded to 1.3b: + signals now useable in multithreaded apps.