summaryrefslogtreecommitdiffstats
path: root/package/nodejs/0.10.47/0001-remove-python-bz2-dependency.patch
diff options
context:
space:
mode:
authorMartin Bark <martin@barkynet.com>2016-09-29 20:12:45 +0100
committerPeter Korsgaard <peter@korsgaard.com>2016-09-30 11:35:12 +0200
commit734ea7ce27bbe5f26f6aa4e04de5504e98aa5fe4 (patch)
treebca6a7275c87dff9266e6f62b9cf9fd117e8a57e /package/nodejs/0.10.47/0001-remove-python-bz2-dependency.patch
parentfa280211bca2c5e8cf0ccb6e6931f3cda9d9d861 (diff)
downloadbuildroot-734ea7ce27bbe5f26f6aa4e04de5504e98aa5fe4.tar.gz
buildroot-734ea7ce27bbe5f26f6aa4e04de5504e98aa5fe4.zip
package/nodejs: bump version to 0.10.47
https://nodejs.org/en/blog/release/v0.10.47/ Signed-off-by: Martin Bark <martin@barkynet.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/nodejs/0.10.47/0001-remove-python-bz2-dependency.patch')
-rw-r--r--package/nodejs/0.10.47/0001-remove-python-bz2-dependency.patch27
1 files changed, 27 insertions, 0 deletions
diff --git a/package/nodejs/0.10.47/0001-remove-python-bz2-dependency.patch b/package/nodejs/0.10.47/0001-remove-python-bz2-dependency.patch
new file mode 100644
index 0000000000..75fe437502
--- /dev/null
+++ b/package/nodejs/0.10.47/0001-remove-python-bz2-dependency.patch
@@ -0,0 +1,27 @@
+Remove dependency on Python bz2 module
+
+The Python bz2 module is only needed in certain cases, so only import
+it when needed. In the normal nodejs build, this allows to remove the
+dependency on this module.
+
+Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
+Index: b/deps/v8/tools/js2c.py
+===================================================================
+--- a/deps/v8/tools/js2c.py
++++ b/deps/v8/tools/js2c.py
+@@ -33,7 +33,6 @@
+
+ import os, re, sys, string
+ import jsmin
+-import bz2
+
+
+ def ToCAsciiArray(lines):
+@@ -344,6 +343,7 @@
+ else:
+ raw_sources_declaration = RAW_SOURCES_COMPRESSION_DECLARATION
+ if env['COMPRESSION'] == 'bz2':
++ import bz2
+ all_sources = bz2.compress("".join(all_sources))
+ total_length = len(all_sources)
+ sources_data = ToCArray(all_sources)
OpenPOWER on IntegriCloud