summaryrefslogtreecommitdiff
path: root/lang/nodejs/patches
diff options
context:
space:
mode:
authorfhajny <fhajny@pkgsrc.org>2018-05-02 16:33:02 +0000
committerfhajny <fhajny@pkgsrc.org>2018-05-02 16:33:02 +0000
commit63552ff08b0d1ac6e938f5fa4adc83b774eab9bd (patch)
treee92cfd33848908c328db4cd885bc32656e9e8977 /lang/nodejs/patches
parent03ce2e6756d968b10d70514039721f9d1dbdb990 (diff)
downloadpkgsrc-63552ff08b0d1ac6e938f5fa4adc83b774eab9bd.tar.gz
lang/nodejs*: Remove the npm package manager from nodejs packages. Introduce nodeversion.mk framework to pick and depend on one of the supported nodejs version packages. Bump respective PKGREVISIONs.
Diffstat (limited to 'lang/nodejs/patches')
-rw-r--r--lang/nodejs/patches/patch-deps_npm_node__modules_node-gyp_gyp_pylib_gyp_generator_make.py15
-rw-r--r--lang/nodejs/patches/patch-deps_npm_node__modules_node-gyp_gyp_pylib_gyp_xcode__emulation.py15
2 files changed, 0 insertions, 30 deletions
diff --git a/lang/nodejs/patches/patch-deps_npm_node__modules_node-gyp_gyp_pylib_gyp_generator_make.py b/lang/nodejs/patches/patch-deps_npm_node__modules_node-gyp_gyp_pylib_gyp_generator_make.py
deleted file mode 100644
index 2c6ec6a6485..00000000000
--- a/lang/nodejs/patches/patch-deps_npm_node__modules_node-gyp_gyp_pylib_gyp_generator_make.py
+++ /dev/null
@@ -1,15 +0,0 @@
-$NetBSD: patch-deps_npm_node__modules_node-gyp_gyp_pylib_gyp_generator_make.py,v 1.1 2013/06/26 11:53:02 jperkin Exp $
-
-Ensure we use the system libtool on OSX.
-
---- deps/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/make.py.orig 2013-06-13 17:35:30.000000000 +0000
-+++ deps/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/make.py
-@@ -161,7 +161,7 @@ cmd_solink_module = $(LINK.$(TOOLSET)) -
-
- LINK_COMMANDS_MAC = """\
- quiet_cmd_alink = LIBTOOL-STATIC $@
--cmd_alink = rm -f $@ && ./gyp-mac-tool filter-libtool libtool $(GYP_LIBTOOLFLAGS) -static -o $@ $(filter %.o,$^)
-+cmd_alink = rm -f $@ && ./gyp-mac-tool filter-libtool /usr/bin/libtool $(GYP_LIBTOOLFLAGS) -static -o $@ $(filter %.o,$^)
-
- quiet_cmd_link = LINK($(TOOLSET)) $@
- cmd_link = $(LINK.$(TOOLSET)) $(GYP_LDFLAGS) $(LDFLAGS.$(TOOLSET)) -o "$@" $(LD_INPUTS) $(LIBS)
diff --git a/lang/nodejs/patches/patch-deps_npm_node__modules_node-gyp_gyp_pylib_gyp_xcode__emulation.py b/lang/nodejs/patches/patch-deps_npm_node__modules_node-gyp_gyp_pylib_gyp_xcode__emulation.py
deleted file mode 100644
index 38e74a047e3..00000000000
--- a/lang/nodejs/patches/patch-deps_npm_node__modules_node-gyp_gyp_pylib_gyp_xcode__emulation.py
+++ /dev/null
@@ -1,15 +0,0 @@
-$NetBSD: patch-deps_npm_node__modules_node-gyp_gyp_pylib_gyp_xcode__emulation.py,v 1.1 2017/05/30 14:26:38 adam Exp $
-
-Do not generate debugging symbols (uses lots of disk space).
-
---- deps/npm/node_modules/node-gyp/gyp/pylib/gyp/xcode_emulation.py.orig 2017-05-30 13:51:50.000000000 +0000
-+++ deps/npm/node_modules/node-gyp/gyp/pylib/gyp/xcode_emulation.py
-@@ -500,7 +500,7 @@ class XcodeSettings(object):
-
- self._Appendf(cflags, 'GCC_OPTIMIZATION_LEVEL', '-O%s', default='s')
-
-- if self._Test('GCC_GENERATE_DEBUGGING_SYMBOLS', 'YES', default='YES'):
-+ if self._Test('GCC_GENERATE_DEBUGGING_SYMBOLS', 'YES', default='NO'):
- dbg_format = self._Settings().get('DEBUG_INFORMATION_FORMAT', 'dwarf')
- if dbg_format == 'dwarf':
- cflags.append('-gdwarf-2')