From owner-svn-ports-head@freebsd.org Thu Feb 4 10:52:22 2021 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 36B9153F6D9; Thu, 4 Feb 2021 10:52:22 +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) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4DWb3V0j6Zz3hMM; Thu, 4 Feb 2021 10:52:22 +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 0B127235F; Thu, 4 Feb 2021 10:52:22 +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 114AqLRS066865; Thu, 4 Feb 2021 10:52:21 GMT (envelope-from bhughes@FreeBSD.org) Received: (from bhughes@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 114AqLun066861; Thu, 4 Feb 2021 10:52:21 GMT (envelope-from bhughes@FreeBSD.org) Message-Id: <202102041052.114AqLun066861@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bhughes set sender to bhughes@FreeBSD.org using -f From: "Bradley T. Hughes" Date: Thu, 4 Feb 2021 10:52:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r564016 - in head/www/node: . files X-SVN-Group: ports-head X-SVN-Commit-Author: bhughes X-SVN-Commit-Paths: in head/www/node: . files X-SVN-Commit-Revision: 564016 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 04 Feb 2021 10:52:22 -0000 Author: bhughes Date: Thu Feb 4 10:52:20 2021 New Revision: 564016 URL: https://svnweb.freebsd.org/changeset/ports/564016 Log: www/node: Update 15.7.0 -> 15.8.0 https://nodejs.org/en/blog/release/v15.8.0/ Regenerate patches with `make makepatch` and re-introduce the dependency on dns/c-ares now that it is at version 1.17.1 (the minimum required version for Node.js). Sponsored by: Miles AS Modified: head/www/node/Makefile head/www/node/distinfo head/www/node/files/patch-deps_openssl_config_archs_linux-elf_no-asm_openssl.gypi head/www/node/files/patch-node.gypi Modified: head/www/node/Makefile ============================================================================== --- head/www/node/Makefile Thu Feb 4 10:44:11 2021 (r564015) +++ head/www/node/Makefile Thu Feb 4 10:52:20 2021 (r564016) @@ -2,7 +2,7 @@ PORTNAME= node DISTVERSIONPREFIX= v -DISTVERSION= 15.7.0 +DISTVERSION= 15.8.0 CATEGORIES= www MASTER_SITES= http://nodejs.org/dist/v${DISTVERSION}/ @@ -54,6 +54,7 @@ CONFLICTS_INSTALL= node10-[0-9]* node12-[0-9]* node14- CONFIGURE_ARGS= --prefix=${PREFIX_RELDEST} \ --without-npm \ --shared-brotli \ + --shared-cares \ --shared-libuv \ --shared-nghttp2 \ --shared-zlib @@ -70,10 +71,12 @@ MAKE_ENV+= CC.host=${CC} CFLAGS.host="${CFLAGS}" \ LINK.host=${CXX} LDFLAGS.host="${LDFLAGS}" BUILD_DEPENDS+= brotli>=1.0.9,1:archivers/brotli \ + c-ares>=1.17.1:dns/c-ares \ libuv>=1.40.0:devel/libuv \ libnghttp2>=1.42.0:www/libnghttp2 \ objdump:devel/binutils LIB_DEPENDS+= libbrotlidec.so:archivers/brotli \ + libcares.so:dns/c-ares \ libuv.so:devel/libuv \ libnghttp2.so:www/libnghttp2 Modified: head/www/node/distinfo ============================================================================== --- head/www/node/distinfo Thu Feb 4 10:44:11 2021 (r564015) +++ head/www/node/distinfo Thu Feb 4 10:52:20 2021 (r564016) @@ -1,3 +1,3 @@ -TIMESTAMP = 1611782205 -SHA256 (node-v15.7.0.tar.gz) = cda67d79fe69b7a977a5b7fcb64721a68daca1fc6890368813525c8b5d349ddb -SIZE (node-v15.7.0.tar.gz) = 62478734 +TIMESTAMP = 1612391467 +SHA256 (node-v15.8.0.tar.gz) = e08c8778a6b767cd0d2ab4613946d1616c3d4054dead08b04f705d607c84510f +SIZE (node-v15.8.0.tar.gz) = 62019805 Modified: head/www/node/files/patch-deps_openssl_config_archs_linux-elf_no-asm_openssl.gypi ============================================================================== --- head/www/node/files/patch-deps_openssl_config_archs_linux-elf_no-asm_openssl.gypi Thu Feb 4 10:44:11 2021 (r564015) +++ head/www/node/files/patch-deps_openssl_config_archs_linux-elf_no-asm_openssl.gypi Thu Feb 4 10:52:20 2021 (r564016) @@ -1,6 +1,6 @@ ---- deps/openssl/config/archs/linux-elf/no-asm/openssl.gypi.orig 2020-10-20 11:49:49 UTC +--- deps/openssl/config/archs/linux-elf/no-asm/openssl.gypi.orig 2021-02-02 17:47:01 UTC +++ deps/openssl/config/archs/linux-elf/no-asm/openssl.gypi -@@ -698,7 +698,7 @@ +@@ -696,7 +696,7 @@ '-Wall -O3 -fomit-frame-pointer', ], 'openssl_ex_libs_linux-elf': [ Modified: head/www/node/files/patch-node.gypi ============================================================================== --- head/www/node/files/patch-node.gypi Thu Feb 4 10:44:11 2021 (r564015) +++ head/www/node/files/patch-node.gypi Thu Feb 4 10:52:20 2021 (r564016) @@ -1,6 +1,6 @@ ---- node.gypi.orig 2020-10-20 11:49:51 UTC +--- node.gypi.orig 2021-02-02 17:47:04 UTC +++ node.gypi -@@ -340,6 +340,9 @@ +@@ -322,6 +322,9 @@ ['openssl_fips != "" or openssl_is_fips=="true"', { 'defines': [ 'NODE_FIPS_MODE' ], }],