From owner-svn-ports-head@FreeBSD.ORG Wed Feb 26 21:09:20 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2F9AB8BB; Wed, 26 Feb 2014 21:09:20 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 192241BF1; Wed, 26 Feb 2014 21:09:20 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s1QL9JOo002812; Wed, 26 Feb 2014 21:09:19 GMT (envelope-from ohauer@svn.freebsd.org) Received: (from ohauer@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s1QL9JUo002808; Wed, 26 Feb 2014 21:09:19 GMT (envelope-from ohauer@svn.freebsd.org) Message-Id: <201402262109.s1QL9JUo002808@svn.freebsd.org> From: Olli Hauer Date: Wed, 26 Feb 2014 21:09:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r346227 - head/devel/subversion17 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Feb 2014 21:09:20 -0000 Author: ohauer Date: Wed Feb 26 21:09:19 2014 New Revision: 346227 URL: http://svnweb.freebsd.org/changeset/ports/346227 QAT: https://qat.redports.org/buildarchive/r346227/ Log: - update to version 1.7.16 - add BDB deprecated message (FS backend is the thefault since many years, I hope no one use BDB backends today) - adopt static build fix from devel/subversion Changes: ======== Version 1.7.16 (26 Feb 2014, from /branches/1.7.x) http://svn.apache.org/repos/asf/subversion/tags/1.7.16 User-visible changes: - Client-side bugfixes: * copy: fix some scenarios that broke the working copy (r1560690) * diff: fix regressions due to fixes in 1.7.14 (issue #4460) - Server-side bugfixes: * mod_dav_svn: prevent crashes with SVNListParentPath on (CVE-2014-0032) * reduce memory usage during checkout and export (r1564215) Developer-visible changes: - General: * fix failure in checkout_tests.py * support compiling against Cyrus sasl 2.1.25 (r1404912, r1413402) * support compiling against neon 0.30.x (r1566320) Version 1.7.15 (Not released, see changes for 1.7.16.) Modified: head/devel/subversion17/Makefile head/devel/subversion17/Makefile.common head/devel/subversion17/distinfo Modified: head/devel/subversion17/Makefile ============================================================================== --- head/devel/subversion17/Makefile Wed Feb 26 20:59:23 2014 (r346226) +++ head/devel/subversion17/Makefile Wed Feb 26 21:09:19 2014 (r346227) @@ -94,6 +94,7 @@ USES+= gettext:build . endif . if ${PORT_OPTIONS:MBDB} BDB_BUILD_DEPENDS= yes +.else . endif OLD_LIB_DEPENDS:= ${LIB_DEPENDS:S!^!${LOCALBASE}/lib/!:C!(\.so|\.[0-9]+)?:!.a:!} BUILD_DEPENDS+= ${OLD_LIB_DEPENDS} @@ -154,6 +155,12 @@ pre-everything:: @${ECHO_MSG} "Static binaries will be built." .endif # STATIC @${ECHO_MSG} "Many useful scripts will be installed into ${DATADIR}" +.if ${PORT_OPTIONS:MBDB} + @${ECHO_MSG} "" + @${ECHO_MSG} "!!! Berkeley DB backend is deprecated, please convert your repos to FS backend !!!" + @${ECHO_MSG} "!!! After switching to FS backend subversion can be rebuild without BDB support !!!" + @sleep 10 +.endif pre-configure: .if ${PORT_OPTIONS:MBDB} @@ -266,7 +273,7 @@ _mkrepos: .USE .endif svn-build-outputs-hack: - cd ${WRKSRC} && ./gen-make.py --release --installed-libs libsvn_client,libsvn_delta,libsvn_diff,libsvn_fs,libsvn_ra,libsvn_repos,libsvn_subr,libsvn_wc + (cd ${WRKSRC} && ./gen-make.py --release --installed-libs libsvn_client,libsvn_delta,libsvn_diff,libsvn_fs,libsvn_ra,libsvn_repos,libsvn_subr,libsvn_wc) ${MV} ${WRKSRC}/build-outputs.mk ${FILESDIR}/build-outputs.mk .include Modified: head/devel/subversion17/Makefile.common ============================================================================== --- head/devel/subversion17/Makefile.common Wed Feb 26 20:59:23 2014 (r346226) +++ head/devel/subversion17/Makefile.common Wed Feb 26 21:09:19 2014 (r346227) @@ -2,8 +2,8 @@ # $FreeBSD$ PORTNAME= subversion -PORTVERSION= 1.7.14 -PORTREVISION?= 1 +PORTVERSION= 1.7.16 +PORTREVISION?= 0 CATEGORIES+= devel MASTER_SITES= ${MASTER_SITE_APACHE} DIST_SUBDIR= subversion17 @@ -128,4 +128,6 @@ post-patch: | ${XARGS} ${REINPLACE_CMD} -e '1s|#\!/bin/b|#\!/usr/local/bin/b|' \ -e '1s|#\!/bin/env|#\!/usr/bin/env|' \ -e '1s|#\!/usr/bin/p|#\!/usr/local/bin/p|' +# remove all .bak files to clean the stage + ${FIND} ${WRKSRC} -name '*.bak' -delete Modified: head/devel/subversion17/distinfo ============================================================================== --- head/devel/subversion17/distinfo Wed Feb 26 20:59:23 2014 (r346226) +++ head/devel/subversion17/distinfo Wed Feb 26 21:09:19 2014 (r346227) @@ -1,2 +1,2 @@ -SHA256 (subversion17/subversion-1.7.14.tar.bz2) = c4ac8f37eb0ebd38901bfa6f1c7e4d7716d32d7460ee0cee520381ca2f5b120d -SIZE (subversion17/subversion-1.7.14.tar.bz2) = 6045932 +SHA256 (subversion17/subversion-1.7.16.tar.bz2) = 9dcbd8622045c5a9ab381d70754304030f180967d6e3db694baaf708f3253238 +SIZE (subversion17/subversion-1.7.16.tar.bz2) = 6006359