OBS User unknown 2008-04-06 05:08:56 +00:00 committed by Git OBS Bridge
parent 0f78dc6df9
commit 30d5bab213
6 changed files with 53 additions and 41 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:84c489cf1ac605a413463b177b222c8c3c0e948f42bfe9b8f6362ad49f3fe639
size 585906

View File

@ -1,7 +1,5 @@
Index: neon-config.in
===================================================================
--- neon-config.in.orig 2006-02-26 21:55:43.000000000 +0100
+++ neon-config.in 2007-11-26 03:38:14.000000000 +0100
--- neon-config.in
+++ neon-config.in
@@ -73,7 +73,7 @@ while test $# -gt 0; do
;;
@ -11,10 +9,8 @@ Index: neon-config.in
# Don't add standard library paths
if test "$prefix" != "/usr"; then
LIBS="-L${libdir} ${LIBS}"
Index: neon.pc.in
===================================================================
--- neon.pc.in.orig 2006-06-26 12:01:29.000000000 +0200
+++ neon.pc.in 2007-11-26 03:38:40.000000000 +0100
--- neon.pc.in
+++ neon.pc.in
@@ -7,5 +7,5 @@ Name: neon
Description: HTTP/WebDAV client library
Version: @NEON_VERSION@

3
neon-0.28.2.tar.bz2 Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:f214cf87f6e2ccdb37cba096682e954204d296e23a4907f034b4016c333a7837
size 590843

View File

@ -1,3 +1,23 @@
-------------------------------------------------------------------
Thu Apr 3 17:54:47 CEST 2008 - prusnak@suse.cz
- updated to 0.28.2
* Support "Proxy-Connection: Keep-Alive" for compatibility with HTTP/1.0
proxies which require persistent connections for NTLM authentication
* Fix an fd leak in ne_ssl_{,cli}cert_read (GnuTLS only)
* Enable fast initialization in GnuTLS.
(changes from 0.28.1)
* Fix build on SCO OpenServer 5.0.x (thanks to Nico Kadel-Garcia)
* Fix handling of Digest domain parameter values without a trailing slash
* Fix build against apr-util's bundled libexpat.la in Subversion
* Add --without-pakchois to configure (Arfrever Frehtes Taifersar Arahesis)
* zh message catalog renamed to zh_CN, translation updated (Dongsheng Song)
- disable make check, does not build on all archs
- dropped patch:
* digest.patch (included in update)
-------------------------------------------------------------------
Mon Mar 3 11:26:50 CET 2008 - olh@suse.de

View File

@ -1,18 +0,0 @@
---
src/ne_auth.c | 5 +----
1 file changed, 1 insertion(+), 4 deletions(-)
--- a/src/ne_auth.c
+++ b/src/ne_auth.c
@@ -819,10 +819,7 @@ static int inside_domain(auth_session *s
for (n = 0; n < sess->ndomains && !inside; n++) {
const char *d = sess->domains[n];
-
- inside = (d[strlen(d)-1] == '/'
- && strncmp(uri.path, d, strlen(d)) == 0)
- || strcmp(d, uri.path) == 0;
+ inside = strncmp(uri.path, d, strlen(d)) == 0;
}
NE_DEBUG(NE_DBG_HTTPAUTH, "auth: '%s' is inside auth domain: %d.\n",

View File

@ -1,5 +1,5 @@
#
# spec file for package neon (Version 0.28.0)
# spec file for package neon (Version 0.28.2)
#
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
# This file and all modifications and additions to the pristine
@ -14,15 +14,14 @@
Name: neon
BuildRequires: libexpat-devel libopenssl-devel openssl zlib-devel
Summary: An HTTP and WebDAV Client Library
Version: 0.28.0
Release: 7
License: GPL v2 or later
Version: 0.28.2
Release: 1
License: LGPL v2.1 or later
Group: Development/Libraries/Other
Url: http://www.webdav.org/neon
BuildRoot: %{_tmppath}/%{name}-%{version}-build
Source: http://www.webdav.org/neon/neon-%{version}.tar.bz2
Patch0: neon-0.27.2-bloat.patch
Patch1: neon.digest.patch
Patch0: neon-%{version}-bloat.patch
%description
neon is an HTTP and WebDAV client library with a C interface.
@ -57,6 +56,7 @@ Authors:
Joe Orton <joe@manyfish.co.uk>
%package -n libneon27
License: GPL v2 or later
Summary: An HTTP and WebDAV Client Library
Group: Development/Libraries/Other
@ -93,6 +93,7 @@ Authors:
Joe Orton <joe@manyfish.co.uk>
%package -n libneon-devel
License: GPL v2 or later
Summary: An HTTP and WebDAV Client Library
Group: Development/Libraries/Other
Requires: libneon27 = %{version} glibc-devel
@ -135,7 +136,6 @@ Authors:
%prep
%setup -q
%patch0
%patch1 -p1
%build
rm -f aclocal.m4 ltmain.sh
@ -146,7 +146,7 @@ sh autogen.sh
--enable-shared \
--disable-static \
--enable-warnings \
--with-pic
--with-pic
%{__make} %{?jobs:-j%jobs}
%install
@ -154,9 +154,8 @@ make DESTDIR=$RPM_BUILD_ROOT docdir=%{_defaultdocdir}/%{name} install install-ma
rm -f %{buildroot}%{_libdir}/*.la
grep -r include %{buildroot}%{_includedir}
%{buildroot}%{_bindir}/neon-config --libs
%check
make check
# %check
# make check
%clean
rm -rf $RPM_BUILD_ROOT
@ -186,9 +185,24 @@ rm -rf $RPM_BUILD_ROOT
%{_libdir}/pkgconfig/neon.pc
%changelog
* Thu Apr 03 2008 prusnak@suse.cz
- updated to 0.28.2
* Support "Proxy-Connection: Keep-Alive" for compatibility with HTTP/1.0
proxies which require persistent connections for NTLM authentication
* Fix an fd leak in ne_ssl_{,cli}cert_read (GnuTLS only)
* Enable fast initialization in GnuTLS.
(changes from 0.28.1)
* Fix build on SCO OpenServer 5.0.x (thanks to Nico Kadel-Garcia)
* Fix handling of Digest domain parameter values without a trailing slash
* Fix build against apr-util's bundled libexpat.la in Subversion
* Add --without-pakchois to configure (Arfrever Frehtes Taifersar Arahesis)
* zh message catalog renamed to zh_CN, translation updated (Dongsheng Song)
- disable make check, does not build on all archs
- dropped patch:
* digest.patch (included in update)
* Mon Mar 03 2008 olh@suse.de
- fix bug in digest domain parameter handling to fix svn commit
* Thu Feb 28 2008 crrodriguez@suse.de
* Fri Feb 29 2008 crrodriguez@suse.de
- run the test suite to detect any possible regression
* Fri Feb 15 2008 crrodriguez@suse.de
- version 0.28.0