From owner-svn-ports-all@freebsd.org Wed Jun 28 09:00:28 2017 Return-Path: Delivered-To: svn-ports-all@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 AE784D9CA25; Wed, 28 Jun 2017 09:00:28 +0000 (UTC) (envelope-from bhughes@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 7CCB470C6B; Wed, 28 Jun 2017 09:00:26 +0000 (UTC) (envelope-from bhughes@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5S90Pux009770; Wed, 28 Jun 2017 09:00:25 GMT (envelope-from bhughes@FreeBSD.org) Received: (from bhughes@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5S90O7j009762; Wed, 28 Jun 2017 09:00:24 GMT (envelope-from bhughes@FreeBSD.org) Message-Id: <201706280900.v5S90O7j009762@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bhughes set sender to bhughes@FreeBSD.org using -f From: "Bradley T. Hughes" Date: Wed, 28 Jun 2017 09:00:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444555 - in head: . www/node www/node/files X-SVN-Group: ports-head X-SVN-Commit-Author: bhughes X-SVN-Commit-Paths: in head: . www/node www/node/files X-SVN-Commit-Revision: 444555 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 Jun 2017 09:00:28 -0000 Author: bhughes Date: Wed Jun 28 09:00:24 2017 New Revision: 444555 URL: https://svnweb.freebsd.org/changeset/ports/444555 Log: www/node: Update 7.10.0 -> 8.1.2 Bump to the latest major version of Node.js. Remove files/patch-node.gyp, since this patch has been accepted upstream. Remove files/patch-deps_v8_src_base_atomicops__internals__arm__gcc.h, which patches a now non-existent file after a change in how V8 implements atomic operations. Conditionally add the _LIBCPP_TRIVIAL_PAIR_COPY_CTOR define when using clang 3.x to workaround a known problem in libc++. Approved by: robak (mentor) Differential Revision: https://reviews.freebsd.org/D11030 Added: head/www/node/files/patch-common.gypi (contents, props changed) Deleted: head/www/node/files/patch-deps_v8_src_base_atomicops__internals__arm__gcc.h head/www/node/files/patch-node.gyp Modified: head/UPDATING head/www/node/Makefile head/www/node/distinfo head/www/node/files/patch-deps_v8_src_arm_cpu-arm.cc head/www/node/files/patch-deps_v8_src_base_platform_platform-freebsd.cc head/www/node/files/patch-deps_v8_src_libsampler_sampler.cc head/www/node/pkg-plist Modified: head/UPDATING ============================================================================== --- head/UPDATING Wed Jun 28 09:00:16 2017 (r444554) +++ head/UPDATING Wed Jun 28 09:00:24 2017 (r444555) @@ -5,6 +5,18 @@ they are unavoidable. You should get into the habit of checking this file for changes each time you update your ports collection, before attempting any port upgrades. +20170628: + AFFECTS: users of www/node + AUTHOR: bhughes@freebsd.org + + The www/node port has been updated to Node.js v8.1.2, the latest + upstream release. This is a major release, including many significant + changes. Users are encouraged to read the release announcements before + upgrading: + + https://nodejs.org/en/blog/release/v8.0.0/ + https://nodejs.org/en/blog/release/v8.1.0/ + 20170626: AFFECTS: users of net-mgmt/zabbix24* AUTHOR: dbaio@FreeBSD.org Modified: head/www/node/Makefile ============================================================================== --- head/www/node/Makefile Wed Jun 28 09:00:16 2017 (r444554) +++ head/www/node/Makefile Wed Jun 28 09:00:24 2017 (r444555) @@ -1,13 +1,13 @@ # $FreeBSD$ PORTNAME= node -PORTVERSION= 7.10.0 +PORTVERSION= 8.1.2 DISTVERSIONPREFIX= v CATEGORIES= www MASTER_SITES= http://nodejs.org/dist/v${PORTVERSION}/ MAINTAINER= bhughes@FreeBSD.org -COMMENT= V8 JavaScript for client and server (7.x) +COMMENT= V8 JavaScript for client and server LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE @@ -81,6 +81,18 @@ CONFIGURE_ARGS+=--openssl-no-asm .if ${COMPILER_TYPE} == gcc # GCC does not expose std::snprintf() without this define CXXFLAGS+= -D_GLIBCXX_USE_C99 +.endif + +.if ${COMPILER_TYPE} == clang && ${COMPILER_VERSION} < 40 +# Conditinal work around for a bug in libc++ included with clang 3.x: +# https://bugs.llvm.org/show_bug.cgi?id=18249 +# https://bugs.llvm.org/show_bug.cgi?id=18350 +# https://bugs.llvm.org/show_bug.cgi?id=18853 +# +# Upstream Node.js adds the define to all FreeBSD builds. This breaks +# the build with clang 4.0, so we patch it out (files/patch-common.gypi) +# and add it here instead. +CXXFLAGS+= -D_LIBCPP_TRIVIAL_PAIR_COPY_CTOR .endif .if ${PORT_OPTIONS:MDTRACE} Modified: head/www/node/distinfo ============================================================================== --- head/www/node/distinfo Wed Jun 28 09:00:16 2017 (r444554) +++ head/www/node/distinfo Wed Jun 28 09:00:24 2017 (r444555) @@ -1,3 +1,3 @@ -TIMESTAMP = 1494269914 -SHA256 (node-v7.10.0.tar.gz) = c4843fe8bffb59c2327063a5e67a89af60d7927f7ace7548695a2cf4c1aa6d03 -SIZE (node-v7.10.0.tar.gz) = 28110265 +TIMESTAMP = 1498511945 +SHA256 (node-v8.1.2.tar.gz) = d717b364868956e0b775145e57a84e63962a9cf83146e778547fc71bb27a2251 +SIZE (node-v8.1.2.tar.gz) = 29934001 Added: head/www/node/files/patch-common.gypi ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/node/files/patch-common.gypi Wed Jun 28 09:00:24 2017 (r444555) @@ -0,0 +1,12 @@ +--- common.gypi.orig 2017-06-28 05:52:55 UTC ++++ common.gypi +@@ -407,9 +407,6 @@ + 'libraries': [ '-lelf' ], + }], + ['OS=="freebsd"', { +- # Use this flag because on FreeBSD std::pairs copy constructor is non-trivial +- # https://lists.freebsd.org/pipermail/freebsd-toolchain/2016-March/002094.html +- 'cflags': [ '-D_LIBCPP_TRIVIAL_PAIR_COPY_CTOR=1' ], + 'ldflags': [ + '-Wl,--export-dynamic', + ], Modified: head/www/node/files/patch-deps_v8_src_arm_cpu-arm.cc ============================================================================== --- head/www/node/files/patch-deps_v8_src_arm_cpu-arm.cc Wed Jun 28 09:00:16 2017 (r444554) +++ head/www/node/files/patch-deps_v8_src_arm_cpu-arm.cc Wed Jun 28 09:00:24 2017 (r444555) @@ -1,4 +1,4 @@ ---- deps/v8/src/arm/cpu-arm.cc.orig 2016-10-19 22:02:03 UTC +--- deps/v8/src/arm/cpu-arm.cc.orig 2017-06-15 11:55:20 UTC +++ deps/v8/src/arm/cpu-arm.cc @@ -7,6 +7,9 @@ #ifdef __QNXNTO__ @@ -10,7 +10,7 @@ #else #include // for cache flushing. #endif -@@ -24,6 +27,9 @@ void CpuFeatures::FlushICache(void* star +@@ -24,6 +27,9 @@ void CpuFeatures::FlushICache(void* start, size_t size #if !defined(USE_SIMULATOR) #if V8_OS_QNX msync(start, size, MS_SYNC | MS_INVALIDATE_ICACHE); Modified: head/www/node/files/patch-deps_v8_src_base_platform_platform-freebsd.cc ============================================================================== --- head/www/node/files/patch-deps_v8_src_base_platform_platform-freebsd.cc Wed Jun 28 09:00:16 2017 (r444554) +++ head/www/node/files/patch-deps_v8_src_base_platform_platform-freebsd.cc Wed Jun 28 09:00:24 2017 (r444555) @@ -1,4 +1,4 @@ ---- deps/v8/src/base/platform/platform-freebsd.cc.orig 2016-10-19 22:02:03 UTC +--- deps/v8/src/base/platform/platform-freebsd.cc.orig 2017-06-15 11:55:21 UTC +++ deps/v8/src/base/platform/platform-freebsd.cc @@ -35,6 +35,48 @@ namespace v8 { Modified: head/www/node/files/patch-deps_v8_src_libsampler_sampler.cc ============================================================================== --- head/www/node/files/patch-deps_v8_src_libsampler_sampler.cc Wed Jun 28 09:00:16 2017 (r444554) +++ head/www/node/files/patch-deps_v8_src_libsampler_sampler.cc Wed Jun 28 09:00:24 2017 (r444555) @@ -1,6 +1,6 @@ ---- deps/v8/src/libsampler/sampler.cc.orig 2016-11-08 18:53:14 UTC +--- deps/v8/src/libsampler/sampler.cc.orig 2017-06-15 11:55:21 UTC +++ deps/v8/src/libsampler/sampler.cc -@@ -499,9 +499,9 @@ void SignalHandler::FillRegisterState(vo +@@ -499,9 +499,9 @@ void SignalHandler::FillRegisterState(void* context, R state->sp = reinterpret_cast(mcontext.mc_rsp); state->fp = reinterpret_cast(mcontext.mc_rbp); #elif V8_HOST_ARCH_ARM Modified: head/www/node/pkg-plist ============================================================================== --- head/www/node/pkg-plist Wed Jun 28 09:00:16 2017 (r444554) +++ head/www/node/pkg-plist Wed Jun 28 09:00:24 2017 (r444555) @@ -2,8 +2,11 @@ bin/node include/node/common.gypi include/node/config.gypi include/node/libplatform/libplatform.h +include/node/libplatform/libplatform-export.h include/node/libplatform/v8-tracing.h include/node/node.h +include/node/node_api.h +include/node/node_api_types.h include/node/node_buffer.h include/node/node_object_wrap.h include/node/node_version.h @@ -102,7 +105,6 @@ include/node/node_version.h %%BUNDLED_SSL%%include/node/openssl/x509_vfy.h %%BUNDLED_SSL%%include/node/openssl/x509v3.h include/node/v8-debug.h -include/node/v8-experimental.h include/node/v8-inspector-protocol.h include/node/v8-inspector.h include/node/v8-platform.h @@ -110,6 +112,7 @@ include/node/v8-profiler.h include/node/v8-testing.h include/node/v8-util.h include/node/v8-version.h +include/node/v8-version-string.h include/node/v8.h include/node/v8config.h %%DTRACE%%lib/dtrace/node.d