From f7de6f8c10e277358066ca0dc9c0256d37b4cb11b467445f981b203906b94c6a Mon Sep 17 00:00:00 2001 From: OBS User unknown Date: Sun, 25 Feb 2007 22:27:17 +0000 Subject: [PATCH] OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/libevent?expand=0&rev=2 --- libevent-1.2.tar.gz | 3 --- libevent-1.3a-optflags.patch | 11 +++++++++++ libevent-1.3a.tar.gz | 3 +++ libevent.changes | 10 ++++++++++ libevent.spec | 29 +++++++++++++++++------------ 5 files changed, 41 insertions(+), 15 deletions(-) delete mode 100644 libevent-1.2.tar.gz create mode 100644 libevent-1.3a-optflags.patch create mode 100644 libevent-1.3a.tar.gz diff --git a/libevent-1.2.tar.gz b/libevent-1.2.tar.gz deleted file mode 100644 index 375e488..0000000 --- a/libevent-1.2.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:2a6a840c00d5f8061d6c1b9811671d89c01a34f69214828bf745dbc6937caea4 -size 413811 diff --git a/libevent-1.3a-optflags.patch b/libevent-1.3a-optflags.patch new file mode 100644 index 0000000..78e0f00 --- /dev/null +++ b/libevent-1.3a-optflags.patch @@ -0,0 +1,11 @@ +--- 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.3a.tar.gz b/libevent-1.3a.tar.gz new file mode 100644 index 0000000..7770980 --- /dev/null +++ b/libevent-1.3a.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6bcf0c04be6e2ce902fa5a1e6d9e6b09d347c7a1c7f5a7ab5ed35606e34ed40b +size 445718 diff --git a/libevent.changes b/libevent.changes index 074c439..c050209 100644 --- a/libevent.changes +++ b/libevent.changes @@ -1,3 +1,13 @@ +------------------------------------------------------------------- +Tue Feb 20 13:17:44 CET 2007 - meissner@suse.de + +- Updated to 1.3a. + + Small bug and performances fixes to evhttp layer. + + DNS Server from Adam Langley and Nick Mathewson + + Chunked transfer encoding for HTTP/1.1 from Dug Song. + + DNS DDoS fix; bug report from Jon Oberheide. + + Various small improvements. + ------------------------------------------------------------------- Sun Nov 12 19:04:24 CET 2006 - lmuelle@suse.de diff --git a/libevent.spec b/libevent.spec index 1f830cb..19e8e9a 100644 --- a/libevent.spec +++ b/libevent.spec @@ -1,7 +1,7 @@ # -# spec file for package libevent (Version 1.2) +# spec file for package libevent (Version 1.3a) # -# Copyright (c) 2006 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany. # This file and all modifications and additions to the pristine # package are under the same license as the package itself. # @@ -13,8 +13,8 @@ Name: libevent URL: http://monkey.org/~provos/libevent/ Summary: Library Providing an Event Handling API -Version: 1.2 -Release: 2 +Version: 1.3a +Release: 1 Group: Development/Libraries/C and C++ License: BSD License and BSD-like BuildRoot: %{_tmppath}/%{name}-%{version}-build @@ -22,6 +22,7 @@ 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 %description The libevent library provides a mechanism to execute a function when a @@ -35,15 +36,12 @@ Authors: Nils Provos %prep -%setup -q +%setup -q +%patch0 -p1 %build -%{?suse_update_config:%{suse_update_config -f }} -autoconf -CFLAGS="$RPM_OPT_FLAGS" ./configure \ - --prefix=/usr \ - --libdir=%{_libdir} \ - --mandir=%{_mandir} +autoreconf -i -f +%configure make %install @@ -59,7 +57,14 @@ rm -rf $RPM_BUILD_ROOT %{_includedir}/*.h %{_mandir}/man?/* -%changelog -n libevent +%changelog +* Tue Feb 20 2007 - meissner@suse.de +- Updated to 1.3a. + + Small bug and performances fixes to evhttp layer. + + DNS Server from Adam Langley and Nick Mathewson + + Chunked transfer encoding for HTTP/1.1 from Dug Song. + + DNS DDoS fix; bug report from Jon Oberheide. + + Various small improvements. * Sun Nov 12 2006 - lmuelle@suse.de - Update to version 1.2. + Support for non-blocking DNS resolution.