From owner-svn-ports-head@FreeBSD.ORG Wed May 13 14:54:54 2015 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.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BAE31843; Wed, 13 May 2015 14:54:54 +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)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9BF3A1579; Wed, 13 May 2015 14:54:54 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t4DEss1h025921; Wed, 13 May 2015 14:54:54 GMT (envelope-from brooks@FreeBSD.org) Received: (from brooks@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t4DEsroq025917; Wed, 13 May 2015 14:54:53 GMT (envelope-from brooks@FreeBSD.org) Message-Id: <201505131454.t4DEsroq025917@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: brooks set sender to brooks@FreeBSD.org using -f From: Brooks Davis Date: Wed, 13 May 2015 14:54:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r386221 - in head: devel/libiomp5-devel devel/llvm-devel lang/clang-devel 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.20 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, 13 May 2015 14:54:54 -0000 Author: brooks Date: Wed May 13 14:54:53 2015 New Revision: 386221 URL: https://svnweb.freebsd.org/changeset/ports/386221 Log: Use svnlite in the maintainer BOOTSTRAP target. Requested by: xmj Modified: head/devel/libiomp5-devel/Makefile head/devel/llvm-devel/Makefile head/lang/clang-devel/Makefile Modified: head/devel/libiomp5-devel/Makefile ============================================================================== --- head/devel/libiomp5-devel/Makefile Wed May 13 14:52:24 2015 (r386220) +++ head/devel/libiomp5-devel/Makefile Wed May 13 14:54:53 2015 (r386221) @@ -42,11 +42,10 @@ BROKEN= Only builds on amd64, arm, aarc .include "${.CURDIR}/../../devel/llvm-devel/Makefile.svn_rev" .if defined(BOOTSTRAP) || defined(SVN_FETCH) -FETCH_DEPENDS+= svn:${PORTSDIR}/devel/subversion - +SVN?= svnlite do-fetch: ${MKDIR} ${WRKDIR} - svn export -r ${SVN_REV} \ + ${SVN} export -r ${SVN_REV} \ http://llvm.org/svn/llvm-project/openmp/trunk ${WRKDIR}/${DISTNAME} cd ${WRKDIR}; tar cvfJ ${DISTDIR}/${DISTNAME}.tar.xz ${DISTNAME} .if ${USER} == brooks || ${USER} == bed22 Modified: head/devel/llvm-devel/Makefile ============================================================================== --- head/devel/llvm-devel/Makefile Wed May 13 14:52:24 2015 (r386220) +++ head/devel/llvm-devel/Makefile Wed May 13 14:54:53 2015 (r386221) @@ -130,10 +130,11 @@ NOT_FOR_ARCH= ia64 BROKEN= GCC failing on 8.x .endif +SVN?= svnlite .if !defined(SVN_REV) .if defined(BOOTSTRAP) LANG= "C" -SVN_REV!= svn info http://llvm.org/svn/llvm-project/ | ${GREP} Revision | cut -d' ' -f2 +SVN_REV!= ${SVN} info http://llvm.org/svn/llvm-project/ | ${GREP} Revision | cut -d' ' -f2 .else .include "Makefile.svn_rev" .endif @@ -148,11 +149,9 @@ CONFIGURE_ARGS+= --with-optimize-option= .endif .if defined(BOOTSTRAP) || defined(SVN_FETCH) -FETCH_DEPENDS+= svn:${PORTSDIR}/devel/subversion - do-fetch: ${MKDIR} ${WRKDIR} - svn export -r ${SVN_REV} \ + ${SVN} export -r ${SVN_REV} \ http://llvm.org/svn/llvm-project/llvm/trunk ${WRKSRC} cd ${WRKDIR}; tar cvfy ${DISTDIR}/${DISTNAME}.tar.bz2 ${DISTNAME} echo "SVN_REV= ${SVN_REV}" > ${MASTERDIR}/Makefile.svn_rev Modified: head/lang/clang-devel/Makefile ============================================================================== --- head/lang/clang-devel/Makefile Wed May 13 14:52:24 2015 (r386220) +++ head/lang/clang-devel/Makefile Wed May 13 14:54:53 2015 (r386221) @@ -101,11 +101,11 @@ pre-fetch: .endif .if defined(BOOTSTRAP) || defined(SVN_FETCH) -FETCH_DEPENDS+= svn:${PORTSDIR}/devel/subversion +SVN?= svnlite do-fetch: ${MKDIR} ${WRKDIR} - svn export -r ${SVN_REV} \ + ${SVN} export -r ${SVN_REV} \ http://llvm.org/svn/llvm-project/cfe/trunk ${WRKDIR}/${CLANG_NAME} cd ${WRKDIR}; tar cvfy ${DISTDIR}/${DISTNAME}.tar.bz2 ${DISTNAME} .if ${USER} == brooks || ${USER} == bed22