Wed Dec 16 11:39:00 2020 UTC ()
nodejs: mark as Python 2.7 only


(adam)
diff -r1.202 -r1.203 pkgsrc/lang/nodejs/Makefile

cvs diff -r1.202 -r1.203 pkgsrc/lang/nodejs/Makefile (expand / switch to unified diff)

--- pkgsrc/lang/nodejs/Makefile 2020/12/16 07:24:06 1.202
+++ pkgsrc/lang/nodejs/Makefile 2020/12/16 11:39:00 1.203
@@ -1,28 +1,30 @@ @@ -1,28 +1,30 @@
1# $NetBSD: Makefile,v 1.202 2020/12/16 07:24:06 adam Exp $ 1# $NetBSD: Makefile,v 1.203 2020/12/16 11:39:00 adam Exp $
2 2
3DISTNAME= node-v14.15.2 3DISTNAME= node-v14.15.2
4EXTRACT_SUFX= .tar.xz 4EXTRACT_SUFX= .tar.xz
5 5
6USE_LANGUAGES= c gnu++14 6USE_LANGUAGES= c gnu++14
7 7
8.include "../../mk/bsd.prefs.mk" 8.include "../../mk/bsd.prefs.mk"
9 9
10# XXX: figure out a way to add rpaths to torque 10# XXX: figure out a way to add rpaths to torque
11MAKE_ENV+= LD_LIBRARY_PATH=${PREFIX}/lib 11MAKE_ENV+= LD_LIBRARY_PATH=${PREFIX}/lib
12 12
13CONFIGURE_ARGS+= --shared-nghttp2 13CONFIGURE_ARGS+= --shared-nghttp2
14CONFIGURE_ARGS+= --with-intl=system-icu 14CONFIGURE_ARGS+= --with-intl=system-icu
15 15
 16PYTHON_VERSIONS_ACCEPTED= 27
 17
16CHECK_PORTABILITY_SKIP+= tools/macos-installer/pkgbuild/npm/scripts/preinstall 18CHECK_PORTABILITY_SKIP+= tools/macos-installer/pkgbuild/npm/scripts/preinstall
17 19
18.if ${MACHINE_ARCH} == "i386" 20.if ${MACHINE_ARCH} == "i386"
19# 64 bit atomic ops are required 21# 64 bit atomic ops are required
20CXXFLAGS+= -march=i586 22CXXFLAGS+= -march=i586
21# required for SSE2 code under i386. 23# required for SSE2 code under i386.
22CXXFLAGS+= -mstackrealign 24CXXFLAGS+= -mstackrealign
23.endif 25.endif
24 26
25.include "options.mk" 27.include "options.mk"
26 28
27# Node turns on -latomic for arm, mips and ppc. 29# Node turns on -latomic for arm, mips and ppc.
28.if !empty(MACHINE_ARCH:M*arm*) || \ 30.if !empty(MACHINE_ARCH:M*arm*) || \