Update of /cvsroot/fink/packages/dists/stable/crypto/finkinfo
In directory usw-pr-cvs1:/tmp/cvs-serv5538

Added Files:
        neon-ssl-0.18.5-3.info neon-ssl-0.18.5-3.patch 
        neon19-ssl-0.19.4-1.info neon19-ssl-0.19.4-1.patch 
        neon21-ssl-0.21.2-1.info 
Log Message:
sync with unstable

--- NEW FILE: neon-ssl-0.18.5-3.info ---
Package: neon-ssl
Version: 0.18.5
Revision: 3
Maintainer: Max Horn <[EMAIL PROTECTED]>
Source: http://www.webdav.org/neon/neon-%v.tar.gz
Depends: libxml2 (>= 2.3.14-2), openssl
BuildDepends: gdbm, gmp, openssl-dev, expat, tcltk-dev
BuildDependsOnly: True
Conflicts: neon, neon19, neon19-ssl
Replaces: neon, neon19, neon19-ssl
Provides: neon
Patch: %f.patch
NoSetCPPFLAGS: true
SetCFLAGS: -no-cpp-precomp
ConfigureParams: --mandir='${prefix}/share/man' --enable-shared --enable-static 
--with-ssl=%p
SplitOff: <<
  Package: %N-shlibs
  Depends: libxml2 (>= 2.3.14-2)
  Conflicts: neon-shlibs
  Replaces: %N (<= 0.18.5-2), neon-shlibs, neon19, neon19-ssl
  Files: lib/libneon.*.dylib
  DocFiles: AUTHORS BUGS NEWS README THANKS TODO src/COPYING.LIB
<<
DocFiles: AUTHORS BUGS NEWS README THANKS TODO src/COPYING.LIB
Description: HTTP/WebDAV client library with a C API, with SSL support
DescDetail: <<
Current features:

 - High-level interface to HTTP and WebDAV methods.
 - Low-level interface to HTTP request handling, to allow implementing
   new methods easily.
 - Persistent connection support (HTTP/1.1 and HTTP/1.0 aware)
 - Basic and digest authentication (RFC2617) (including auth-int, md5-sess)
 - Proxy support (including basic/digest authentication)
 - Generic WebDAV 207 XML response handling mechanism
 - XML parsing using expat or libxml parser
 - Easy generation of error messages from 207 error responses
 - Basic HTTP/1.1 methods: GET, PUT, HEAD, OPTIONS, conditional PUT
 - WebDAV resource manipulation: MOVE, COPY, DELETE, MKCOL.
 - WebDAV metadata support: set and remove properties (PROPPATCH), query
   any set of properties (PROPFIND).

Provides lower-level interfaces to directly implement new HTTP
methods, and higher-level interfaces so that you don't have to
worry about the lower-level stuff.

neon is licensed under the GNU LGPL; see COPYING.LIB for full details.
<<
DescPackaging: <<
Patches configure script to allow linking on OS X 10.1.

Previous versions by Bill Bumgarner <[EMAIL PROTECTED]>.
<<
Homepage: http://www.webdav.org/neon/
License: LGPL

--- NEW FILE: neon-ssl-0.18.5-3.patch ---
diff -ru neon-0.18.5/configure neon-0.18.5-patched/configure
--- neon-0.18.5/configure       2002-01-27 12:18:05.000000000 +0100
+++ neon-0.18.5-patched/configure       2002-04-15 13:20:33.000000000 +0200
@@ -4509,7 +4509,7 @@
     ;;
 
   darwin* | rhapsody*)
-    allow_undefined_flag='-undefined suppress'
+    allow_undefined_flag='-undefined suppress -flat_namespace'
     # FIXME: Relying on posixy $() will cause problems for
     #        cross-compilation, but unfortunately the echo tests do not
     #        yet detect zsh echo's removal of \ escapes.
diff -ru neon-0.18.5/src/ne_xml.c neon-0.18.5-patched/src/ne_xml.c
--- neon-0.18.5/src/ne_xml.c    2002-01-03 15:24:17.000000000 +0100
+++ neon-0.18.5-patched/src/ne_xml.c    2002-04-15 13:20:18.000000000 +0200
@@ -58,7 +58,7 @@
 #endif
 
 /******** libxml **********/
-#  include <parser.h>
+#  include <libxml/parser.h>
 typedef xmlChar ne_xml_char;
 
 # else /* not HAVE_LIBXML */
diff -ru neon-0.19.3/src/http_base64.c libghttp-1.0.9-patched/src/http_base64.c
--- neon-0.19.3/src/http_base64.c       Wed Dec  9 15:26:32 1998
+++ neon-0.19.3-patched/src/base64.c    Sun Jun 30 15:01:27 2002
@@ -38,7 +38,7 @@
 static const char b64_alphabet[65] = { 
     "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
     "abcdefghijklmnopqrstuvwxyz"
-    "0123456789+/=" };
+    "0123456789+/=\0" };
     
 char *ne_base64(const char *text, size_t inlen)
 {

--- NEW FILE: neon19-ssl-0.19.4-1.info ---
Package: neon19-ssl
Version: 0.19.4
Revision: 1
Maintainer: Max Horn <[EMAIL PROTECTED]>
Source: http://www.webdav.org/neon/neon-%v.tar.gz
BuildDepends: libxml2, openssl-dev, gdbm, gmp, expat, tcltk-dev
Depends: %N-shlibs (= %v-%r)
Conflicts: neon-ssl, neon, neon19
Replaces: neon-ssl, neon, neon19
Patch: %f.patch
ConfigureParams: --mandir='${prefix}/share/man' --enable-shared --enable-static 
--with-ssl=%p 
DocFiles: AUTHORS BUGS NEWS README THANKS TODO src/COPYING.LIB
BuildDependsOnly: True
SetCFLAGS: -no-cpp-precomp
SplitOff: <<
  Package: %N-shlibs
  Depends: libxml2 (>= 2.3.14-2), openssl
  Conflicts: neon19-shlibs
  Replaces: neon19-shlibs
  Files: lib/libneon.19.0.4.dylib lib/libneon.19.dylib
  DocFiles: src/COPYING.LIB README
<<
Description: HTTP/WebDAV client library with a C API
DescDetail: <<
Current features:

 - High-level interface to HTTP and WebDAV methods.
 - Low-level interface to HTTP request handling, to allow implementing
   new methods easily.
 - Persistent connection support (HTTP/1.1 and HTTP/1.0 aware)
 - Basic and digest authentication (RFC2617) (including auth-int, md5-sess)
 - Proxy support (including basic/digest authentication)
 - Generic WebDAV 207 XML response handling mechanism
 - XML parsing using expat or libxml parser
 - Easy generation of error messages from 207 error responses
 - Basic HTTP/1.1 methods: GET, PUT, HEAD, OPTIONS, conditional PUT
 - WebDAV resource manipulation: MOVE, COPY, DELETE, MKCOL.
 - WebDAV metadata support: set and remove properties (PROPPATCH), query
   any set of properties (PROPFIND).

Provides lower-level interfaces to directly implement new HTTP
methods, and higher-level interfaces so that you don't have to
worry about the lower-level stuff.

neon is licensed under the GNU LGPL; see COPYING.LIB for full details.
<<
DescPackaging: <<
Patches configure script to allow linking on OS X 10.1.

Previous versions by Bill Bumgarner <[EMAIL PROTECTED]>.
<<
Homepage: http://www.webdav.org/neon/
License: LGPL

--- NEW FILE: neon19-ssl-0.19.4-1.patch ---
diff -ru neon-0.19.3/src/ne_xml.c neon-0.19.3-patched/src/ne_xml.c
--- neon-0.19.3/src/ne_xml.c    Mon Feb 25 21:52:07 2002
+++ neon-0.19.3-patched/src/ne_xml.c    Mon Mar 25 20:25:33 2002
@@ -58,7 +58,7 @@
 #endif
 
 /******** libxml **********/
-#  include <parser.h>
+#  include <libxml/parser.h>
 typedef xmlChar ne_xml_char;
 
 # else /* not HAVE_LIBXML */
diff -ru neon-0.19.3/src/http_base64.c libghttp-1.0.9-patched/src/http_base64.c
--- neon-0.19.3/src/http_base64.c       Wed Dec  9 15:26:32 1998
+++ neon-0.19.3-patched/src/base64.c    Sun Jun 30 15:01:27 2002
@@ -38,7 +38,7 @@
 static const char b64_alphabet[65] = { 
     "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
     "abcdefghijklmnopqrstuvwxyz"
-    "0123456789+/=" };
+    "0123456789+/=\0" };
     
 char *ne_base64(const char *text, size_t inlen)
 {

--- NEW FILE: neon21-ssl-0.21.2-1.info ---
Package: neon21-ssl
Version: 0.21.2
Revision: 1
Maintainer: Christian Schaffner <[EMAIL PROTECTED]>
Source: http://www.webdav.org/neon/neon-%v.tar.gz
Source-MD5: 56d10bc19b292b5b0f9e98204dbd8b41
BuildDepends: libxml2, openssl-dev, gdbm, gmp, expat, tcltk-dev
Depends: %N-shlibs (= %v-%r)
Conflicts: neon-ssl, neon, neon19, neon19-ssl, neon21
Replaces: neon-ssl, neon, neon19, neon19-ssl, neon21
#Provides: neon
ConfigureParams: --mandir='${prefix}/share/man' --with-force-zlib --enable-shared 
--enable-static --with-ssl
SetCFLAGS: -no-cpp-precomp
DocFiles: AUTHORS BUGS ChangeLog NEWS README THANKS TODO src/COPYING.LIB
BuildDependsOnly: True
SplitOff: <<
  Package: %N-shlibs
  Depends: libxml2 (>= 2.3.14-2), openssl
  Conflicts: neon21-shlibs
  Replaces: neon21-shlibs
  Files: lib/libneon.21.0.2.dylib lib/libneon.21.dylib
  DocFiles: src/COPYING.LIB README
<<
Description: HTTP/WebDAV client library with a C API
DescDetail: <<
Current features:

 - High-level interface to HTTP and WebDAV methods (PUT, GET, HEAD etc)
 - Low-level interface to HTTP request handling, to allow implementing
   new methods easily.
 - persistent connections
 - RFC2617 basic and digest authentication (including auth-int, md5-sess)
 - Proxy support (including basic/digest authentication)
 - SSL/TLS support using OpenSSL (including client certificate support)
 - Generic WebDAV 207 XML response handling mechanism
 - XML parsing using the expat or libxml parsers
 - Easy generation of error messages from 207 error responses
 - WebDAV resource manipulation: MOVE, COPY, DELETE, MKCOL.
 - WebDAV metadata support: set and remove properties, query any set of
   properties (PROPPATCH/PROPFIND).
 - autoconf macros supplied for easily embedding neon directly inside an
   application source tree.

neon is licensed under the GNU LGPL; see COPYING.LIB for full details.
<<
DescPackaging: <<
Previous versions by Max Horn <[EMAIL PROTECTED]>.
Previous versions by Bill Bumgarner <[EMAIL PROTECTED]>.
<<
Homepage: http://www.webdav.org/neon/
License: LGPL



-------------------------------------------------------
This sf.net email is sponsored by: OSDN - Tired of that same old
cell phone?  Get a new here for FREE!
https://www.inphonic.com/r.asp?r=sourceforge1&refcode1=vs3390
_______________________________________________
Fink-commits mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/fink-commits

Reply via email to