From owner-svn-ports-all@freebsd.org Fri Mar 29 04:57:07 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 32141155943C; Fri, 29 Mar 2019 04:57:07 +0000 (UTC) (envelope-from bhughes@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id C6AC776949; Fri, 29 Mar 2019 04:57:06 +0000 (UTC) (envelope-from bhughes@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id A0E6A29E13; Fri, 29 Mar 2019 04:57:06 +0000 (UTC) (envelope-from bhughes@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x2T4v6nG043500; Fri, 29 Mar 2019 04:57:06 GMT (envelope-from bhughes@FreeBSD.org) Received: (from bhughes@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x2T4v5B4043496; Fri, 29 Mar 2019 04:57:05 GMT (envelope-from bhughes@FreeBSD.org) Message-Id: <201903290457.x2T4v5B4043496@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bhughes set sender to bhughes@FreeBSD.org using -f From: "Bradley T. Hughes" Date: Fri, 29 Mar 2019 04:57:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r497067 - in head/www: node node10 node6 node8 X-SVN-Group: ports-head X-SVN-Commit-Author: bhughes X-SVN-Commit-Paths: in head/www: node node10 node6 node8 X-SVN-Commit-Revision: 497067 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: C6AC776949 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.94 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.997,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.95)[-0.946,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Mar 2019 04:57:07 -0000 Author: bhughes Date: Fri Mar 29 04:57:05 2019 New Revision: 497067 URL: https://svnweb.freebsd.org/changeset/ports/497067 Log: www/node*: specify minimum versions of dependencies in BUILD_DEPENDS Add BUILD_DEPENDS for all LIB_DEPENDS, specifying the minimum version as the version bundled with a particlar version of Node.js. This should help people building from ports with out-of-date dependencies with a helpful message instead of build failures. Reported by: freebsd-ports@ Sponsored by: Miles AS Modified: head/www/node/Makefile head/www/node10/Makefile head/www/node6/Makefile head/www/node8/Makefile Modified: head/www/node/Makefile ============================================================================== --- head/www/node/Makefile Fri Mar 29 04:53:53 2019 (r497066) +++ head/www/node/Makefile Fri Mar 29 04:57:05 2019 (r497067) @@ -39,6 +39,7 @@ BUNDLED_SSL_CONFIGURE_OFF= --shared-openssl --openssl- BUNDLED_SSL_RUN_DEPENDS_OFF= ca_root_nss>=0:security/ca_root_nss NLS_CONFIGURE_ON= --with-intl=system-icu +NLS_BUILD_DEPENDS= icu>=63.1:devel/icu NLS_LIB_DEPENDS= libicui18n.so:devel/icu DTRACE_CONFIGURE_ON= --with-dtrace @@ -65,6 +66,9 @@ MAKE_ENV+= CC.host=${CC} CFLAGS.host="${CFLAGS}" \ CXX.host=${CXX} CXXFLAGS.host="${CXXFLAGS}" \ LINK.host=${CXX} LDFLAGS.host="${LDFLAGS}" +BUILD_DEPENDS+= c-ares>=1.15.0:dns/c-ares\ + libuv>=1.26.0:devel/libuv \ + libnghttp2>=1.34.0:www/libnghttp2 LIB_DEPENDS+= libcares.so:dns/c-ares\ libuv.so:devel/libuv \ libnghttp2.so:www/libnghttp2 Modified: head/www/node10/Makefile ============================================================================== --- head/www/node10/Makefile Fri Mar 29 04:53:53 2019 (r497066) +++ head/www/node10/Makefile Fri Mar 29 04:57:05 2019 (r497067) @@ -40,6 +40,7 @@ BUNDLED_SSL_CONFIGURE_OFF= --shared-openssl --openssl- BUNDLED_SSL_RUN_DEPENDS_OFF= ca_root_nss>=0:security/ca_root_nss NLS_CONFIGURE_ON= --with-intl=system-icu +NLS_BUILD_DEPENDS= icu>=62.1:devel/icu NLS_LIB_DEPENDS= libicui18n.so:devel/icu DTRACE_CONFIGURE_ON= --with-dtrace @@ -66,6 +67,9 @@ MAKE_ENV+= CC.host=${CC} CFLAGS.host="${CFLAGS}" \ CXX.host=${CXX} CXXFLAGS.host="${CXXFLAGS}" \ LINK.host=${CXX} LDFLAGS.host="${LDFLAGS}" +BUILD_DEPENDS+= c-ares>=1.15.0:dns/c-ares\ + libuv>=1.23.2:devel/libuv \ + libnghttp2>=1.34.0:www/libnghttp2 LIB_DEPENDS+= libcares.so:dns/c-ares\ libuv.so:devel/libuv \ libnghttp2.so:www/libnghttp2 Modified: head/www/node6/Makefile ============================================================================== --- head/www/node6/Makefile Fri Mar 29 04:53:53 2019 (r497066) +++ head/www/node6/Makefile Fri Mar 29 04:57:05 2019 (r497067) @@ -41,6 +41,7 @@ BUNDLED_SSL_USES_OFF= ssl BUNDLED_SSL_CONFIGURE_OFF+= --shared-openssl NLS_CONFIGURE_ON= --with-intl=system-icu +NLS_BUILD_DEPENDS= icu>=58.2:devel/icu NLS_LIB_DEPENDS= libicui18n.so:devel/icu DTRACE_CONFIGURE_ON= --with-dtrace @@ -66,6 +67,8 @@ MAKE_ENV+= CC.host=${CC} CFLAGS.host="${CFLAGS}" \ CXX.host=${CXX} CXXFLAGS.host="${CXXFLAGS}" \ LINK.host=${CXX} LDFLAGS.host="${LDFLAGS}" +BUILD_DEPENDS+= c-ares>=1.10.0:dns/c-ares\ + libuv>=1.16.1:devel/libuv LIB_DEPENDS+= libcares.so:dns/c-ares\ libuv.so:devel/libuv Modified: head/www/node8/Makefile ============================================================================== --- head/www/node8/Makefile Fri Mar 29 04:53:53 2019 (r497066) +++ head/www/node8/Makefile Fri Mar 29 04:57:05 2019 (r497067) @@ -38,6 +38,7 @@ BUNDLED_SSL_CONFIGURE_OFF= --shared-openssl --openssl- BUNDLED_SSL_RUN_DEPENDS_OFF= ca_root_nss>=0:security/ca_root_nss NLS_CONFIGURE_ON= --with-intl=system-icu +NLS_BUILD_DEPENDS= icu>=60.1:devel/icu NLS_LIB_DEPENDS= libicui18n.so:devel/icu DTRACE_CONFIGURE_ON= --with-dtrace @@ -64,6 +65,9 @@ MAKE_ENV+= CC.host=${CC} CFLAGS.host="${CFLAGS}" \ CXX.host=${CXX} CXXFLAGS.host="${CXXFLAGS}" \ LINK.host=${CXX} LDFLAGS.host="${LDFLAGS}" +BUILD_DEPENDS+= c-ares>=1.10.0:dns/c-ares\ + libuv>1.23.2:devel/libuv \ + libnghttp2>=1.33.0:www/libnghttp2 LIB_DEPENDS+= libcares.so:dns/c-ares\ libuv.so:devel/libuv \ libnghttp2.so:www/libnghttp2