summaryrefslogtreecommitdiff
path: root/lang/nodejs/Makefile
diff options
context:
space:
mode:
authorfhajny <fhajny@pkgsrc.org>2015-09-17 10:42:34 +0000
committerfhajny <fhajny@pkgsrc.org>2015-09-17 10:42:34 +0000
commitb3dad11dab4a36eeccee5dfba30c964dd4edce4f (patch)
tree8f2aacfa335f1e5f6a350d83d19c96e2b185b7e4 /lang/nodejs/Makefile
parent8e75f9601f2dab1da7ec952aadda6e7ac727335d (diff)
downloadpkgsrc-b3dad11dab4a36eeccee5dfba30c964dd4edce4f.tar.gz
Update lang/nodejs to 4.1.0. OK'd by jperkin.
Notable changes: * buffer: - Buffers are now created in JavaScript, rather than C++. This increases the speed of buffer creation - Buffer#slice() now uses Uint8Array#subarray() internally, increasing slice() performance * fs: - fs.utimes() now properly converts numeric strings, NaN, and Infinity - fs.WriteStream now implements _writev, allowing for super-fast bulk writes * http: Fixed an issue with certain write() sizes causing errors when using http.request() * npm: Upgrade to version 2.14.3, see https://github.com/npm/npm/releases/tag/v2.14.3 for more details * src: V8 cpu profiling no longer erroneously shows idle time * timers: #ref() and #unref() now return the timer they belong to * v8: Lateral upgrade to 4.5.103.33 from 4.5.103.30, contains minor fixes. This fixes a previously known bug where some computed object shorthand properties did not work correctly Full release notes: https://nodejs.org/en/blog/release/v4.1.0/
Diffstat (limited to 'lang/nodejs/Makefile')
-rw-r--r--lang/nodejs/Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/lang/nodejs/Makefile b/lang/nodejs/Makefile
index d5726fa51b4..ab345776532 100644
--- a/lang/nodejs/Makefile
+++ b/lang/nodejs/Makefile
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.40 2015/09/09 15:59:31 fhajny Exp $
+# $NetBSD: Makefile,v 1.41 2015/09/17 10:42:34 fhajny Exp $
-DISTNAME= node-v4.0.0
+DISTNAME= node-v4.1.0
CATEGORIES= devel
MASTER_SITES= http://nodejs.org/dist/${DISTNAME:S/node-//}/
PKGNAME= ${DISTNAME:S/-v/js-/}
@@ -52,6 +52,8 @@ CHECK_INTERPRETER_SKIP+= lib/node_modules/npm/*
BUILD_DEPENDS+= lockf-[0-9]*:../../sysutils/lockf
.endif
+TEST_TARGET= check
+
pre-install:
${FIND} ${WRKSRC}/deps/npm -name '*.orig' | ${XARGS} ${RM} -f
${CHMOD} -R g-w ${WRKSRC}