From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 16 11:30:03 2009 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BBC02106566B for ; Wed, 16 Dec 2009 11:30:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 907E38FC17 for ; Wed, 16 Dec 2009 11:30:03 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id nBGBU3op009620 for ; Wed, 16 Dec 2009 11:30:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id nBGBU3MW009617; Wed, 16 Dec 2009 11:30:03 GMT (envelope-from gnats) Date: Wed, 16 Dec 2009 11:30:03 GMT Message-Id: <200912161130.nBGBU3MW009617@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: olli hauer Cc: Subject: Re: ports/138994: [patch] new port www/neon29 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: olli hauer List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 16 Dec 2009 11:30:03 -0000 The following reply was made to PR ports/138994; it has been noted by GNATS. From: olli hauer To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/138994: [patch] new port www/neon29 Date: Wed, 16 Dec 2009 12:27:53 +0100 (CET) neon is now already updated to 29.1. This patch is against the actual repocopy. changes neon29 neon29.1 * Fixes for (Unix) NTLM implementation: o fix handling of session timeout (Kai Sommerfeld) o fix possible crash (basic@mozdev.org) * Fix unnecessary re-authentication with SSPI (Danil Shopyrin) * Build fixes for Win32: - fix use of socklen_t with recent SDKs (Stefan Kung) - fix USE_GETADDRINFO on Win2K (Kai Sommerfeld) * Fix build with versions of GnuTLS older than 2.8.0. //olli --- patch_neon29.1.txt begins here --- --- neon29/Makefile 2009/12/16 06:12:51 1.1 +++ neon29/Makefile 2009/12/16 06:14:57 @@ -5,8 +5,8 @@ # $FreeBSD: ports/www/neon29/Makefile,v 1.46 2009/10/24 11:48:37 lev Exp $ # -PORTNAME= neon28 -PORTVERSION= 0.28.6 +PORTNAME= neon29 +PORTVERSION= 0.29.1 CATEGORIES= www MASTER_SITES= http://www.webdav.org/neon/ DISTNAME= neon-${PORTVERSION} @@ -14,7 +14,7 @@ MAINTAINER= lev@FreeBSD.org COMMENT= An HTTP and WebDAV client library for Unix systems -CONFLICTS= neon2[6|9]-[0-9]* +CONFLICTS= neon2[6|8]-[0-9]* USE_AUTOTOOLS= libtool:22 USE_LDCONFIG= yes --- neon29/distinfo 2009/12/16 06:14:28 1.1 +++ neon29/distinfo 2009/12/16 06:15:04 @@ -1,3 +1,3 @@ -MD5 (neon-0.28.6.tar.gz) = 252578ed555552b71d15909641484951 -SHA256 (neon-0.28.6.tar.gz) = 06ee8b1aa37a14a956a1158bf6b5a8c3388976d61c1dc3773a3ffe18ac8ecc0e -SIZE (neon-0.28.6.tar.gz) = 789193 +MD5 (neon-0.29.1.tar.gz) = eb4eac0499cb6fced6e3b11e4b720ebb +SHA256 (neon-0.29.1.tar.gz) = 2b9c10f1f3fd440e0ebcb18de1b7d51c2a8042dc0f542022a2948006d149c8ee +SIZE (neon-0.29.1.tar.gz) = 880945 --- neon29/pkg-plist 2009/12/16 06:13:00 1.1 +++ neon29/pkg-plist 2009/12/16 06:15:43 @@ -1,6 +1,7 @@ bin/neon-config include/neon/ne_207.h include/neon/ne_acl.h +include/neon/ne_acl3744.h include/neon/ne_alloc.h include/neon/ne_auth.h include/neon/ne_basic.h @@ -22,7 +23,7 @@ include/neon/ne_xml.h include/neon/ne_xmlreq.h include/neon/ne_pkcs11.h -lib/libneon.so.28 +lib/libneon.so.29 lib/libneon.so lib/libneon.la lib/libneon.a @@ -79,6 +80,7 @@ %%PORTDOCS%%%%DOCSDIR%%/html/reftok.html %%PORTDOCS%%%%DOCSDIR%%/html/refvers.html %%PORTDOCS%%%%DOCSDIR%%/html/refxml.html +%%PORTDOCS%%%%DOCSDIR%%/html/security.html %%PORTDOCS%%%%DOCSDIR%%/html/using.html %%PORTDOCS%%%%DOCSDIR%%/html/xml.html %%PORTDOCS%%@dirrm %%DOCSDIR%%/html --- patch_neon29.1.txt ends here ---