-
Notifications
You must be signed in to change notification settings - Fork 88
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Notable Changes: * Buffer * Passing invalid input to Buffer.byteLength will now throw an error [#8946](nodejs/node#8946). * Calling Buffer without new is now deprecated and will emit a process warning [#8169](nodejs/node#8169). * Passing a negative number to allocUnsafe will now throw an error [#7079](nodejs/node#7079). * Child Process * The fork and execFile methods now have stronger argument validation [#7399](nodejs/node#7399). * Cluster * The worker.suicide method is deprecated and will emit a process warning [#3747](nodejs/node#3747). * Deps * V8 has been updated to 5.4.500.36 [#8317](nodejs/node#8317), [#8852](nodejs/node#8852), [#9253](nodejs/node#9253). * NODE_MODULE_VERSION has been updated to 51 [#8808](nodejs/node#8808). * File System * A process warning is emitted if a callback is not passed to async file system methods [#7897](nodejs/node#7897). * Intl * Intl.v8BreakIterator constructor has been deprecated and will emit a process warning [#8908](nodejs/node#8908). * Promises * Unhandled Promise rejections have been deprecated and will emit a process warning [#8217](nodejs/node#8217). * Punycode * The `punycode` module has been deprecated [#7941](nodejs/node#7941). * URL * An Experimental WHATWG URL Parser has been introduced [#7448](nodejs/node#7448). Signed-off-by: Ilkka Myller <[email protected]>
- Loading branch information
Showing
3 changed files
with
103 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 1,10 @@ | ||
require nodejs_7.inc | ||
|
||
INC_PR = "r1" | ||
|
||
LIC_FILES_CHKSUM = "file://LICENSE;md5=19eb7a3bddc44523bf96176c3da4b422" | ||
|
||
SRC_URI[src.md5sum] = "7b3a026fd9bffeb694e9db7220bb1099" | ||
SRC_URI[src.sha256sum] = "95ae4a37b8cf57816f96588ebe9ce5dbbb2c5452d177edd75fcfe6caf3b12b9b" | ||
|
||
DEFAULT_PREFERENCE = "-1" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 1,91 @@ | ||
DESCRIPTION = "Node.js is a JavaScript runtime built on Chrome's V8 JavaScript engine" | ||
HOMEPAGE = "http://nodejs.org" | ||
|
||
LICENSE = "MIT" | ||
|
||
COMPATIBLE_MACHINE_armv4 = "(!.*armv4).*" | ||
# COMPATIBLE_MACHINE_armv5 = "(!.*armv5).*" | ||
COMPATIBLE_MACHINE_mips64 = "(!.*mips64).*" | ||
|
||
INC_PR = "r1" | ||
PR = "${INC_PR}.0" | ||
|
||
PROVIDES = "node" | ||
RPROVIDES_${PN} = "node" | ||
|
||
SRC_URI = "https://nodejs.org/dist/v${PV}/node-v${PV}.tar.gz;name=src" | ||
|
||
S = "${WORKDIR}/node-v${PV}" | ||
|
||
# v8 errors out if you have set CCACHE | ||
CCACHE = "" | ||
|
||
inherit nodejs-arch | ||
|
||
ARCHFLAGS_arm = "${@bb.utils.contains('TUNE_FEATURES', 'callconvention-hard', '--with-arm-float-abi=hard', '--with-arm-float-abi=softfp', d)} \ | ||
${@bb.utils.contains('TUNE_FEATURES', 'neon', '--with-arm-fpu=neon', \ | ||
bb.utils.contains('TUNE_FEATURES', 'vfpv3d16', '--with-arm-fpu=vfpv3-d16', \ | ||
bb.utils.contains('TUNE_FEATURES', 'vfpv3', '--with-arm-fpu=vfpv3', \ | ||
'--with-arm-fpu=vfp', d), d), d)}" | ||
ARCHFLAGS ?= "" | ||
|
||
GYP_DEFINES_append_mipsel = " mips_arch_variant='r1' " | ||
|
||
PACKAGECONFIG ??= "zlib openssl" | ||
|
||
PACKAGECONFIG[zlib] = "--shared-zlib,,zlib," | ||
PACKAGECONFIG[openssl] = "--shared-openssl,,openssl," | ||
PACKAGECONFIG[v8-inspector] = ",--without-inspector,," | ||
|
||
DISABLE_STATIC = "" | ||
|
||
do_configure () { | ||
export LD="${CXX}" | ||
GYP_DEFINES="${GYP_DEFINES}" export GYP_DEFINES | ||
./configure --prefix="${prefix}" \ | ||
--dest-cpu="${@nodejs_map_dest_cpu(d.getVar('TARGET_ARCH', True), d)}" \ | ||
--dest-os=linux ${ARCHFLAGS} \ | ||
--without-snapshot \ | ||
--with-intl=none \ | ||
${EXTRA_OECONF} | ||
} | ||
|
||
do_compile () { | ||
export LD="${CXX}" | ||
oe_runmake BUILDTYPE=Release | ||
} | ||
|
||
do_install () { | ||
oe_runmake install DESTDIR="${D}" | ||
} | ||
|
||
do_install_append_class-native() { | ||
# make sure we use node from PATH instead of absolute path to sysroot | ||
sed "1s^.*^#\!/usr/bin/env node^g" -i ${D}${exec_prefix}/lib/node_modules/npm/bin/npm-cli.js | ||
} | ||
|
||
do_install_append_class-nativesdk() { | ||
# make sure we use node from PATH instead of absolute path to sysroot | ||
sed "1s^.*^#\!/usr/bin/env node^g" -i ${D}${exec_prefix}/lib/node_modules/npm/bin/npm-cli.js | ||
sed "1s^.*^#\!/usr/bin/env python^g" -i ${D}${exec_prefix}/lib/node_modules/npm/node_modules/node-gyp/gyp/samples/samples | ||
} | ||
|
||
do_install_append_class-target() { | ||
# make sure we use node from PATH instead of absolute path to sysroot | ||
sed "1s^.*^#\!${bindir}/env node^g" -i ${D}${exec_prefix}/lib/node_modules/npm/bin/npm-cli.js | ||
} | ||
|
||
PACKAGES = "${PN}-npm" | ||
FILES_${PN}-npm = "${exec_prefix}/lib/node_modules ${bindir}/npm" | ||
RDEPENDS_${PN}-npm = "bash python-compiler python-shell python-datetime python-subprocess python-multiprocessing python-crypt python-textutils python-netclient python-misc" | ||
|
||
PACKAGES = "${PN}-dtrace" | ||
FILES_${PN}-dtrace = "${exec_prefix}/lib/dtrace" | ||
|
||
PACKAGES = "${PN}-systemtap" | ||
FILES_${PN}-systemtap = "${datadir}/systemtap" | ||
|
||
INSANE_SKIP_${PN} = "file-rdeps" | ||
INSANE_SKIP_${PN}-dbg = "host-user-contaminated" | ||
|
||
BBCLASSEXTEND = "native nativesdk" |