From owner-svn-ports-head@freebsd.org Sat Jul 9 14:05:25 2016 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 62E94B83380; Sat, 9 Jul 2016 14:05:25 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::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 40BA911F9; Sat, 9 Jul 2016 14:05:25 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u69E5O33047883; Sat, 9 Jul 2016 14:05:24 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u69E5OP7047881; Sat, 9 Jul 2016 14:05:24 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201607091405.u69E5OP7047881@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Sat, 9 Jul 2016 14:05:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418282 - head/www/node 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.22 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: Sat, 09 Jul 2016 14:05:25 -0000 Author: pi Date: Sat Jul 9 14:05:24 2016 New Revision: 418282 URL: https://svnweb.freebsd.org/changeset/ports/418282 Log: www/node: 6.2.2 -> 6.3.0 - buffer: Added buffer.swap64() to complement swap16() & swap32(). - build: New configure options have been added for building Node.js as a shared library. o The options are: --shared, --without-v8-platform & --without-bundled-v8. - crypto: Root certificates have been updated. - debugger: The server address is now configurable via --debug=
:. - npm: Upgraded npm to v3.10.3 - readline: Added the prompt option to the readline constructor. - repl / vm: sigint/ctrl+c will now break out of infinite loops without stopping the Node.js instance. - src: o Added a node::FreeEnvironment public C++ API. o Refactored require('constants'), constants are now available directly from their respective modules. (James M Snell) #6534 - stream: Improved readable.read() performance by up to 70%. - timers: setImmediate() is now up to 150% faster in some situations. - util: Added a breakLength option to util.inspect() to control how objects are formatted across lines. - v8-inspector: Experimental support has been added for debugging Node.js over the inspector protocol. o Note: This feature is experimental, and it could be altered or removed. o You can try this feature by running Node.js with the --inspect flag. PR: 210893 Changes: https://nodejs.org/en/blog/release/v6.3.0/ Submitted by: Bradley T. Hughes (maintainer) Modified: head/www/node/Makefile head/www/node/distinfo Modified: head/www/node/Makefile ============================================================================== --- head/www/node/Makefile Sat Jul 9 13:58:28 2016 (r418281) +++ head/www/node/Makefile Sat Jul 9 14:05:24 2016 (r418282) @@ -1,9 +1,8 @@ # $FreeBSD$ PORTNAME= node -PORTVERSION= 6.2.2 +PORTVERSION= 6.3.0 DISTVERSIONPREFIX= v -PORTREVISION= 4 CATEGORIES= www MASTER_SITES= http://nodejs.org/dist/v${PORTVERSION}/ @@ -83,16 +82,14 @@ USE_GCC= yes post-patch: @${REINPLACE_CMD} -e 's|/usr/local|${LOCALBASE}|' \ ${WRKSRC}/deps/v8/tools/gyp/v8.gyp + # So many different ways to run python. Fix them all. @${REINPLACE_CMD} -e 's|/usr/bin/env python|${PYTHON_CMD}|' \ ${WRKSRC}/configure - @${REINPLACE_CMD} -e "s|python -c|${PYTHON_CMD} -c|" \ - ${WRKSRC}/deps/v8/build/toolchain.gypi - @${REINPLACE_CMD} -e "s|'python',|'${PYTHON_CMD}',|" \ - ${WRKSRC}/tools/icu/icu-generic.gyp \ - ${WRKSRC}/deps/v8/build/shim_headers.gypi \ - ${WRKSRC}/deps/v8/tools/gyp/v8.gyp \ - ${WRKSRC}/deps/v8/src/d8.gyp \ - ${WRKSRC}/node.gyp + @${FIND} ${WRKSRC} -type f -name '*.gyp*' -print0 \ + | ${XARGS} -0 ${REINPLACE_CMD} \ + -e "s|'python'|'${PYTHON_CMD}'|" \ + -e 's|