Date: Fri, 28 Oct 2016 13:47:26 +0000 (UTC) From: Mark Felder <feld@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r424843 - head/www/node Message-ID: <201610281347.u9SDlQCC056547@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: feld Date: Fri Oct 28 13:47:26 2016 New Revision: 424843 URL: https://svnweb.freebsd.org/changeset/ports/424843 Log: www/node: Update to 6.9.1 Bump to the latest upstream 6.x release. Node.js v6 is now an LTS release, see the v6.9.0 release announcement for details. The v6.9.0 release was also a security release, while v6.9.1 fixes a regression introduced in v6.8.0. Cleanup clang vs. gcc handling by using USES=compiler:c++-lib https://nodejs.org/en/blog/release/v6.9.0/ https://nodejs.org/en/blog/release/v6.9.1/ https://nodejs.org/en/blog/vulnerability/october-2016-security-releases/ PR: 213604 Security: CVE-2016-5180 Modified: head/www/node/Makefile head/www/node/distinfo Modified: head/www/node/Makefile ============================================================================== --- head/www/node/Makefile Fri Oct 28 13:43:14 2016 (r424842) +++ head/www/node/Makefile Fri Oct 28 13:47:26 2016 (r424843) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= node -PORTVERSION= 6.8.0 +PORTVERSION= 6.9.1 DISTVERSIONPREFIX= v CATEGORIES= www MASTER_SITES= http://nodejs.org/dist/v${PORTVERSION}/ @@ -22,11 +22,11 @@ BUNDLED_SSL_CONFIGURE_OFF+= --shared-ope NLS_CONFIGURE_ON= --with-intl=system-icu NLS_LIB_DEPENDS= libicui18n.so:devel/icu -USES= compiler execinfo gmake python:2,build pkgconfig localbase +USES= compiler:c++11-lib execinfo gmake python:2,build pkgconfig localbase HAS_CONFIGURE= yes USE_LDCONFIG= yes -CONFLICTS_INSTALL= node4-* node-0.[02-9][0-9]* node-devel-0.[0-9]* node010-[0-9]* node012-[0-9]* iojs-[0-9]* +CONFLICTS_INSTALL= node4-4.* node012-0.12.* node010-0.10.* node-devel-[0-9]* iojs-[0-9]* ONLY_FOR_ARCHS= i386 amd64 armv6 CONFIGURE_ARGS= --prefix=${PREFIX_RELDEST} \ @@ -65,18 +65,7 @@ IGNORE= cannot build node.js with Libre CONFIGURE_ARGS= --openssl-no-asm .endif -.if ${COMPILER_TYPE} == clang -MAKE_ENV+= LINK=clang++ -CFLAGS+= -Wno-unused-private-field -.if ${COMPILER_VERSION} >= 33 -CFLAGS+= -Wno-nested-anon-types -Wno-unused-function -.if ${COMPILER_VERSION} >= 34 -CFLAGS+= -Wno-unused-const-variable -.endif -.endif -.else -MAKE_ARGS+= strictaliasing=off -USE_GCC= yes +.if ${COMPILER_TYPE} == gcc # GCC does not expose std::snprintf() without this define CXXFLAGS+= -D_GLIBCXX_USE_C99 .endif Modified: head/www/node/distinfo ============================================================================== --- head/www/node/distinfo Fri Oct 28 13:43:14 2016 (r424842) +++ head/www/node/distinfo Fri Oct 28 13:47:26 2016 (r424843) @@ -1,3 +1,3 @@ -TIMESTAMP = 1476306017 -SHA256 (node-v6.8.0.tar.gz) = a8a2d4b74734991dd45e5b2b0b13617864f1283f6d6bc262e1e4d30741114352 -SIZE (node-v6.8.0.tar.gz) = 26502047 +TIMESTAMP = 1476953621 +SHA256 (node-v6.9.1.tar.gz) = a98997ca3a4d10751f0ebe97839b2308a31ae884b4203cda0c99cf36bc7fe3bf +SIZE (node-v6.9.1.tar.gz) = 26504341
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201610281347.u9SDlQCC056547>