Sun Aug 5 11:40:29 2018 UTC ()
nodejs needs a recent libuv (1.22.0).

Bump revision.

This fixes a build failure on my machine with an older libuv version
installed.


(bsiegert)
diff -r1.140 -r1.141 pkgsrc/lang/nodejs/Makefile

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

--- pkgsrc/lang/nodejs/Makefile 2018/08/02 12:18:24 1.140
+++ pkgsrc/lang/nodejs/Makefile 2018/08/05 11:40:29 1.141
@@ -1,22 +1,26 @@ @@ -1,22 +1,26 @@
1# $NetBSD: Makefile,v 1.140 2018/08/02 12:18:24 fhajny Exp $ 1# $NetBSD: Makefile,v 1.141 2018/08/05 11:40:29 bsiegert Exp $
2 2
3DISTNAME= node-v10.8.0 3DISTNAME= node-v10.8.0
 4PKGREVISION= 1
4 5
5USE_LANGUAGES= c gnu++14 6USE_LANGUAGES= c gnu++14
6 7
7# Stated by the changelog as of 8.2.0 8# Stated by the changelog as of 8.2.0
8GCC_REQD+= 4.9.4 9GCC_REQD+= 4.9.4
9 10
 11# Stated by the changelog
 12BUILDLINK_API_DEPENDS.libuv+= libuv>=1.22
 13
10.include "../../mk/bsd.prefs.mk" 14.include "../../mk/bsd.prefs.mk"
11 15
12# Optional OpenSSL support in nghttp2 conflicts with OpenSSL 1.1.x 16# Optional OpenSSL support in nghttp2 conflicts with OpenSSL 1.1.x
13# bundled and built by lang/nodejs. 17# bundled and built by lang/nodejs.
14# Uncomment when we switch to openssl>=1.1 18# Uncomment when we switch to openssl>=1.1
15# CONFIGURE_ARGS+= --shared-nghttp2 19# CONFIGURE_ARGS+= --shared-nghttp2
16CONFIGURE_ARGS+= --with-intl=system-icu 20CONFIGURE_ARGS+= --with-intl=system-icu
17 21
18CHECK_PORTABILITY_SKIP+= deps/openssl/openssl/.travis-create-release.sh 22CHECK_PORTABILITY_SKIP+= deps/openssl/openssl/.travis-create-release.sh
19 23
20.include "options.mk" 24.include "options.mk"
21 25
22.include "../../lang/nodejs/Makefile.common" 26.include "../../lang/nodejs/Makefile.common"