pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/lang/nodejs



Module Name:    pkgsrc
Committed By:   fhajny
Date:           Fri Sep  7 11:45:04 UTC 2018

Modified Files:
        pkgsrc/lang/nodejs: Makefile distinfo

Log Message:
lang/nodejs: Update to 10.10.0.

- child_process:
  - `TypedArray` and `DataView` values are now accepted as input by
    `execFileSync` and `spawnSync`.
- coverage:
  - Native V8 code coverage information can now be output to disk by
    setting the environment variable `NODE_V8_COVERAGE` to a directory.
- fs:
  - The methods `fs.read`, `fs.readSync`, `fs.write`, `fs.writeSync`,
    `fs.writeFile` and `fs.writeFileSync` now all accept `TypedArray`
    and `DataView` objects.
  - A new boolean option, `withFileTypes`, can be passed to to
    `fs.readdir` and `fs.readdirSync`. If set to true, the methods
    return an array of directory entries. These are objects that can
    be used to determine the type of each entry and filter them based
    on that without calling `fs.stat`.
- http2:
  - The `http2` module is no longer experimental.
- os:
  - Added two new methods: `os.getPriority` and `os.setPriority`,
    allowing to manipulate the scheduling priority of processes.
- process:
  - Added `process.allowedNodeEnvironmentFlags`. This object can be
    used to programmatically validate and list flags that are allowed
    in the `NODE_OPTIONS` environment variable.
- src:
  - Deprecated option variables in public C++ API.
  - Refactored options parsing.
- vm:
  - Added `vm.compileFunction`, a method to create new JavaScript
    functions from a source body, with options similar to those of
    the other `vm` methods.


To generate a diff of this commit:
cvs rdiff -u -r1.142 -r1.143 pkgsrc/lang/nodejs/Makefile
cvs rdiff -u -r1.133 -r1.134 pkgsrc/lang/nodejs/distinfo

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/lang/nodejs/Makefile
diff -u pkgsrc/lang/nodejs/Makefile:1.142 pkgsrc/lang/nodejs/Makefile:1.143
--- pkgsrc/lang/nodejs/Makefile:1.142   Thu Aug 16 12:23:11 2018
+++ pkgsrc/lang/nodejs/Makefile Fri Sep  7 11:45:04 2018
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.142 2018/08/16 12:23:11 fhajny Exp $
+# $NetBSD: Makefile,v 1.143 2018/09/07 11:45:04 fhajny Exp $
 
-DISTNAME=      node-v10.9.0
+DISTNAME=      node-v10.10.0
 
 USE_LANGUAGES= c gnu++14
 
@@ -8,7 +8,7 @@ USE_LANGUAGES=  c gnu++14
 GCC_REQD+=     4.9.4
 
 # Stated by the changelog
-BUILDLINK_API_DEPENDS.libuv+=   libuv>=1.22
+BUILDLINK_API_DEPENDS.libuv+=   libuv>=1.23
 
 .include "../../mk/bsd.prefs.mk"
 

Index: pkgsrc/lang/nodejs/distinfo
diff -u pkgsrc/lang/nodejs/distinfo:1.133 pkgsrc/lang/nodejs/distinfo:1.134
--- pkgsrc/lang/nodejs/distinfo:1.133   Thu Aug 16 12:23:11 2018
+++ pkgsrc/lang/nodejs/distinfo Fri Sep  7 11:45:04 2018
@@ -1,9 +1,9 @@
-$NetBSD: distinfo,v 1.133 2018/08/16 12:23:11 fhajny Exp $
+$NetBSD: distinfo,v 1.134 2018/09/07 11:45:04 fhajny Exp $
 
-SHA1 (node-v10.9.0.tar.gz) = c290adec3a0beb5e8896f88848374920b830ccd4
-RMD160 (node-v10.9.0.tar.gz) = 84bc05aad2377ac65e49214fbaab3eb665421a2e
-SHA512 (node-v10.9.0.tar.gz) = c32514f543eb17984a79df468bee4e32457f76a5af0969056b80242a16ff61044b254332f17646b38a82b75747d9f348337821cf68093aafd1feef3ae7645666
-Size (node-v10.9.0.tar.gz) = 35848393 bytes
+SHA1 (node-v10.10.0.tar.gz) = e6cd5bdb15decc7f72b02c23ccff1a3516befce7
+RMD160 (node-v10.10.0.tar.gz) = d5d6e803c1b8da0910f9b7817215b66fad694661
+SHA512 (node-v10.10.0.tar.gz) = 6f8e37dad2ae0acbd6bfd3ea57f0fdd263cba9f2e0cbbcc311e6d0167c6c0ea12f57189d1982f8cf11acb024536de506e2f3376895b67422d280e3eec21e6ad3
+Size (node-v10.10.0.tar.gz) = 35927251 bytes
 SHA1 (patch-common.gypi) = de37949f38d9bd39a18b59d59ec74e528bd323ac
 SHA1 (patch-deps_cares_cares.gyp) = 2235eb44bc984fa2e745fdf1786f1ae6de6ef80f
 SHA1 (patch-deps_openssl_config_opensslconf__asm.h) = 7b074ebd5353dff662ac66cf4012926f12dd7b7e



Home | Main Index | Thread Index | Old Index