From owner-svn-ports-branches@freebsd.org Mon Sep 14 05:52:54 2020 Return-Path: Delivered-To: svn-ports-branches@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 24F563F3B72; Mon, 14 Sep 2020 05:52:54 +0000 (UTC) (envelope-from loader@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 "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4Bqb9y068kz4GqS; Mon, 14 Sep 2020 05:52:54 +0000 (UTC) (envelope-from loader@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 DB0AF1297B; Mon, 14 Sep 2020 05:52:53 +0000 (UTC) (envelope-from loader@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 08E5qrrH066345; Mon, 14 Sep 2020 05:52:53 GMT (envelope-from loader@FreeBSD.org) Received: (from loader@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 08E5qrux066343; Mon, 14 Sep 2020 05:52:53 GMT (envelope-from loader@FreeBSD.org) Message-Id: <202009140552.08E5qrux066343@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: loader set sender to loader@FreeBSD.org using -f From: Fukang Chen Date: Mon, 14 Sep 2020 05:52:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r548588 - in branches/2020Q3/shells/zsh: . files X-SVN-Group: ports-branches X-SVN-Commit-Author: loader X-SVN-Commit-Paths: in branches/2020Q3/shells/zsh: . files X-SVN-Commit-Revision: 548588 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 14 Sep 2020 05:52:54 -0000 Author: loader Date: Mon Sep 14 05:52:53 2020 New Revision: 548588 URL: https://svnweb.freebsd.org/changeset/ports/548588 Log: MFH: r548445 shells/zsh: Fix build with devel/ncurses 6.2 When devel/ncurses is installed in the system, the Zsh configure script detects and uses ${LOCALBASE}/include/ncurses/ncurses.h instead. The patch is obtained from this commit: https://sourceforge.net/p/zsh/code/ci/c6a85163619ed1cee89ab047a0d98108ed46828d/ cc -c -I. -I../../Src -I../../Src -I../../Src/Zle -I. -I/usr/local/include -DBOOL_DEFINED -DLIBICONV_PLUG -DHAVE_CONFIG_H -DMODULE -O2 -pipe -DLIBICONV_PLUG -fstack-protector-strong -fno-strict-aliasing -fPIC -o curses..o curses.c In file included from curses.c:210: ./curses_keys.h:93:15: error: use of undeclared identifier 'KEY_EVENT' {"EVENT", KEY_EVENT}, ^ 1 error generated. *** Error code 1 Reviewed by: koobs Approved by: koobs (ports, mentor) Differential Revision: https://reviews.freebsd.org/D26355 Approved by: ports-secteam (fluffy) Added: branches/2020Q3/shells/zsh/files/extra-patch-Src_Modules_curses__keys.awk - copied unchanged from r548445, head/shells/zsh/files/extra-patch-Src_Modules_curses__keys.awk Modified: branches/2020Q3/shells/zsh/Makefile Directory Properties: branches/2020Q3/ (props changed) Modified: branches/2020Q3/shells/zsh/Makefile ============================================================================== --- branches/2020Q3/shells/zsh/Makefile Mon Sep 14 05:47:50 2020 (r548587) +++ branches/2020Q3/shells/zsh/Makefile Mon Sep 14 05:52:53 2020 (r548588) @@ -88,6 +88,10 @@ SUB_FILES= pkg-message CONFIGURE_ENV+= ac_cv_lib_iconv_libiconv=no .endif +.if ${ncurses_ARGS} == port +EXTRA_PATCHES= ${PATCHDIR}/extra-patch-Src_Modules_curses__keys.awk +.endif + post-patch: # FreeBSD's clock_gettime(2) is in libc, not librt; see PR 167857 @${REINPLACE_CMD} -e '/LIBS/s|-lrt||' ${WRKSRC}/configure Copied: branches/2020Q3/shells/zsh/files/extra-patch-Src_Modules_curses__keys.awk (from r548445, head/shells/zsh/files/extra-patch-Src_Modules_curses__keys.awk) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2020Q3/shells/zsh/files/extra-patch-Src_Modules_curses__keys.awk Mon Sep 14 05:52:53 2020 (r548588, copy of r548445, head/shells/zsh/files/extra-patch-Src_Modules_curses__keys.awk) @@ -0,0 +1,18 @@ +https://sourceforge.net/p/zsh/code/ci/c6a85163619ed1cee89ab047a0d98108ed46828d/ +--- Src/Modules/curses_keys.awk.orig 2017-12-04 14:09:36 UTC ++++ Src/Modules/curses_keys.awk +@@ -12,8 +12,13 @@ BEGIN {nkeydefs = 0} + + END { + printf("static const struct zcurses_namenumberpair keypad_names[] = {\n") +- for (i = 0; i < 0 + nkeydefs; i++) ++ for (i = 0; i < 0 + nkeydefs; i++) { ++ if (name[i] == "EVENT") ++ printf("#ifdef KEY_EVENT\n") + printf(" {\"%s\", KEY_%s},\n", name[i], name[i]) ++ if (name[i] == "EVENT") ++ printf("#endif\n") ++ } + printf(" {NULL, 0}\n") + printf("};\n") + } From owner-svn-ports-branches@freebsd.org Mon Sep 14 17:04:04 2020 Return-Path: Delivered-To: svn-ports-branches@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 7363D3DC938; Mon, 14 Sep 2020 17:04:04 +0000 (UTC) (envelope-from mikael@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 "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4Bqt4N2TxQz40nn; Mon, 14 Sep 2020 17:04:04 +0000 (UTC) (envelope-from mikael@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 1FA4F1A61C; Mon, 14 Sep 2020 17:04:04 +0000 (UTC) (envelope-from mikael@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 08EH44mA080650; Mon, 14 Sep 2020 17:04:04 GMT (envelope-from mikael@FreeBSD.org) Received: (from mikael@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 08EH43c3080649; Mon, 14 Sep 2020 17:04:03 GMT (envelope-from mikael@FreeBSD.org) Message-Id: <202009141704.08EH43c3080649@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mikael set sender to mikael@FreeBSD.org using -f From: Mikael Urankar Date: Mon, 14 Sep 2020 17:04:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r548632 - branches/2020Q3/security/nss/files X-SVN-Group: ports-branches X-SVN-Commit-Author: mikael X-SVN-Commit-Paths: branches/2020Q3/security/nss/files X-SVN-Commit-Revision: 548632 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 14 Sep 2020 17:04:04 -0000 Author: mikael Date: Mon Sep 14 17:04:03 2020 New Revision: 548632 URL: https://svnweb.freebsd.org/changeset/ports/548632 Log: MFH: r548091 security/nss: fix build on aarch64 Import upstream patch from https://bugzilla.mozilla.org/show_bug.cgi?id=1659256 PR: 249053 Reported by: garga@ Approved by: jbeich@ Approved by: ports-secteam (joneum) Added: branches/2020Q3/security/nss/files/patch-bug1659256 - copied unchanged from r548091, head/security/nss/files/patch-bug1659256 Modified: Directory Properties: branches/2020Q3/ (props changed) Copied: branches/2020Q3/security/nss/files/patch-bug1659256 (from r548091, head/security/nss/files/patch-bug1659256) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2020Q3/security/nss/files/patch-bug1659256 Mon Sep 14 17:04:03 2020 (r548632, copy of r548091, head/security/nss/files/patch-bug1659256) @@ -0,0 +1,105 @@ +# HG changeset patch +# User Daiki Ueno +# Date 1599626828 -7200 +# Node ID b971c77c0d68d76c086a0df21841efb813b78c7b +# Parent e524a577761d8d61ff096121a3c00bf22f2cfa94 +Bug 1659256, add gcc version check on AArch64 optimization, r=rrelyea + +Summary: As described in https://access.redhat.com/solutions/19458, +gcc version in RHEL-7 is still 4.8.x and cannot compile the newly +added aes-armv8.c. There is a version check already for 32-bit arm, +but not for AArch64. This also removes NS_USE_GCC check added in bug +1652032 in favor of the automatic detection using CC_IS_* macros. + +Reviewers: rrelyea + +Reviewed By: rrelyea + +Subscribers: jmux, kjacobs + +Bug #: 1659256 + +Differential Revision: https://phabricator.services.mozilla.com/D87174 + +diff --git a/lib/freebl/Makefile b/lib/freebl/Makefile +--- lib/freebl/Makefile ++++ lib/freebl/Makefile +@@ -114,31 +114,47 @@ ifeq (,$(filter-out i386 x386 x86 x86_64 + $(OBJDIR)/gcm-x86.o: CFLAGS += -mpclmul -maes + $(OBJDIR)/aes-x86.o: CFLAGS += -mpclmul -maes + ifneq (,$(USE_64)$(USE_X32)) + DEFINES += -DNSS_X64 + else + DEFINES += -DNSS_X86 + endif + endif +-ifdef NS_USE_GCC + ifeq ($(CPU_ARCH),aarch64) +- DEFINES += -DUSE_HW_AES -DUSE_HW_SHA1 -DUSE_HW_SHA2 +- EXTRA_SRCS += aes-armv8.c gcm-aarch64.c sha1-armv8.c sha256-armv8.c +-endif ++ ifdef CC_IS_CLANG ++ DEFINES += -DUSE_HW_AES -DUSE_HW_SHA1 -DUSE_HW_SHA2 ++ EXTRA_SRCS += aes-armv8.c gcm-aarch64.c sha1-armv8.c sha256-armv8.c ++ else ifeq (1,$(CC_IS_GCC)) ++ # GCC versions older than 4.9 don't support ARM AES. The check ++ # is done in two parts, first allows "major.minor" == "4.9", ++ # and then rejects any major versions prior to 5. Note that ++ # there has been no GCC 4.10, as it was renamed to GCC 5. ++ ifneq (,$(filter 4.9,$(word 1,$(GCC_VERSION)).$(word 2,$(GCC_VERSION)))) ++ DEFINES += -DUSE_HW_AES -DUSE_HW_SHA1 -DUSE_HW_SHA2 ++ EXTRA_SRCS += aes-armv8.c gcm-aarch64.c sha1-armv8.c sha256-armv8.c ++ endif ++ ifeq (,$(filter 0 1 2 3 4,$(word 1,$(GCC_VERSION)))) ++ DEFINES += -DUSE_HW_AES -DUSE_HW_SHA1 -DUSE_HW_SHA2 ++ EXTRA_SRCS += aes-armv8.c gcm-aarch64.c sha1-armv8.c sha256-armv8.c ++ endif ++ endif + endif + ifeq ($(CPU_ARCH),arm) + ifndef NSS_DISABLE_ARM32_NEON + EXTRA_SRCS += gcm-arm32-neon.c + endif + ifdef CC_IS_CLANG + DEFINES += -DUSE_HW_AES -DUSE_HW_SHA1 -DUSE_HW_SHA2 + EXTRA_SRCS += aes-armv8.c sha1-armv8.c sha256-armv8.c + else ifeq (1,$(CC_IS_GCC)) +- # Old compiler doesn't support ARM AES. ++ # GCC versions older than 4.9 don't support ARM AES. The check ++ # is done in two parts, first allows "major.minor" == "4.9", ++ # and then rejects any major versions prior to 5. Note that ++ # there has been no GCC 4.10, as it was renamed to GCC 5. + ifneq (,$(filter 4.9,$(word 1,$(GCC_VERSION)).$(word 2,$(GCC_VERSION)))) + DEFINES += -DUSE_HW_AES -DUSE_HW_SHA1 -DUSE_HW_SHA2 + EXTRA_SRCS += aes-armv8.c sha1-armv8.c sha256-armv8.c + endif + ifeq (,$(filter 0 1 2 3 4,$(word 1,$(GCC_VERSION)))) + DEFINES += -DUSE_HW_AES -DUSE_HW_SHA1 -DUSE_HW_SHA2 + EXTRA_SRCS += aes-armv8.c sha1-armv8.c sha256-armv8.c + endif +@@ -723,24 +739,22 @@ USES_SOFTFLOAT_ABI := $(shell $(CC) -o - + $(OBJDIR)/$(PROG_PREFIX)aes-armv8$(OBJ_SUFFIX): CFLAGS += -march=armv8-a -mfpu=crypto-neon-fp-armv8$(if $(USES_SOFTFLOAT_ABI), -mfloat-abi=softfp) + $(OBJDIR)/$(PROG_PREFIX)sha1-armv8$(OBJ_SUFFIX): CFLAGS += -march=armv8-a -mfpu=crypto-neon-fp-armv8$(if $(USES_SOFTFLOAT_ABI), -mfloat-abi=softfp) + $(OBJDIR)/$(PROG_PREFIX)sha256-armv8$(OBJ_SUFFIX): CFLAGS += -march=armv8-a -mfpu=crypto-neon-fp-armv8$(if $(USES_SOFTFLOAT_ABI), -mfloat-abi=softfp) + ifndef NSS_DISABLE_ARM32_NEON + $(OBJDIR)/$(PROG_PREFIX)gcm-arm32-neon$(OBJ_SUFFIX): CFLAGS += -mfpu=neon$(if $(USES_SOFTFLOAT_ABI), -mfloat-abi=softfp) + endif + endif + +-ifdef NS_USE_GCC + ifeq ($(CPU_ARCH),aarch64) + $(OBJDIR)/$(PROG_PREFIX)aes-armv8$(OBJ_SUFFIX): CFLAGS += -march=armv8-a+crypto + $(OBJDIR)/$(PROG_PREFIX)gcm-aarch64$(OBJ_SUFFIX): CFLAGS += -march=armv8-a+crypto + $(OBJDIR)/$(PROG_PREFIX)sha1-armv8$(OBJ_SUFFIX): CFLAGS += -march=armv8-a+crypto + $(OBJDIR)/$(PROG_PREFIX)sha256-armv8$(OBJ_SUFFIX): CFLAGS += -march=armv8-a+crypto + endif +-endif + + ifeq ($(CPU_ARCH),ppc) + ifndef NSS_DISABLE_ALTIVEC + $(OBJDIR)/$(PROG_PREFIX)gcm-ppc$(OBJ_SUFFIX): CFLAGS += -mcrypto -maltivec -mvsx + $(OBJDIR)/$(PROG_PREFIX)gcm$(OBJ_SUFFIX): CFLAGS += -mcrypto -maltivec -mvsx + $(OBJDIR)/$(PROG_PREFIX)rijndael$(OBJ_SUFFIX): CFLAGS += -mcrypto -maltivec -mvsx + $(OBJDIR)/$(PROG_PREFIX)sha512$(OBJ_SUFFIX): CFLAGS += -mcrypto -maltivec -mvsx \ + -funroll-loops -fpeel-loops + From owner-svn-ports-branches@freebsd.org Tue Sep 15 12:56:25 2020 Return-Path: Delivered-To: svn-ports-branches@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 635123D2230; Tue, 15 Sep 2020 12:56:25 +0000 (UTC) (envelope-from lwhsu@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 "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4BrNX91wTVz436Y; Tue, 15 Sep 2020 12:56:25 +0000 (UTC) (envelope-from lwhsu@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 209ED88A5; Tue, 15 Sep 2020 12:56:25 +0000 (UTC) (envelope-from lwhsu@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 08FCuOoh019884; Tue, 15 Sep 2020 12:56:24 GMT (envelope-from lwhsu@FreeBSD.org) Received: (from lwhsu@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 08FCuOvo019882; Tue, 15 Sep 2020 12:56:24 GMT (envelope-from lwhsu@FreeBSD.org) Message-Id: <202009151256.08FCuOvo019882@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: lwhsu set sender to lwhsu@FreeBSD.org using -f From: Li-Wen Hsu Date: Tue, 15 Sep 2020 12:56:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r548727 - branches/2020Q3/www/typo3-9 X-SVN-Group: ports-branches X-SVN-Commit-Author: lwhsu X-SVN-Commit-Paths: branches/2020Q3/www/typo3-9 X-SVN-Commit-Revision: 548727 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 15 Sep 2020 12:56:25 -0000 Author: lwhsu Date: Tue Sep 15 12:56:24 2020 New Revision: 548727 URL: https://svnweb.freebsd.org/changeset/ports/548727 Log: MFH: r548704 www/typo3-9: Update to 9.5.21 These versions are maintenance releases and contain bug fixes only. For details about the releases, please see: https://get.typo3.org/release-notes/9.5.21 PR: 249314 Submitted by: Helmut Ritter (maintainer) MFC after: 2 weeks Approved by: ports-secteam (fluffy) Modified: branches/2020Q3/www/typo3-9/Makefile branches/2020Q3/www/typo3-9/distinfo Directory Properties: branches/2020Q3/ (props changed) Modified: branches/2020Q3/www/typo3-9/Makefile ============================================================================== --- branches/2020Q3/www/typo3-9/Makefile Tue Sep 15 11:14:50 2020 (r548726) +++ branches/2020Q3/www/typo3-9/Makefile Tue Sep 15 12:56:24 2020 (r548727) @@ -25,7 +25,7 @@ PORTSCOUT= limit:^${PORT_V_MAJOR}\.${PORT_V_MINOR}\. PORT_V_MAJOR= 9 PORT_V_MINOR= 5 -PORT_V_PATCH= 20 +PORT_V_PATCH= 21 TYPO3WWW= www TYPO3SRC= ${PORTNAME}_src-${PORTVERSION} Modified: branches/2020Q3/www/typo3-9/distinfo ============================================================================== --- branches/2020Q3/www/typo3-9/distinfo Tue Sep 15 11:14:50 2020 (r548726) +++ branches/2020Q3/www/typo3-9/distinfo Tue Sep 15 12:56:24 2020 (r548727) @@ -1,3 +1,3 @@ -TIMESTAMP = 1596533439 -SHA256 (typo3_src-9.5.20.tar.gz) = dd1adf61d7e0fb77b23da0048fbdf67b3ab0be0c273b18197a0b753f39c4e432 -SIZE (typo3_src-9.5.20.tar.gz) = 29493649 +TIMESTAMP = 1600093860 +SHA256 (typo3_src-9.5.21.tar.gz) = 44aa723607b5a55c7d5d63df7bb3aa55ae67c52b01ff3fa245c9268e78f92e6c +SIZE (typo3_src-9.5.21.tar.gz) = 29483902 From owner-svn-ports-branches@freebsd.org Tue Sep 15 12:56:55 2020 Return-Path: Delivered-To: svn-ports-branches@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 C84643D2231; Tue, 15 Sep 2020 12:56:55 +0000 (UTC) (envelope-from lwhsu@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 "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4BrNXl4x10z43JD; Tue, 15 Sep 2020 12:56:55 +0000 (UTC) (envelope-from lwhsu@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 8C68683FE; Tue, 15 Sep 2020 12:56:55 +0000 (UTC) (envelope-from lwhsu@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 08FCutG6020046; Tue, 15 Sep 2020 12:56:55 GMT (envelope-from lwhsu@FreeBSD.org) Received: (from lwhsu@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 08FCut6g020042; Tue, 15 Sep 2020 12:56:55 GMT (envelope-from lwhsu@FreeBSD.org) Message-Id: <202009151256.08FCut6g020042@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: lwhsu set sender to lwhsu@FreeBSD.org using -f From: Li-Wen Hsu Date: Tue, 15 Sep 2020 12:56:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r548728 - branches/2020Q3/www/typo3-10 X-SVN-Group: ports-branches X-SVN-Commit-Author: lwhsu X-SVN-Commit-Paths: branches/2020Q3/www/typo3-10 X-SVN-Commit-Revision: 548728 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 15 Sep 2020 12:56:55 -0000 Author: lwhsu Date: Tue Sep 15 12:56:54 2020 New Revision: 548728 URL: https://svnweb.freebsd.org/changeset/ports/548728 Log: MFH: r548705 www/typo3-10: Update to 10.4.7 These versions are maintenance releases and contain bug fixes only. For details about the releases, please see: https://get.typo3.org/release-notes/10.4.7 PR: 249313 Submitted by: Helmut Ritter (maintainer) Approved by: ports-secteam (fluffy) Modified: branches/2020Q3/www/typo3-10/Makefile branches/2020Q3/www/typo3-10/distinfo Directory Properties: branches/2020Q3/ (props changed) Modified: branches/2020Q3/www/typo3-10/Makefile ============================================================================== --- branches/2020Q3/www/typo3-10/Makefile Tue Sep 15 12:56:24 2020 (r548727) +++ branches/2020Q3/www/typo3-10/Makefile Tue Sep 15 12:56:54 2020 (r548728) @@ -25,7 +25,7 @@ PORTSCOUT= limit:^${PORT_V_MAJOR}\.${PORT_V_MINOR}\. PORT_V_MAJOR= 10 PORT_V_MINOR= 4 -PORT_V_PATCH= 6 +PORT_V_PATCH= 7 TYPO3WWW= www TYPO3SRC= ${PORTNAME}_src-${PORTVERSION} Modified: branches/2020Q3/www/typo3-10/distinfo ============================================================================== --- branches/2020Q3/www/typo3-10/distinfo Tue Sep 15 12:56:24 2020 (r548727) +++ branches/2020Q3/www/typo3-10/distinfo Tue Sep 15 12:56:54 2020 (r548728) @@ -1,3 +1,3 @@ -TIMESTAMP = 1596371758 -SHA256 (typo3_src-10.4.6.tar.gz) = 32f251154285e9f2b723751bcdaef1ca55c230971eb28fd09cdf2af884696ec6 -SIZE (typo3_src-10.4.6.tar.gz) = 28467603 +TIMESTAMP = 1600092374 +SHA256 (typo3_src-10.4.7.tar.gz) = f7ae7b45e905f2ceac93f050aa3c6c0f9070af2cf56358b6f1e8a3e0885c45bc +SIZE (typo3_src-10.4.7.tar.gz) = 28466652 From owner-svn-ports-branches@freebsd.org Wed Sep 16 01:35:44 2020 Return-Path: Delivered-To: svn-ports-branches@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 0B12A3E977F; Wed, 16 Sep 2020 01:35:44 +0000 (UTC) (envelope-from yuri@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 "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4BrjNH6Vdrz41jt; Wed, 16 Sep 2020 01:35:43 +0000 (UTC) (envelope-from yuri@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 C3169117EB; Wed, 16 Sep 2020 01:35:43 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 08G1ZhNX087705; Wed, 16 Sep 2020 01:35:43 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 08G1ZhAt087704; Wed, 16 Sep 2020 01:35:43 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <202009160135.08G1ZhAt087704@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Wed, 16 Sep 2020 01:35:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r548755 - branches/2020Q3/security/tor X-SVN-Group: ports-branches X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: branches/2020Q3/security/tor X-SVN-Commit-Revision: 548755 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 16 Sep 2020 01:35:44 -0000 Author: yuri Date: Wed Sep 16 01:35:43 2020 New Revision: 548755 URL: https://svnweb.freebsd.org/changeset/ports/548755 Log: MFH: r548737 security/tor: Update 0.4.3.6 -> 0.4.4.5 Changelog: https://gitweb.torproject.org/tor.git/tree/ReleaseNotes?h=tor-0.4.4.5 Approved by: ports-secteam Modified: branches/2020Q3/security/tor/Makefile branches/2020Q3/security/tor/distinfo Directory Properties: branches/2020Q3/ (props changed) Modified: branches/2020Q3/security/tor/Makefile ============================================================================== --- branches/2020Q3/security/tor/Makefile Wed Sep 16 01:20:58 2020 (r548754) +++ branches/2020Q3/security/tor/Makefile Wed Sep 16 01:35:43 2020 (r548755) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= tor -DISTVERSION= 0.4.3.6 +DISTVERSION= 0.4.4.5 CATEGORIES= security net MASTER_SITES= TOR Modified: branches/2020Q3/security/tor/distinfo ============================================================================== --- branches/2020Q3/security/tor/distinfo Wed Sep 16 01:20:58 2020 (r548754) +++ branches/2020Q3/security/tor/distinfo Wed Sep 16 01:35:43 2020 (r548755) @@ -1,3 +1,3 @@ -TIMESTAMP = 1594316064 -SHA256 (tor-0.4.3.6.tar.gz) = 6a2d0637d4e514be2ec574723a05065245cce51da78a21cec1dc831be5ccac62 -SIZE (tor-0.4.3.6.tar.gz) = 7745954 +TIMESTAMP = 1600187124 +SHA256 (tor-0.4.4.5.tar.gz) = a45ca00afe765e3baa839767c9dd6ac9a46dd01720a3a8ff4d86558c12359926 +SIZE (tor-0.4.4.5.tar.gz) = 7808696 From owner-svn-ports-branches@freebsd.org Thu Sep 17 00:26:57 2020 Return-Path: Delivered-To: svn-ports-branches@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 C45023F5F27; Thu, 17 Sep 2020 00:26:57 +0000 (UTC) (envelope-from jbeich@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 "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4BsHpT4pc0z4V0s; Thu, 17 Sep 2020 00:26:57 +0000 (UTC) (envelope-from jbeich@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 84C0E216E6; Thu, 17 Sep 2020 00:26:57 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 08H0QvKG038312; Thu, 17 Sep 2020 00:26:57 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 08H0QvCV038311; Thu, 17 Sep 2020 00:26:57 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <202009170026.08H0QvCV038311@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Thu, 17 Sep 2020 00:26:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r548805 - branches/2020Q3/x11/wev X-SVN-Group: ports-branches X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: branches/2020Q3/x11/wev X-SVN-Commit-Revision: 548805 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 17 Sep 2020 00:26:57 -0000 Author: jbeich Date: Thu Sep 17 00:26:56 2020 New Revision: 548805 URL: https://svnweb.freebsd.org/changeset/ports/548805 Log: MFH: r542913 x11/wev: backport memory leaking fix Approved by: ports-secteam blanket (reliability fixes) Modified: branches/2020Q3/x11/wev/Makefile branches/2020Q3/x11/wev/distinfo Directory Properties: branches/2020Q3/ (props changed) Modified: branches/2020Q3/x11/wev/Makefile ============================================================================== --- branches/2020Q3/x11/wev/Makefile Wed Sep 16 22:10:06 2020 (r548804) +++ branches/2020Q3/x11/wev/Makefile Thu Sep 17 00:26:56 2020 (r548805) @@ -2,8 +2,12 @@ PORTNAME= wev PORTVERSION= 1.0.0 +PORTREVISION= 1 CATEGORIES= x11 MASTER_SITES= https://git.sr.ht/~sircmpwn/${PORTNAME}/archive/${DISTVERSIONFULL}${EXTRACT_SUFX}?dummy=/ + +PATCH_SITES= https://git.sr.ht/~sircmpwn/${PORTNAME}/commit/ +PATCHFILES+= 0be512fb7058.patch:-p1 MAINTAINER= jbeich@FreeBSD.org COMMENT= Wayland event viewer Modified: branches/2020Q3/x11/wev/distinfo ============================================================================== --- branches/2020Q3/x11/wev/distinfo Wed Sep 16 22:10:06 2020 (r548804) +++ branches/2020Q3/x11/wev/distinfo Thu Sep 17 00:26:56 2020 (r548805) @@ -1,3 +1,5 @@ TIMESTAMP = 1581011288 SHA256 (wev-1.0.0.tar.gz) = 6f004dedf3f5ce10d2fe3cd233d59912756d8a0af021214158d6ec54d66c9d6e SIZE (wev-1.0.0.tar.gz) = 8619 +SHA256 (0be512fb7058.patch) = 5e0ee32b6d0c7bfeae9eb22d2191dbb48910aedb5a95753bad674d5a75d64c25 +SIZE (0be512fb7058.patch) = 1148 From owner-svn-ports-branches@freebsd.org Fri Sep 18 04:39:43 2020 Return-Path: Delivered-To: svn-ports-branches@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 46EB63F7D1B; Fri, 18 Sep 2020 04:39:43 +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 "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4Bt1Mg0R1Qz44yc; Fri, 18 Sep 2020 04:39:43 +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 C833215A15; Fri, 18 Sep 2020 04:39:42 +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 08I4dgaj080872; Fri, 18 Sep 2020 04:39:42 GMT (envelope-from bhughes@FreeBSD.org) Received: (from bhughes@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 08I4dgCY080870; Fri, 18 Sep 2020 04:39:42 GMT (envelope-from bhughes@FreeBSD.org) Message-Id: <202009180439.08I4dgCY080870@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bhughes set sender to bhughes@FreeBSD.org using -f From: "Bradley T. Hughes" Date: Fri, 18 Sep 2020 04:39:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r548873 - in branches/2020Q3/www/node10: . files X-SVN-Group: ports-branches X-SVN-Commit-Author: bhughes X-SVN-Commit-Paths: in branches/2020Q3/www/node10: . files X-SVN-Commit-Revision: 548873 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 18 Sep 2020 04:39:43 -0000 Author: bhughes Date: Fri Sep 18 04:39:41 2020 New Revision: 548873 URL: https://svnweb.freebsd.org/changeset/ports/548873 Log: MFH: r543680 r548800 www/node10: Update 10.21.0 -> 10.22.0 https://nodejs.org/en/blog/release/v10.22.0/ Sponsored by: Miles AS www/node10: Update 10.22.0 -> 10.22.1 https://nodejs.org/en/blog/release/v10.22.1/ This is a security release. See https://nodejs.org/en/blog/vulnerability/september-2020-security-releases/ Security: 4ca5894c-f7f1-11ea-8ff8-0022489ad614 Sponsored by: Miles AS Approved by: ports-secteam (fluffy) Deleted: branches/2020Q3/www/node10/files/patch-configure.py Modified: branches/2020Q3/www/node10/Makefile branches/2020Q3/www/node10/distinfo branches/2020Q3/www/node10/pkg-plist Directory Properties: branches/2020Q3/ (props changed) Modified: branches/2020Q3/www/node10/Makefile ============================================================================== --- branches/2020Q3/www/node10/Makefile Fri Sep 18 01:07:45 2020 (r548872) +++ branches/2020Q3/www/node10/Makefile Fri Sep 18 04:39:41 2020 (r548873) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= node -PORTVERSION= 10.21.0 +PORTVERSION= 10.22.1 DISTVERSIONPREFIX= v CATEGORIES= www MASTER_SITES= http://nodejs.org/dist/v${PORTVERSION}/ Modified: branches/2020Q3/www/node10/distinfo ============================================================================== --- branches/2020Q3/www/node10/distinfo Fri Sep 18 01:07:45 2020 (r548872) +++ branches/2020Q3/www/node10/distinfo Fri Sep 18 04:39:41 2020 (r548873) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591735858 -SHA256 (node-v10.21.0.tar.gz) = bee7497e29c6c8f350fdf7dfa198c97041c7bf8d57cc2b58dfbfe6607d1ebf8f -SIZE (node-v10.21.0.tar.gz) = 47193648 +TIMESTAMP = 1600242115 +SHA256 (node-v10.22.1.tar.gz) = d0b49dd96ac70e99240458863efe09ae5bb1138c0ff582295f882c1482708172 +SIZE (node-v10.22.1.tar.gz) = 46546924 Modified: branches/2020Q3/www/node10/pkg-plist ============================================================================== --- branches/2020Q3/www/node10/pkg-plist Fri Sep 18 01:07:45 2020 (r548872) +++ branches/2020Q3/www/node10/pkg-plist Fri Sep 18 04:39:41 2020 (r548873) @@ -11,21 +11,6 @@ include/node/node_buffer.h include/node/node_object_wrap.h include/node/node_version.h %%BUNDLED_SSL%%include/node/openssl/aes.h -%%BUNDLED_SSL%%include/node/openssl/archs/BSD-x86/asm/crypto/buildinf.h -%%BUNDLED_SSL%%include/node/openssl/archs/BSD-x86/asm/crypto/include/internal/bn_conf.h -%%BUNDLED_SSL%%include/node/openssl/archs/BSD-x86/asm/crypto/include/internal/dso_conf.h -%%BUNDLED_SSL%%include/node/openssl/archs/BSD-x86/asm/include/openssl/opensslconf.h -%%BUNDLED_SSL%%include/node/openssl/archs/BSD-x86/asm/include/progs.h -%%BUNDLED_SSL%%include/node/openssl/archs/BSD-x86/asm_avx2/crypto/buildinf.h -%%BUNDLED_SSL%%include/node/openssl/archs/BSD-x86/asm_avx2/crypto/include/internal/bn_conf.h -%%BUNDLED_SSL%%include/node/openssl/archs/BSD-x86/asm_avx2/crypto/include/internal/dso_conf.h -%%BUNDLED_SSL%%include/node/openssl/archs/BSD-x86/asm_avx2/include/openssl/opensslconf.h -%%BUNDLED_SSL%%include/node/openssl/archs/BSD-x86/asm_avx2/include/progs.h -%%BUNDLED_SSL%%include/node/openssl/archs/BSD-x86/no-asm/crypto/buildinf.h -%%BUNDLED_SSL%%include/node/openssl/archs/BSD-x86/no-asm/crypto/include/internal/bn_conf.h -%%BUNDLED_SSL%%include/node/openssl/archs/BSD-x86/no-asm/crypto/include/internal/dso_conf.h -%%BUNDLED_SSL%%include/node/openssl/archs/BSD-x86/no-asm/include/openssl/opensslconf.h -%%BUNDLED_SSL%%include/node/openssl/archs/BSD-x86/no-asm/include/progs.h %%BUNDLED_SSL%%include/node/openssl/archs/BSD-x86_64/asm/crypto/buildinf.h %%BUNDLED_SSL%%include/node/openssl/archs/BSD-x86_64/asm/crypto/include/internal/bn_conf.h %%BUNDLED_SSL%%include/node/openssl/archs/BSD-x86_64/asm/crypto/include/internal/dso_conf.h @@ -271,21 +256,6 @@ include/node/node_version.h %%BUNDLED_SSL%%include/node/openssl/archs/linux32-s390x/no-asm/crypto/include/internal/dso_conf.h %%BUNDLED_SSL%%include/node/openssl/archs/linux32-s390x/no-asm/include/openssl/opensslconf.h %%BUNDLED_SSL%%include/node/openssl/archs/linux32-s390x/no-asm/include/progs.h -%%BUNDLED_SSL%%include/node/openssl/archs/linux64-mips64/asm/crypto/buildinf.h -%%BUNDLED_SSL%%include/node/openssl/archs/linux64-mips64/asm/crypto/include/internal/bn_conf.h -%%BUNDLED_SSL%%include/node/openssl/archs/linux64-mips64/asm/crypto/include/internal/dso_conf.h -%%BUNDLED_SSL%%include/node/openssl/archs/linux64-mips64/asm/include/openssl/opensslconf.h -%%BUNDLED_SSL%%include/node/openssl/archs/linux64-mips64/asm/include/progs.h -%%BUNDLED_SSL%%include/node/openssl/archs/linux64-mips64/asm_avx2/crypto/buildinf.h -%%BUNDLED_SSL%%include/node/openssl/archs/linux64-mips64/asm_avx2/crypto/include/internal/bn_conf.h -%%BUNDLED_SSL%%include/node/openssl/archs/linux64-mips64/asm_avx2/crypto/include/internal/dso_conf.h -%%BUNDLED_SSL%%include/node/openssl/archs/linux64-mips64/asm_avx2/include/openssl/opensslconf.h -%%BUNDLED_SSL%%include/node/openssl/archs/linux64-mips64/asm_avx2/include/progs.h -%%BUNDLED_SSL%%include/node/openssl/archs/linux64-mips64/no-asm/crypto/buildinf.h -%%BUNDLED_SSL%%include/node/openssl/archs/linux64-mips64/no-asm/crypto/include/internal/bn_conf.h -%%BUNDLED_SSL%%include/node/openssl/archs/linux64-mips64/no-asm/crypto/include/internal/dso_conf.h -%%BUNDLED_SSL%%include/node/openssl/archs/linux64-mips64/no-asm/include/openssl/opensslconf.h -%%BUNDLED_SSL%%include/node/openssl/archs/linux64-mips64/no-asm/include/progs.h %%BUNDLED_SSL%%include/node/openssl/archs/linux64-s390x/asm/crypto/buildinf.h %%BUNDLED_SSL%%include/node/openssl/archs/linux64-s390x/asm/crypto/include/internal/bn_conf.h %%BUNDLED_SSL%%include/node/openssl/archs/linux64-s390x/asm/crypto/include/internal/dso_conf.h From owner-svn-ports-branches@freebsd.org Fri Sep 18 04:43:57 2020 Return-Path: Delivered-To: svn-ports-branches@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 68F083F7FD5; Fri, 18 Sep 2020 04:43:57 +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 "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4Bt1SY2Bl9z45Q0; Fri, 18 Sep 2020 04:43:57 +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 2E9AC159A8; Fri, 18 Sep 2020 04:43:57 +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 08I4hv9C087113; Fri, 18 Sep 2020 04:43:57 GMT (envelope-from bhughes@FreeBSD.org) Received: (from bhughes@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 08I4huXZ087111; Fri, 18 Sep 2020 04:43:56 GMT (envelope-from bhughes@FreeBSD.org) Message-Id: <202009180443.08I4huXZ087111@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bhughes set sender to bhughes@FreeBSD.org using -f From: "Bradley T. Hughes" Date: Fri, 18 Sep 2020 04:43:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r548875 - in branches/2020Q3/www/node12: . files X-SVN-Group: ports-branches X-SVN-Commit-Author: bhughes X-SVN-Commit-Paths: in branches/2020Q3/www/node12: . files X-SVN-Commit-Revision: 548875 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 18 Sep 2020 04:43:57 -0000 Author: bhughes Date: Fri Sep 18 04:43:56 2020 New Revision: 548875 URL: https://svnweb.freebsd.org/changeset/ports/548875 Log: MFH: r541210 r543679 r548801 www/node12: fix runtime on powerpc64 elfv1, build / runtime on powerpc64 elfv2 Patches are backported from www/node and changed where necessary. PR: 247433 Approved by: bhughes (maintainer timeout) www/node12: Update 12.18.2_1 -> 12.18.3 https://nodejs.org/en/blog/release/v12.18.3/ Sponsored by: Miles AS www/node12: Update 12.18.3 -> 12.18.4 https://nodejs.org/en/blog/release/v12.18.4/ This is a security release. See https://nodejs.org/en/blog/vulnerability/september-2020-security-releases/ Security: 4ca5894c-f7f1-11ea-8ff8-0022489ad614 Sponsored by: Miles AS Approved by: ports-secteam (fluffy) Modified: branches/2020Q3/www/node12/Makefile branches/2020Q3/www/node12/distinfo branches/2020Q3/www/node12/files/patch-deps_v8_src_compiler_backend_instruction-selector.cc Directory Properties: branches/2020Q3/ (props changed) Modified: branches/2020Q3/www/node12/Makefile ============================================================================== --- branches/2020Q3/www/node12/Makefile Fri Sep 18 04:41:44 2020 (r548874) +++ branches/2020Q3/www/node12/Makefile Fri Sep 18 04:43:56 2020 (r548875) @@ -1,8 +1,7 @@ # $FreeBSD$ PORTNAME= node -PORTVERSION= 12.18.2 -PORTREVISION= 1 +PORTVERSION= 12.18.4 DISTVERSIONPREFIX= v CATEGORIES= www MASTER_SITES= http://nodejs.org/dist/v${PORTVERSION}/ Modified: branches/2020Q3/www/node12/distinfo ============================================================================== --- branches/2020Q3/www/node12/distinfo Fri Sep 18 04:41:44 2020 (r548874) +++ branches/2020Q3/www/node12/distinfo Fri Sep 18 04:43:56 2020 (r548875) @@ -1,3 +1,3 @@ -TIMESTAMP = 1593546106 -SHA256 (node-v12.18.2.tar.gz) = 2be366d6068f9e1a5eb3f6f21c5ea246eb0a1faf48f98b88e68c8bb193d85a14 -SIZE (node-v12.18.2.tar.gz) = 52422795 +TIMESTAMP = 1600242147 +SHA256 (node-v12.18.4.tar.gz) = a802d87e579e46fc52771ed6f2667048320caca867be3276f4c4f1bbb41389c3 +SIZE (node-v12.18.4.tar.gz) = 52459484 Modified: branches/2020Q3/www/node12/files/patch-deps_v8_src_compiler_backend_instruction-selector.cc ============================================================================== --- branches/2020Q3/www/node12/files/patch-deps_v8_src_compiler_backend_instruction-selector.cc Fri Sep 18 04:41:44 2020 (r548874) +++ branches/2020Q3/www/node12/files/patch-deps_v8_src_compiler_backend_instruction-selector.cc Fri Sep 18 04:43:56 2020 (r548875) @@ -1,6 +1,6 @@ ---- deps/v8/src/compiler/backend/instruction-selector.cc.orig 2020-04-21 11:38:50 UTC +--- deps/v8/src/compiler/backend/instruction-selector.cc.orig 2020-07-22 15:26:52 UTC +++ deps/v8/src/compiler/backend/instruction-selector.cc -@@ -2783,7 +2783,7 @@ void InstructionSelector::VisitCall(Node* node, BasicB +@@ -2788,7 +2788,7 @@ void InstructionSelector::VisitCall(Node* node, BasicB switch (call_descriptor->kind()) { case CallDescriptor::kCallAddress: { int misc_field = static_cast(call_descriptor->ParameterCount()); @@ -8,4 +8,4 @@ +#if defined(_AIX) || (V8_TARGET_ARCH_PPC_BE && (!defined(_CALL_ELF) || _CALL_ELF == 1)) // Highest misc_field bit is used on AIX to indicate if a CFunction call // has function descriptor or not. - if (!call_descriptor->NoFunctionDescriptor()) { + misc_field |= call_descriptor->HasFunctionDescriptor() From owner-svn-ports-branches@freebsd.org Fri Sep 18 04:50:58 2020 Return-Path: Delivered-To: svn-ports-branches@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 6DC213D8018; Fri, 18 Sep 2020 04:50:58 +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 "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4Bt1cf2hfSz45WM; Fri, 18 Sep 2020 04:50:58 +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 4064015AA1; Fri, 18 Sep 2020 04:50:58 +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 08I4ownp090437; Fri, 18 Sep 2020 04:50:58 GMT (envelope-from bhughes@FreeBSD.org) Received: (from bhughes@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 08I4ouW4090425; Fri, 18 Sep 2020 04:50:56 GMT (envelope-from bhughes@FreeBSD.org) Message-Id: <202009180450.08I4ouW4090425@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bhughes set sender to bhughes@FreeBSD.org using -f From: "Bradley T. Hughes" Date: Fri, 18 Sep 2020 04:50:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r548876 - in branches/2020Q3/www/node: . files X-SVN-Group: ports-branches X-SVN-Commit-Author: bhughes X-SVN-Commit-Paths: in branches/2020Q3/www/node: . files X-SVN-Commit-Revision: 548876 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 18 Sep 2020 04:50:58 -0000 Author: bhughes Date: Fri Sep 18 04:50:56 2020 New Revision: 548876 URL: https://svnweb.freebsd.org/changeset/ports/548876 Log: MFH: r541372 r543678 r543682 r545547 r545560 r547570 r548046 r548047 r548707 r548802 www/node: Update 14.4.0 -> 14.5.0 https://nodejs.org/en/blog/release/v14.5.0/ Refresh patches with `make makepatch`, and adapt them to the changes from upstream due to the V8 upgrade. Sponsored by: Miles AS www/node10: Update 10.21.0 -> 10.22.0 https://nodejs.org/en/blog/release/v10.22.0/ Sponsored by: Miles AS www/node: Update 14.6.0 -> 14.6.0_1 Bump PORTREVISION after updating the minimum version requirements for libuv, libnghttp2, and libcares. The previous change for www/node erroneously mentioned the most recent www/node10 update. The correct changelog should have read: www/node: Update 14.5.0 -> 14.6.0 https://nodejs.org/en/blog/release/v14.6.0/ Sponsored by: Miles AS www/node: Update 14.6.0_1 -> 14.7.0 https://nodejs.org/en/blog/release/v14.7.0/ Sponsored by: Miles AS www/node: Update 14.7.0 -> 14.8.0 https://nodejs.org/en/blog/release/v14.8.0/ Sponsored by: Miles AS www/node: Update 14.8.0 -> 14.9.0 https://nodejs.org/en/blog/release/v14.9.0/ Sponsored by: Miles AS www/node: Update 14.9.0 -> 14.10.0 https://nodejs.org/en/blog/release/v14.10.0/ While here, refresh patches with `make makepatch`. Sponsored by: Miles AS www/node: add dependency on archivers/brotli ... instead of building the version bundled with Node.js. Bump PORTREVISION due to the new dependency. Sponsored by: Miles AS www/node: Update 14.10.0_1 -> 14.10.1 https://nodejs.org/en/blog/release/v14.10.1/ Sponsored by: Miles AS www/node: Update 14.10.1 -> 14.11.0 https://nodejs.org/en/blog/release/v14.11.0/ This is a security release. See https://nodejs.org/en/blog/vulnerability/september-2020-security-releases/ Security: 4ca5894c-f7f1-11ea-8ff8-0022489ad614 Sponsored by: Miles AS Approved by: ports-secteam (fluffy) Modified: branches/2020Q3/www/node/Makefile branches/2020Q3/www/node/distinfo branches/2020Q3/www/node/files/patch-deps_openssl_openssl-cl__no__asm.gypi branches/2020Q3/www/node/files/patch-deps_openssl_openssl__no__asm.gypi branches/2020Q3/www/node/files/patch-deps_v8_src_base_platform_platform-freebsd.cc branches/2020Q3/www/node/files/patch-deps_v8_src_codegen_ppc_constants-ppc.h branches/2020Q3/www/node/files/patch-deps_v8_src_compiler_backend_instruction-selector.cc branches/2020Q3/www/node/files/patch-deps_v8_src_compiler_backend_ppc_code-generator-ppc.cc branches/2020Q3/www/node/files/patch-deps_v8_src_libsampler_sampler.cc branches/2020Q3/www/node/pkg-plist Directory Properties: branches/2020Q3/ (props changed) Modified: branches/2020Q3/www/node/Makefile ============================================================================== --- branches/2020Q3/www/node/Makefile Fri Sep 18 04:43:56 2020 (r548875) +++ branches/2020Q3/www/node/Makefile Fri Sep 18 04:50:56 2020 (r548876) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= node -PORTVERSION= 14.4.0 +PORTVERSION= 14.11.0 DISTVERSIONPREFIX= v CATEGORIES= www MASTER_SITES= http://nodejs.org/dist/v${PORTVERSION}/ @@ -38,7 +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>=66.1:devel/icu +NLS_BUILD_DEPENDS= icu>=67.1:devel/icu NLS_LIB_DEPENDS= libicui18n.so:devel/icu DTRACE_CONFIGURE_ON= --with-dtrace @@ -52,6 +52,7 @@ CONFLICTS_INSTALL= node[68]-[0-9]* node10-[0-9]* node1 CONFIGURE_ARGS= --prefix=${PREFIX_RELDEST} \ --without-npm \ + --shared-brotli \ --shared-cares \ --shared-libuv \ --shared-nghttp2 \ @@ -68,11 +69,13 @@ 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.37.0:devel/libuv \ - libnghttp2>=1.40.0:www/libnghttp2 \ +BUILD_DEPENDS+= brotli>=1.0.9,1:archivers/brotli \ + c-ares>=1.16.0:dns/c-ares \ + libuv>=1.39.0:devel/libuv \ + libnghttp2>=1.41.0:www/libnghttp2 \ objdump:devel/binutils -LIB_DEPENDS+= libcares.so:dns/c-ares\ +LIB_DEPENDS+= libbrotlidec.so:archivers/brotli \ + libcares.so:dns/c-ares\ libuv.so:devel/libuv \ libnghttp2.so:www/libnghttp2 Modified: branches/2020Q3/www/node/distinfo ============================================================================== --- branches/2020Q3/www/node/distinfo Fri Sep 18 04:43:56 2020 (r548875) +++ branches/2020Q3/www/node/distinfo Fri Sep 18 04:50:56 2020 (r548876) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591883644 -SHA256 (node-v14.4.0.tar.gz) = 5769ce6cf619e3f38dab9d64eab204722665b8b0f5bd2568ac171e2edc6db7f7 -SIZE (node-v14.4.0.tar.gz) = 61658009 +TIMESTAMP = 1600242162 +SHA256 (node-v14.11.0.tar.gz) = c07669ddbd708d0dfc4ccb63a7ced7ad1fd7d1b59ced50cf05f22f0b96e45463 +SIZE (node-v14.11.0.tar.gz) = 63018833 Modified: branches/2020Q3/www/node/files/patch-deps_openssl_openssl-cl__no__asm.gypi ============================================================================== --- branches/2020Q3/www/node/files/patch-deps_openssl_openssl-cl__no__asm.gypi Fri Sep 18 04:43:56 2020 (r548875) +++ branches/2020Q3/www/node/files/patch-deps_openssl_openssl-cl__no__asm.gypi Fri Sep 18 04:50:56 2020 (r548876) @@ -1,4 +1,4 @@ ---- deps/openssl/openssl-cl_no_asm.gypi.orig 2019-08-06 20:46:23 UTC +--- deps/openssl/openssl-cl_no_asm.gypi.orig 2020-09-08 12:17:10 UTC +++ deps/openssl/openssl-cl_no_asm.gypi @@ -1,4 +1,5 @@ { @@ -6,7 +6,7 @@ 'conditions': [ ['target_arch=="ppc" and OS=="aix"', { 'includes': ['config/archs/aix-gcc/no-asm/openssl-cl.gypi'], -@@ -45,7 +46,7 @@ +@@ -47,7 +48,7 @@ 'includes': ['config/archs/linux64-mips64/no-asm/openssl-cl.gypi'], }, { # Other architectures don't use assembly Modified: branches/2020Q3/www/node/files/patch-deps_openssl_openssl__no__asm.gypi ============================================================================== --- branches/2020Q3/www/node/files/patch-deps_openssl_openssl__no__asm.gypi Fri Sep 18 04:43:56 2020 (r548875) +++ branches/2020Q3/www/node/files/patch-deps_openssl_openssl__no__asm.gypi Fri Sep 18 04:50:56 2020 (r548876) @@ -1,6 +1,6 @@ ---- deps/openssl/openssl_no_asm.gypi.orig 2019-08-06 20:46:23 UTC +--- deps/openssl/openssl_no_asm.gypi.orig 2020-09-08 12:17:11 UTC +++ deps/openssl/openssl_no_asm.gypi -@@ -46,7 +46,7 @@ +@@ -48,7 +48,7 @@ 'includes': ['config/archs/linux64-mips64/no-asm/openssl.gypi'], }, { # Other architectures don't use assembly Modified: branches/2020Q3/www/node/files/patch-deps_v8_src_base_platform_platform-freebsd.cc ============================================================================== --- branches/2020Q3/www/node/files/patch-deps_v8_src_base_platform_platform-freebsd.cc Fri Sep 18 04:43:56 2020 (r548875) +++ branches/2020Q3/www/node/files/patch-deps_v8_src_base_platform_platform-freebsd.cc Fri Sep 18 04:50:56 2020 (r548876) @@ -1,6 +1,6 @@ ---- deps/v8/src/base/platform/platform-freebsd.cc.orig 2020-01-07 22:07:49 UTC +--- deps/v8/src/base/platform/platform-freebsd.cc.orig 2020-06-30 17:49:16 UTC +++ deps/v8/src/base/platform/platform-freebsd.cc -@@ -81,8 +81,8 @@ std::vector OS::GetSharedLib +@@ -82,8 +82,8 @@ std::vector OS::GetSharedLib lib_name = std::string(path); } result.push_back(SharedLibraryAddress( @@ -11,7 +11,7 @@ } start += ssize; -@@ -93,6 +93,48 @@ std::vector OS::GetSharedLib +@@ -94,6 +94,48 @@ std::vector OS::GetSharedLib } void OS::SignalCodeMovingGC() {} Modified: branches/2020Q3/www/node/files/patch-deps_v8_src_codegen_ppc_constants-ppc.h ============================================================================== --- branches/2020Q3/www/node/files/patch-deps_v8_src_codegen_ppc_constants-ppc.h Fri Sep 18 04:43:56 2020 (r548875) +++ branches/2020Q3/www/node/files/patch-deps_v8_src_codegen_ppc_constants-ppc.h Fri Sep 18 04:50:56 2020 (r548876) @@ -1,18 +1,18 @@ ---- deps/v8/src/codegen/ppc/constants-ppc.h.orig 2019-09-09 16:27:17 UTC +--- deps/v8/src/codegen/ppc/constants-ppc.h.orig 2020-06-30 17:49:17 UTC +++ deps/v8/src/codegen/ppc/constants-ppc.h -@@ -34,7 +34,7 @@ - #define ABI_PASSES_HANDLES_IN_REGS 0 +@@ -36,7 +36,7 @@ #endif --#if !V8_HOST_ARCH_PPC || !V8_TARGET_ARCH_PPC64 || V8_TARGET_LITTLE_ENDIAN || \ -+#if !V8_HOST_ARCH_PPC || !V8_TARGET_ARCH_PPC64 || \ - (defined(_CALL_ELF) && _CALL_ELF == 2) + #if !(V8_HOST_ARCH_PPC || V8_HOST_ARCH_PPC64) || !V8_TARGET_ARCH_PPC64 || \ +- V8_TARGET_LITTLE_ENDIAN || (defined(_CALL_ELF) && _CALL_ELF == 2) ++ (defined(_CALL_ELF) && _CALL_ELF == 2) #define ABI_RETURNS_OBJECT_PAIRS_IN_REGS 1 #else -@@ -43,7 +43,7 @@ + #define ABI_RETURNS_OBJECT_PAIRS_IN_REGS 0 +@@ -44,7 +44,7 @@ - #if !V8_HOST_ARCH_PPC || \ - (V8_TARGET_ARCH_PPC64 && \ + #if !(V8_HOST_ARCH_PPC || V8_HOST_ARCH_PPC64) || \ + (V8_TARGET_ARCH_PPC64 && \ - (V8_TARGET_LITTLE_ENDIAN || (defined(_CALL_ELF) && _CALL_ELF == 2))) + (defined(_CALL_ELF) && _CALL_ELF == 2)) #define ABI_CALL_VIA_IP 1 Modified: branches/2020Q3/www/node/files/patch-deps_v8_src_compiler_backend_instruction-selector.cc ============================================================================== --- branches/2020Q3/www/node/files/patch-deps_v8_src_compiler_backend_instruction-selector.cc Fri Sep 18 04:43:56 2020 (r548875) +++ branches/2020Q3/www/node/files/patch-deps_v8_src_compiler_backend_instruction-selector.cc Fri Sep 18 04:50:56 2020 (r548876) @@ -1,6 +1,6 @@ ---- deps/v8/src/compiler/backend/instruction-selector.cc.orig 2020-04-21 11:38:50 UTC +--- deps/v8/src/compiler/backend/instruction-selector.cc.orig 2020-07-20 22:18:45 UTC +++ deps/v8/src/compiler/backend/instruction-selector.cc -@@ -2783,7 +2783,7 @@ void InstructionSelector::VisitCall(Node* node, BasicB +@@ -2808,7 +2808,7 @@ void InstructionSelector::VisitCall(Node* node, BasicB switch (call_descriptor->kind()) { case CallDescriptor::kCallAddress: { int misc_field = static_cast(call_descriptor->ParameterCount()); Modified: branches/2020Q3/www/node/files/patch-deps_v8_src_compiler_backend_ppc_code-generator-ppc.cc ============================================================================== --- branches/2020Q3/www/node/files/patch-deps_v8_src_compiler_backend_ppc_code-generator-ppc.cc Fri Sep 18 04:43:56 2020 (r548875) +++ branches/2020Q3/www/node/files/patch-deps_v8_src_compiler_backend_ppc_code-generator-ppc.cc Fri Sep 18 04:50:56 2020 (r548876) @@ -1,9 +1,10 @@ ---- deps/v8/src/compiler/backend/ppc/code-generator-ppc.cc.orig 2020-04-21 11:38:50 UTC +--- deps/v8/src/compiler/backend/ppc/code-generator-ppc.cc.orig 2020-07-20 22:18:45 UTC +++ deps/v8/src/compiler/backend/ppc/code-generator-ppc.cc -@@ -1032,7 +1032,7 @@ CodeGenerator::CodeGenResult CodeGenerator::AssembleAr +@@ -1038,8 +1038,7 @@ CodeGenerator::CodeGenResult CodeGenerator::AssembleAr bool isWasmCapiFunction = linkage()->GetIncomingDescriptor()->IsWasmCapiFunction(); - int offset = 9 * kInstrSize; + int offset = (FLAG_enable_embedded_constant_pool ? 20 : 23) * kInstrSize; +- -#if defined(_AIX) +#if defined(_AIX) || (V8_TARGET_ARCH_PPC_BE && (!defined(_CALL_ELF) || _CALL_ELF == 1)) // AIX/PPC64BE Linux uses a function descriptor Modified: branches/2020Q3/www/node/files/patch-deps_v8_src_libsampler_sampler.cc ============================================================================== --- branches/2020Q3/www/node/files/patch-deps_v8_src_libsampler_sampler.cc Fri Sep 18 04:43:56 2020 (r548875) +++ branches/2020Q3/www/node/files/patch-deps_v8_src_libsampler_sampler.cc Fri Sep 18 04:50:56 2020 (r548876) @@ -1,6 +1,6 @@ ---- deps/v8/src/libsampler/sampler.cc.orig 2020-04-21 11:38:50 UTC +--- deps/v8/src/libsampler/sampler.cc.orig 2020-06-30 17:49:17 UTC +++ deps/v8/src/libsampler/sampler.cc -@@ -480,6 +480,10 @@ void SignalHandler::FillRegisterState(void* context, R +@@ -482,6 +482,10 @@ void SignalHandler::FillRegisterState(void* context, R state->pc = reinterpret_cast(mcontext.__gregs[_REG_PC]); state->sp = reinterpret_cast(mcontext.__gregs[_REG_SP]); state->fp = reinterpret_cast(mcontext.__gregs[_REG_FP]); Modified: branches/2020Q3/www/node/pkg-plist ============================================================================== --- branches/2020Q3/www/node/pkg-plist Fri Sep 18 04:43:56 2020 (r548875) +++ branches/2020Q3/www/node/pkg-plist Fri Sep 18 04:50:56 2020 (r548876) @@ -1,6 +1,30 @@ bin/node include/node/common.gypi include/node/config.gypi +include/node/cppgc/allocation.h +include/node/cppgc/common.h +include/node/cppgc/custom-space.h +include/node/cppgc/garbage-collected.h +include/node/cppgc/heap.h +include/node/cppgc/internal/accessors.h +include/node/cppgc/internal/api-constants.h +include/node/cppgc/internal/compiler-specific.h +include/node/cppgc/internal/finalizer-trait.h +include/node/cppgc/internal/gc-info.h +include/node/cppgc/internal/logging.h +include/node/cppgc/internal/persistent-node.h +include/node/cppgc/internal/pointer-policies.h +include/node/cppgc/internal/prefinalizer-handler.h +include/node/cppgc/liveness-broker.h +include/node/cppgc/macros.h +include/node/cppgc/member.h +include/node/cppgc/persistent.h +include/node/cppgc/platform.h +include/node/cppgc/prefinalizer.h +include/node/cppgc/source-location.h +include/node/cppgc/trace-trait.h +include/node/cppgc/type-traits.h +include/node/cppgc/visitor.h include/node/js_native_api.h include/node/js_native_api_types.h include/node/libplatform/libplatform.h @@ -122,6 +146,21 @@ include/node/node_version.h %%BUNDLED_SSL%%include/node/openssl/archs/darwin-i386-cc/no-asm/crypto/include/internal/dso_conf.h %%BUNDLED_SSL%%include/node/openssl/archs/darwin-i386-cc/no-asm/include/openssl/opensslconf.h %%BUNDLED_SSL%%include/node/openssl/archs/darwin-i386-cc/no-asm/include/progs.h +%%BUNDLED_SSL%%include/node/openssl/archs/darwin64-arm64-cc/asm/crypto/buildinf.h +%%BUNDLED_SSL%%include/node/openssl/archs/darwin64-arm64-cc/asm/crypto/include/internal/bn_conf.h +%%BUNDLED_SSL%%include/node/openssl/archs/darwin64-arm64-cc/asm/crypto/include/internal/dso_conf.h +%%BUNDLED_SSL%%include/node/openssl/archs/darwin64-arm64-cc/asm/include/openssl/opensslconf.h +%%BUNDLED_SSL%%include/node/openssl/archs/darwin64-arm64-cc/asm/include/progs.h +%%BUNDLED_SSL%%include/node/openssl/archs/darwin64-arm64-cc/asm_avx2/crypto/buildinf.h +%%BUNDLED_SSL%%include/node/openssl/archs/darwin64-arm64-cc/asm_avx2/crypto/include/internal/bn_conf.h +%%BUNDLED_SSL%%include/node/openssl/archs/darwin64-arm64-cc/asm_avx2/crypto/include/internal/dso_conf.h +%%BUNDLED_SSL%%include/node/openssl/archs/darwin64-arm64-cc/asm_avx2/include/openssl/opensslconf.h +%%BUNDLED_SSL%%include/node/openssl/archs/darwin64-arm64-cc/asm_avx2/include/progs.h +%%BUNDLED_SSL%%include/node/openssl/archs/darwin64-arm64-cc/no-asm/crypto/buildinf.h +%%BUNDLED_SSL%%include/node/openssl/archs/darwin64-arm64-cc/no-asm/crypto/include/internal/bn_conf.h +%%BUNDLED_SSL%%include/node/openssl/archs/darwin64-arm64-cc/no-asm/crypto/include/internal/dso_conf.h +%%BUNDLED_SSL%%include/node/openssl/archs/darwin64-arm64-cc/no-asm/include/openssl/opensslconf.h +%%BUNDLED_SSL%%include/node/openssl/archs/darwin64-arm64-cc/no-asm/include/progs.h %%BUNDLED_SSL%%include/node/openssl/archs/darwin64-x86_64-cc/asm/crypto/buildinf.h %%BUNDLED_SSL%%include/node/openssl/archs/darwin64-x86_64-cc/asm/crypto/include/internal/bn_conf.h %%BUNDLED_SSL%%include/node/openssl/archs/darwin64-x86_64-cc/asm/crypto/include/internal/dso_conf.h @@ -444,6 +483,7 @@ include/node/node_version.h %%BUNDLED_SSL%%include/node/openssl/x509err.h %%BUNDLED_SSL%%include/node/openssl/x509v3.h %%BUNDLED_SSL%%include/node/openssl/x509v3err.h +include/node/v8-fast-api-calls.h include/node/v8-internal.h include/node/v8-platform.h include/node/v8-profiler.h From owner-svn-ports-branches@freebsd.org Fri Sep 18 15:46:52 2020 Return-Path: Delivered-To: svn-ports-branches@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 83D883E6B61; Fri, 18 Sep 2020 15:46:52 +0000 (UTC) (envelope-from dan@langille.org) Received: from out3-smtp.messagingengine.com (out3-smtp.messagingengine.com [66.111.4.27]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4BtJ9R70x3z3Tjb; Fri, 18 Sep 2020 15:46:51 +0000 (UTC) (envelope-from dan@langille.org) Received: from compute2.internal (compute2.nyi.internal [10.202.2.42]) by mailout.nyi.internal (Postfix) with ESMTP id 0DFA55C00B5; Fri, 18 Sep 2020 11:46:51 -0400 (EDT) Received: from mailfrontend1 ([10.202.2.162]) by compute2.internal (MEProxy); Fri, 18 Sep 2020 11:46:51 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=langille.org; h= content-type:mime-version:subject:from:in-reply-to:date:cc :content-transfer-encoding:message-id:references:to; s=fm2; bh=3 grz+EXHU6d6rCTePNUmiAZXgwCIOIq2HJN6BxSWPN4=; b=B7A1AI4NTWqxd/wKK gmBAxMPsU7glKkYLQI8IpVPRshviUiRpdxlngPYg56eKb2/uhSVuCwTZ4bhwDzkw yAThgWhAIh3DXHuhIm+37uVAfH4BR/1pPX4MCoCE2AvqXucrQXsttNJQHoWWK1Il /FWh+QPEDiu0ivorKOaAXCqfORMiqWr3/iMTwxyst3J5GZHo2FvQeLdOAJ41Umc0 C/ysY7radzMPH4/Ndz88x1b4K7/pJqaVx7i5VXDWN5xHgYyeDPfbtHVnozT4OrwQ TqTdYyAiuGGiDyYsim7HYVRQSKN0PDzYZgQEimVV82WvpRxiSsMJBO4LgKhu9ixw f193g== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:content-transfer-encoding:content-type :date:from:in-reply-to:message-id:mime-version:references :subject:to:x-me-proxy:x-me-proxy:x-me-sender:x-me-sender :x-sasl-enc; s=fm3; bh=3grz+EXHU6d6rCTePNUmiAZXgwCIOIq2HJN6BxSWP N4=; b=jH7iEo8Wp2ibo1uyJeqqWWIUrs8a8NmSp7j2eye9A8d50YWJVF6QmDyrJ WHpV2OALa9jeQWUf4NPlf73a3XE8WZahPPQS340J8mPrqeLXVVZWKoeC10X/H2DS oEiRDsozzrkqGDgqR37Hms1k1fZtSfU54FZT5RXeIK0FgrUais1GXp49l7hVpILu 4nglFPLNBY37lG2ZtN0b+yv4oev5CznWyxIlqPcQYbYOkiQUj/OG3tGar16OU/c9 RQ/pP1CkY3sb3BQSFq6JfDSv6LB4n1Ryo60iHnI0RsMIuoMJPYxBpaqvK/uW17mp S/hSsVy0obiA8knPYBMBy+mubXH0g== X-ME-Sender: X-ME-Proxy-Cause: gggruggvucftvghtrhhoucdtuddrgedujedrtdeigdelgecutefuodetggdotefrodftvf curfhrohhfihhlvgemucfhrghsthforghilhdpqfgfvfdpuffrtefokffrpgfnqfghnecu uegrihhlohhuthemuceftddtnecusecvtfgvtghiphhivghnthhsucdlqddutddtmdenuc fjughrpegtggfuhfgjfffgkfhfvffosehtqhhmtdhhtddvnecuhfhrohhmpeffrghnucfn rghnghhilhhlvgcuoegurghnsehlrghnghhilhhlvgdrohhrgheqnecuggftrfgrthhtvg hrnhepvdfhvdffieektddugeehfeeuhfekhedtueejgfefvddvueffvdfhueeuheeffffg necuffhomhgrihhnpehfrhgvvggsshgurdhorhhgpdhnohguvghjshdrohhrghdphhhtth hpvddrshhonecukfhppedujeegrddutdeirdduvdekrddvvddvnecuvehluhhsthgvrhfu ihiivgeptdenucfrrghrrghmpehmrghilhhfrhhomhepuggrnheslhgrnhhgihhllhgvrd horhhg X-ME-Proxy: Received: from pro02.lan1 (cpe-174-106-128-222.ec.res.rr.com [174.106.128.222]) by mail.messagingengine.com (Postfix) with ESMTPA id 5C45C3280063; Fri, 18 Sep 2020 11:46:50 -0400 (EDT) Content-Type: text/plain; charset=us-ascii Mime-Version: 1.0 (Mac OS X Mail 13.4 \(3608.120.23.2.1\)) Subject: Re: svn commit: r548876 - in branches/2020Q3/www/node: . files From: Dan Langille In-Reply-To: <202009180450.08I4ouW4090425@repo.freebsd.org> Date: Fri, 18 Sep 2020 11:46:49 -0400 Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Content-Transfer-Encoding: quoted-printable Message-Id: <482CEC48-E724-4B59-AF30-1C3855D9B7F0@langille.org> References: <202009180450.08I4ouW4090425@repo.freebsd.org> To: "Bradley T. Hughes" X-Mailer: Apple Mail (2.3608.120.23.2.1) X-Rspamd-Queue-Id: 4BtJ9R70x3z3Tjb X-Spamd-Bar: ---- Authentication-Results: mx1.freebsd.org; none X-Spamd-Result: default: False [-4.00 / 15.00]; REPLY(-4.00)[]; ASN(0.00)[asn:11403, ipnet:66.111.4.0/24, country:US] X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 18 Sep 2020 15:46:52 -0000 www/node will not build on 2020Q3 because of a BUILD_DEPENDS which can = never be met. On 2020Q3, brotil is 1.0.7 - see below. > On Sep 18, 2020, at 12:50 AM, Bradley T. Hughes = wrote: >=20 > Author: bhughes > Date: Fri Sep 18 04:50:56 2020 > New Revision: 548876 > URL: https://svnweb.freebsd.org/changeset/ports/548876 >=20 > Log: > MFH: r541372 r543678 r543682 r545547 r545560 r547570 r548046 r548047 = r548707 r548802 >=20 > www/node: Update 14.4.0 -> 14.5.0 >=20 > https://nodejs.org/en/blog/release/v14.5.0/ >=20 > Refresh patches with `make makepatch`, and adapt them to the changes > from upstream due to the V8 upgrade. >=20 > Sponsored by: Miles AS >=20 > www/node10: Update 10.21.0 -> 10.22.0 >=20 > https://nodejs.org/en/blog/release/v10.22.0/ >=20 > Sponsored by: Miles AS >=20 > www/node: Update 14.6.0 -> 14.6.0_1 >=20 > Bump PORTREVISION after updating the minimum version requirements for > libuv, libnghttp2, and libcares. >=20 > The previous change for www/node erroneously mentioned the most = recent > www/node10 update. The correct changelog should have read: >=20 > www/node: Update 14.5.0 -> 14.6.0 >=20 > https://nodejs.org/en/blog/release/v14.6.0/ >=20 > Sponsored by: Miles AS >=20 > www/node: Update 14.6.0_1 -> 14.7.0 >=20 > https://nodejs.org/en/blog/release/v14.7.0/ >=20 > Sponsored by: Miles AS >=20 > www/node: Update 14.7.0 -> 14.8.0 >=20 > https://nodejs.org/en/blog/release/v14.8.0/ >=20 > Sponsored by: Miles AS >=20 > www/node: Update 14.8.0 -> 14.9.0 >=20 > https://nodejs.org/en/blog/release/v14.9.0/ >=20 > Sponsored by: Miles AS >=20 > www/node: Update 14.9.0 -> 14.10.0 >=20 > https://nodejs.org/en/blog/release/v14.10.0/ >=20 > While here, refresh patches with `make makepatch`. >=20 > Sponsored by: Miles AS >=20 > www/node: add dependency on archivers/brotli >=20 > ... instead of building the version bundled with Node.js. Bump > PORTREVISION due to the new dependency. >=20 > Sponsored by: Miles AS >=20 > www/node: Update 14.10.0_1 -> 14.10.1 >=20 > https://nodejs.org/en/blog/release/v14.10.1/ >=20 > Sponsored by: Miles AS >=20 > www/node: Update 14.10.1 -> 14.11.0 >=20 > https://nodejs.org/en/blog/release/v14.11.0/ >=20 > This is a security release. See > = https://nodejs.org/en/blog/vulnerability/september-2020-security-releases/= >=20 > Security: 4ca5894c-f7f1-11ea-8ff8-0022489ad614 > Sponsored by: Miles AS >=20 > Approved by: ports-secteam (fluffy) >=20 > Modified: > branches/2020Q3/www/node/Makefile > branches/2020Q3/www/node/distinfo > = branches/2020Q3/www/node/files/patch-deps_openssl_openssl-cl__no__asm.gypi= > = branches/2020Q3/www/node/files/patch-deps_openssl_openssl__no__asm.gypi > = branches/2020Q3/www/node/files/patch-deps_v8_src_base_platform_platform-fr= eebsd.cc > = branches/2020Q3/www/node/files/patch-deps_v8_src_codegen_ppc_constants-ppc= .h > = branches/2020Q3/www/node/files/patch-deps_v8_src_compiler_backend_instruct= ion-selector.cc > = branches/2020Q3/www/node/files/patch-deps_v8_src_compiler_backend_ppc_code= -generator-ppc.cc > = branches/2020Q3/www/node/files/patch-deps_v8_src_libsampler_sampler.cc > branches/2020Q3/www/node/pkg-plist > Directory Properties: > branches/2020Q3/ (props changed) >=20 > Modified: branches/2020Q3/www/node/Makefile > = =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D > --- branches/2020Q3/www/node/Makefile Fri Sep 18 04:43:56 2020 = (r548875) > +++ branches/2020Q3/www/node/Makefile Fri Sep 18 04:50:56 2020 = (r548876) > @@ -1,7 +1,7 @@ > # $FreeBSD$ >=20 > PORTNAME=3D node > -PORTVERSION=3D 14.4.0 > +PORTVERSION=3D 14.11.0 > DISTVERSIONPREFIX=3D v > CATEGORIES=3D www > MASTER_SITES=3D http://nodejs.org/dist/v${PORTVERSION}/ > @@ -38,7 +38,7 @@ BUNDLED_SSL_CONFIGURE_OFF=3D --shared-openssl = --openssl- > BUNDLED_SSL_RUN_DEPENDS_OFF=3D = ca_root_nss>=3D0:security/ca_root_nss >=20 > NLS_CONFIGURE_ON=3D --with-intl=3Dsystem-icu > -NLS_BUILD_DEPENDS=3D icu>=3D66.1:devel/icu > +NLS_BUILD_DEPENDS=3D icu>=3D67.1:devel/icu > NLS_LIB_DEPENDS=3D libicui18n.so:devel/icu >=20 > DTRACE_CONFIGURE_ON=3D --with-dtrace > @@ -52,6 +52,7 @@ CONFLICTS_INSTALL=3D node[68]-[0-9]* = node10-[0-9]* node1 >=20 > CONFIGURE_ARGS=3D --prefix=3D${PREFIX_RELDEST} \ > --without-npm \ > + --shared-brotli \ > --shared-cares \ > --shared-libuv \ > --shared-nghttp2 \ > @@ -68,11 +69,13 @@ MAKE_ENV+=3D CC.host=3D${CC} = CFLAGS.host=3D"${CFLAGS}" \ > CXX.host=3D${CXX} CXXFLAGS.host=3D"${CXXFLAGS}" \ > LINK.host=3D${CXX} LDFLAGS.host=3D"${LDFLAGS}" >=20 > -BUILD_DEPENDS+=3D c-ares>=3D1.15.0:dns/c-ares\ > - libuv>=3D1.37.0:devel/libuv \ > - libnghttp2>=3D1.40.0:www/libnghttp2 \ > +BUILD_DEPENDS+=3D brotli>=3D1.0.9,1:archivers/brotli \ On 2020Q3, brotil is 1.0.7 - above requirement can never be met. > + c-ares>=3D1.16.0:dns/c-ares \ > + libuv>=3D1.39.0:devel/libuv \ > + libnghttp2>=3D1.41.0:www/libnghttp2 \ > objdump:devel/binutils > -LIB_DEPENDS+=3D libcares.so:dns/c-ares\ > +LIB_DEPENDS+=3D libbrotlidec.so:archivers/brotli \ > + libcares.so:dns/c-ares\ > libuv.so:devel/libuv \ > libnghttp2.so:www/libnghttp2 >=20 >=20 > Modified: branches/2020Q3/www/node/distinfo > = =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D > --- branches/2020Q3/www/node/distinfo Fri Sep 18 04:43:56 2020 = (r548875) > +++ branches/2020Q3/www/node/distinfo Fri Sep 18 04:50:56 2020 = (r548876) > @@ -1,3 +1,3 @@ > -TIMESTAMP =3D 1591883644 > -SHA256 (node-v14.4.0.tar.gz) =3D = 5769ce6cf619e3f38dab9d64eab204722665b8b0f5bd2568ac171e2edc6db7f7 > -SIZE (node-v14.4.0.tar.gz) =3D 61658009 > +TIMESTAMP =3D 1600242162 > +SHA256 (node-v14.11.0.tar.gz) =3D = c07669ddbd708d0dfc4ccb63a7ced7ad1fd7d1b59ced50cf05f22f0b96e45463 > +SIZE (node-v14.11.0.tar.gz) =3D 63018833 >=20 > Modified: = branches/2020Q3/www/node/files/patch-deps_openssl_openssl-cl__no__asm.gypi= > = =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D > --- = branches/2020Q3/www/node/files/patch-deps_openssl_openssl-cl__no__asm.gypi= Fri Sep 18 04:43:56 2020 (r548875) > +++ = branches/2020Q3/www/node/files/patch-deps_openssl_openssl-cl__no__asm.gypi= Fri Sep 18 04:50:56 2020 (r548876) > @@ -1,4 +1,4 @@ > ---- deps/openssl/openssl-cl_no_asm.gypi.orig 2019-08-06 20:46:23 UTC > +--- deps/openssl/openssl-cl_no_asm.gypi.orig 2020-09-08 12:17:10 UTC > +++ deps/openssl/openssl-cl_no_asm.gypi > @@ -1,4 +1,5 @@ > { > @@ -6,7 +6,7 @@ > 'conditions': [ > ['target_arch=3D=3D"ppc" and OS=3D=3D"aix"', { > 'includes': ['config/archs/aix-gcc/no-asm/openssl-cl.gypi'], > -@@ -45,7 +46,7 @@ > +@@ -47,7 +48,7 @@ > 'includes': = ['config/archs/linux64-mips64/no-asm/openssl-cl.gypi'], > }, { > # Other architectures don't use assembly >=20 > Modified: = branches/2020Q3/www/node/files/patch-deps_openssl_openssl__no__asm.gypi > = =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D > --- = branches/2020Q3/www/node/files/patch-deps_openssl_openssl__no__asm.gypi = Fri Sep 18 04:43:56 2020 (r548875) > +++ = branches/2020Q3/www/node/files/patch-deps_openssl_openssl__no__asm.gypi = Fri Sep 18 04:50:56 2020 (r548876) > @@ -1,6 +1,6 @@ > ---- deps/openssl/openssl_no_asm.gypi.orig 2019-08-06 20:46:23 UTC > +--- deps/openssl/openssl_no_asm.gypi.orig 2020-09-08 12:17:11 UTC > +++ deps/openssl/openssl_no_asm.gypi > -@@ -46,7 +46,7 @@ > +@@ -48,7 +48,7 @@ > 'includes': = ['config/archs/linux64-mips64/no-asm/openssl.gypi'], > }, { > # Other architectures don't use assembly >=20 > Modified: = branches/2020Q3/www/node/files/patch-deps_v8_src_base_platform_platform-fr= eebsd.cc > = =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D > --- = branches/2020Q3/www/node/files/patch-deps_v8_src_base_platform_platform-fr= eebsd.cc Fri Sep 18 04:43:56 2020 (r548875) > +++ = branches/2020Q3/www/node/files/patch-deps_v8_src_base_platform_platform-fr= eebsd.cc Fri Sep 18 04:50:56 2020 (r548876) > @@ -1,6 +1,6 @@ > ---- deps/v8/src/base/platform/platform-freebsd.cc.orig = 2020-01-07 22:07:49 UTC > +--- deps/v8/src/base/platform/platform-freebsd.cc.orig = 2020-06-30 17:49:16 UTC > +++ deps/v8/src/base/platform/platform-freebsd.cc > -@@ -81,8 +81,8 @@ std::vector = OS::GetSharedLib > +@@ -82,8 +82,8 @@ std::vector = OS::GetSharedLib > lib_name =3D std::string(path); > } > result.push_back(SharedLibraryAddress( > @@ -11,7 +11,7 @@ > } >=20 > start +=3D ssize; > -@@ -93,6 +93,48 @@ std::vector = OS::GetSharedLib > +@@ -94,6 +94,48 @@ std::vector = OS::GetSharedLib > } >=20 > void OS::SignalCodeMovingGC() {} >=20 > Modified: = branches/2020Q3/www/node/files/patch-deps_v8_src_codegen_ppc_constants-ppc= .h > = =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D > --- = branches/2020Q3/www/node/files/patch-deps_v8_src_codegen_ppc_constants-ppc= .h Fri Sep 18 04:43:56 2020 (r548875) > +++ = branches/2020Q3/www/node/files/patch-deps_v8_src_codegen_ppc_constants-ppc= .h Fri Sep 18 04:50:56 2020 (r548876) > @@ -1,18 +1,18 @@ > ---- deps/v8/src/codegen/ppc/constants-ppc.h.orig 2019-09-09 = 16:27:17 UTC > +--- deps/v8/src/codegen/ppc/constants-ppc.h.orig 2020-06-30 = 17:49:17 UTC > +++ deps/v8/src/codegen/ppc/constants-ppc.h > -@@ -34,7 +34,7 @@ > - #define ABI_PASSES_HANDLES_IN_REGS 0 > +@@ -36,7 +36,7 @@ > #endif >=20 > --#if !V8_HOST_ARCH_PPC || !V8_TARGET_ARCH_PPC64 || = V8_TARGET_LITTLE_ENDIAN || \ > -+#if !V8_HOST_ARCH_PPC || !V8_TARGET_ARCH_PPC64 || \ > - (defined(_CALL_ELF) && _CALL_ELF =3D=3D 2) > + #if !(V8_HOST_ARCH_PPC || V8_HOST_ARCH_PPC64) || = !V8_TARGET_ARCH_PPC64 || \ > +- V8_TARGET_LITTLE_ENDIAN || (defined(_CALL_ELF) && _CALL_ELF =3D=3D= 2) > ++ (defined(_CALL_ELF) && _CALL_ELF =3D=3D 2) > #define ABI_RETURNS_OBJECT_PAIRS_IN_REGS 1 > #else > -@@ -43,7 +43,7 @@ > + #define ABI_RETURNS_OBJECT_PAIRS_IN_REGS 0 > +@@ -44,7 +44,7 @@ >=20 > - #if !V8_HOST_ARCH_PPC || \ > - (V8_TARGET_ARCH_PPC64 && \ > + #if !(V8_HOST_ARCH_PPC || V8_HOST_ARCH_PPC64) || \ > + (V8_TARGET_ARCH_PPC64 && \ > - (V8_TARGET_LITTLE_ENDIAN || (defined(_CALL_ELF) && _CALL_ELF =3D=3D= 2))) > + (defined(_CALL_ELF) && _CALL_ELF =3D=3D 2)) > #define ABI_CALL_VIA_IP 1 >=20 > Modified: = branches/2020Q3/www/node/files/patch-deps_v8_src_compiler_backend_instruct= ion-selector.cc > = =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D > --- = branches/2020Q3/www/node/files/patch-deps_v8_src_compiler_backend_instruct= ion-selector.cc Fri Sep 18 04:43:56 2020 (r548875) > +++ = branches/2020Q3/www/node/files/patch-deps_v8_src_compiler_backend_instruct= ion-selector.cc Fri Sep 18 04:50:56 2020 (r548876) > @@ -1,6 +1,6 @@ > ---- deps/v8/src/compiler/backend/instruction-selector.cc.orig = 2020-04-21 11:38:50 UTC > +--- deps/v8/src/compiler/backend/instruction-selector.cc.orig = 2020-07-20 22:18:45 UTC > +++ deps/v8/src/compiler/backend/instruction-selector.cc > -@@ -2783,7 +2783,7 @@ void InstructionSelector::VisitCall(Node* node, = BasicB > +@@ -2808,7 +2808,7 @@ void InstructionSelector::VisitCall(Node* node, = BasicB > switch (call_descriptor->kind()) { > case CallDescriptor::kCallAddress: { > int misc_field =3D = static_cast(call_descriptor->ParameterCount()); >=20 > Modified: = branches/2020Q3/www/node/files/patch-deps_v8_src_compiler_backend_ppc_code= -generator-ppc.cc > = =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D > --- = branches/2020Q3/www/node/files/patch-deps_v8_src_compiler_backend_ppc_code= -generator-ppc.cc Fri Sep 18 04:43:56 2020 (r548875) > +++ = branches/2020Q3/www/node/files/patch-deps_v8_src_compiler_backend_ppc_code= -generator-ppc.cc Fri Sep 18 04:50:56 2020 (r548876) > @@ -1,9 +1,10 @@ > ---- deps/v8/src/compiler/backend/ppc/code-generator-ppc.cc.orig = 2020-04-21 11:38:50 UTC > +--- deps/v8/src/compiler/backend/ppc/code-generator-ppc.cc.orig = 2020-07-20 22:18:45 UTC > +++ deps/v8/src/compiler/backend/ppc/code-generator-ppc.cc > -@@ -1032,7 +1032,7 @@ CodeGenerator::CodeGenResult = CodeGenerator::AssembleAr > +@@ -1038,8 +1038,7 @@ CodeGenerator::CodeGenResult = CodeGenerator::AssembleAr > bool isWasmCapiFunction =3D > linkage()->GetIncomingDescriptor()->IsWasmCapiFunction(); > - int offset =3D 9 * kInstrSize; > + int offset =3D (FLAG_enable_embedded_constant_pool ? 20 : 23) = * kInstrSize; > +- > -#if defined(_AIX) > +#if defined(_AIX) || (V8_TARGET_ARCH_PPC_BE && (!defined(_CALL_ELF) = || _CALL_ELF =3D=3D 1)) > // AIX/PPC64BE Linux uses a function descriptor >=20 > Modified: = branches/2020Q3/www/node/files/patch-deps_v8_src_libsampler_sampler.cc > = =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D > --- = branches/2020Q3/www/node/files/patch-deps_v8_src_libsampler_sampler.cc = Fri Sep 18 04:43:56 2020 (r548875) > +++ = branches/2020Q3/www/node/files/patch-deps_v8_src_libsampler_sampler.cc = Fri Sep 18 04:50:56 2020 (r548876) > @@ -1,6 +1,6 @@ > ---- deps/v8/src/libsampler/sampler.cc.orig 2020-04-21 11:38:50 UTC > +--- deps/v8/src/libsampler/sampler.cc.orig 2020-06-30 17:49:17 UTC > +++ deps/v8/src/libsampler/sampler.cc > -@@ -480,6 +480,10 @@ void SignalHandler::FillRegisterState(void* = context, R > +@@ -482,6 +482,10 @@ void SignalHandler::FillRegisterState(void* = context, R > state->pc =3D reinterpret_cast(mcontext.__gregs[_REG_PC]); > state->sp =3D reinterpret_cast(mcontext.__gregs[_REG_SP]); > state->fp =3D reinterpret_cast(mcontext.__gregs[_REG_FP]); >=20 > Modified: branches/2020Q3/www/node/pkg-plist > = =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D > --- branches/2020Q3/www/node/pkg-plist Fri Sep 18 04:43:56 2020 = (r548875) > +++ branches/2020Q3/www/node/pkg-plist Fri Sep 18 04:50:56 2020 = (r548876) > @@ -1,6 +1,30 @@ > bin/node > include/node/common.gypi > include/node/config.gypi > +include/node/cppgc/allocation.h > +include/node/cppgc/common.h > +include/node/cppgc/custom-space.h > +include/node/cppgc/garbage-collected.h > +include/node/cppgc/heap.h > +include/node/cppgc/internal/accessors.h > +include/node/cppgc/internal/api-constants.h > +include/node/cppgc/internal/compiler-specific.h > +include/node/cppgc/internal/finalizer-trait.h > +include/node/cppgc/internal/gc-info.h > +include/node/cppgc/internal/logging.h > +include/node/cppgc/internal/persistent-node.h > +include/node/cppgc/internal/pointer-policies.h > +include/node/cppgc/internal/prefinalizer-handler.h > +include/node/cppgc/liveness-broker.h > +include/node/cppgc/macros.h > +include/node/cppgc/member.h > +include/node/cppgc/persistent.h > +include/node/cppgc/platform.h > +include/node/cppgc/prefinalizer.h > +include/node/cppgc/source-location.h > +include/node/cppgc/trace-trait.h > +include/node/cppgc/type-traits.h > +include/node/cppgc/visitor.h > include/node/js_native_api.h > include/node/js_native_api_types.h > include/node/libplatform/libplatform.h > @@ -122,6 +146,21 @@ include/node/node_version.h > = %%BUNDLED_SSL%%include/node/openssl/archs/darwin-i386-cc/no-asm/crypto/inc= lude/internal/dso_conf.h > = %%BUNDLED_SSL%%include/node/openssl/archs/darwin-i386-cc/no-asm/include/op= enssl/opensslconf.h > = %%BUNDLED_SSL%%include/node/openssl/archs/darwin-i386-cc/no-asm/include/pr= ogs.h > = +%%BUNDLED_SSL%%include/node/openssl/archs/darwin64-arm64-cc/asm/crypto/bu= ildinf.h > = +%%BUNDLED_SSL%%include/node/openssl/archs/darwin64-arm64-cc/asm/crypto/in= clude/internal/bn_conf.h > = +%%BUNDLED_SSL%%include/node/openssl/archs/darwin64-arm64-cc/asm/crypto/in= clude/internal/dso_conf.h > = +%%BUNDLED_SSL%%include/node/openssl/archs/darwin64-arm64-cc/asm/include/o= penssl/opensslconf.h > = +%%BUNDLED_SSL%%include/node/openssl/archs/darwin64-arm64-cc/asm/include/p= rogs.h > = +%%BUNDLED_SSL%%include/node/openssl/archs/darwin64-arm64-cc/asm_avx2/cryp= to/buildinf.h > = +%%BUNDLED_SSL%%include/node/openssl/archs/darwin64-arm64-cc/asm_avx2/cryp= to/include/internal/bn_conf.h > = +%%BUNDLED_SSL%%include/node/openssl/archs/darwin64-arm64-cc/asm_avx2/cryp= to/include/internal/dso_conf.h > = +%%BUNDLED_SSL%%include/node/openssl/archs/darwin64-arm64-cc/asm_avx2/incl= ude/openssl/opensslconf.h > = +%%BUNDLED_SSL%%include/node/openssl/archs/darwin64-arm64-cc/asm_avx2/incl= ude/progs.h > = +%%BUNDLED_SSL%%include/node/openssl/archs/darwin64-arm64-cc/no-asm/crypto= /buildinf.h > = +%%BUNDLED_SSL%%include/node/openssl/archs/darwin64-arm64-cc/no-asm/crypto= /include/internal/bn_conf.h > = +%%BUNDLED_SSL%%include/node/openssl/archs/darwin64-arm64-cc/no-asm/crypto= /include/internal/dso_conf.h > = +%%BUNDLED_SSL%%include/node/openssl/archs/darwin64-arm64-cc/no-asm/includ= e/openssl/opensslconf.h > = +%%BUNDLED_SSL%%include/node/openssl/archs/darwin64-arm64-cc/no-asm/includ= e/progs.h > = %%BUNDLED_SSL%%include/node/openssl/archs/darwin64-x86_64-cc/asm/crypto/bu= ildinf.h > = %%BUNDLED_SSL%%include/node/openssl/archs/darwin64-x86_64-cc/asm/crypto/in= clude/internal/bn_conf.h > = %%BUNDLED_SSL%%include/node/openssl/archs/darwin64-x86_64-cc/asm/crypto/in= clude/internal/dso_conf.h > @@ -444,6 +483,7 @@ include/node/node_version.h > %%BUNDLED_SSL%%include/node/openssl/x509err.h > %%BUNDLED_SSL%%include/node/openssl/x509v3.h > %%BUNDLED_SSL%%include/node/openssl/x509v3err.h > +include/node/v8-fast-api-calls.h > include/node/v8-internal.h > include/node/v8-platform.h > include/node/v8-profiler.h From owner-svn-ports-branches@freebsd.org Fri Sep 18 16:06:43 2020 Return-Path: Delivered-To: svn-ports-branches@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 D9CB93E704B; Fri, 18 Sep 2020 16:06:43 +0000 (UTC) (envelope-from dan@langille.org) Received: from out3-smtp.messagingengine.com (out3-smtp.messagingengine.com [66.111.4.27]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4BtJcM2sPJz3W7R; Fri, 18 Sep 2020 16:06:43 +0000 (UTC) (envelope-from dan@langille.org) Received: from compute2.internal (compute2.nyi.internal [10.202.2.42]) by mailout.nyi.internal (Postfix) with ESMTP id A61CB5C00D7; Fri, 18 Sep 2020 12:06:42 -0400 (EDT) Received: from imap36 ([10.202.2.86]) by compute2.internal (MEProxy); Fri, 18 Sep 2020 12:06:42 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=langille.org; h= mime-version:message-id:in-reply-to:references:date:from:to:cc :subject:content-type; s=fm2; bh=Ucf6hs4Y2eoi67bvK/aetekbgmMF+z9 ou3n5UnUUumU=; b=be5/fSNXo3/SHck/Zx6tluS/BD4Rk1ur1m03hrOH9k+5kgy T4rBo75DHe17eO+0ec9hXkV2V8inMqyDIXydnTtFVhAJek0eWFbQ3eCGWd3OkhGx TdoupHsIisUgFm3QyCZgQoXHK7vUknYup3Ccgal1RYNwSe/vSrlglvw972wuYA6l yAhekOQXXtvevNW9k8d+i1ECMA2LfIhXYAqrJ0nlgFK8vTNmctOJnwGn+B2wC78i ANPkf8jeI/Y34WxQrfL8YKNIJ6Fp/W/kfWEhpBYW/cjdHywBbeO0tt2qhHWUQrnT AoK4NSbzOBZb524XJLd+OPaeeI9aq/AtBY3FvSQ== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:content-type:date:from:in-reply-to :message-id:mime-version:references:subject:to:x-me-proxy :x-me-proxy:x-me-sender:x-me-sender:x-sasl-enc; s=fm3; bh=Ucf6hs 4Y2eoi67bvK/aetekbgmMF+z9ou3n5UnUUumU=; b=s+XpKVBREs7+X0iNelf157 wAN1VZffEFcnBL0RY7kvNZgqWf2OxnougWZjAvsQL9+4Ql2zwHFDNqyDGsQ3zR5/ a6Ft68nSFiDwyAVREGKUc9Rtn/gA8ZkIucgAPI9SO4Ly3f4Uf0BzHyXeXnpzzZHR thAKNsdOpOteOnv+sDNrBwHHKLtl+z+RN+nPAJ2aHwdwqpta6VBkk/vE2J+lnJax jYNk5j+LTZymFvbBoG/zVJU4n8QoFiLzHs42uHNVff7moDoMb2Z60ylyh8PW23PP YmMn4pR0vkupyROi/iirIVNdLhYbIr+S4EzihLA/Wm/CG5ntbinGvEc6mj30dtFQ == X-ME-Sender: X-ME-Proxy-Cause: gggruggvucftvghtrhhoucdtuddrgedujedrtdeigdeljecutefuodetggdotefrodftvf curfhrohhfihhlvgemucfhrghsthforghilhdpqfgfvfdpuffrtefokffrpgfnqfghnecu uegrihhlohhuthemuceftddtnecusecvtfgvtghiphhivghnthhsucdlqddutddtmdenuc fjughrpefofgggkfgjfhffhffvufgtsehttdertderredtnecuhfhrohhmpedfffgrnhcu nfgrnhhgihhllhgvfdcuoegurghnsehlrghnghhilhhlvgdrohhrgheqnecuggftrfgrth htvghrnheptefguddtfeehiedtieejkeejkeetheekuefgieehhfdukeeiheeghfefteeh udeunecuffhomhgrihhnpehfrhgvvggsshgurdhorhhgpdhnohguvghjshdrohhrghdphh htthhpvddrshhonecuvehluhhsthgvrhfuihiivgeptdenucfrrghrrghmpehmrghilhhf rhhomhepuggrnheslhgrnhhgihhllhgvrdhorhhg X-ME-Proxy: Received: by mailuser.nyi.internal (Postfix, from userid 501) id BF784188014C; Fri, 18 Sep 2020 12:06:41 -0400 (EDT) X-Mailer: MessagingEngine.com Webmail Interface User-Agent: Cyrus-JMAP/3.3.0-325-g8593b62-fm-20200916.004-g0f995879-bis Mime-Version: 1.0 Message-Id: In-Reply-To: <482CEC48-E724-4B59-AF30-1C3855D9B7F0@langille.org> References: <202009180450.08I4ouW4090425@repo.freebsd.org> <482CEC48-E724-4B59-AF30-1C3855D9B7F0@langille.org> Date: Fri, 18 Sep 2020 12:06:21 -0400 From: "Dan Langille" To: "Bradley T. Hughes" Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: Re: svn commit: r548876 - in branches/2020Q3/www/node: . files Content-Type: text/plain X-Rspamd-Queue-Id: 4BtJcM2sPJz3W7R X-Spamd-Bar: --- Authentication-Results: mx1.freebsd.org; dkim=pass header.d=langille.org header.s=fm2 header.b=be5/fSNX; dkim=pass header.d=messagingengine.com header.s=fm3 header.b=s+XpKVBR; dmarc=pass (policy=none) header.from=langille.org; spf=pass (mx1.freebsd.org: domain of dan@langille.org designates 66.111.4.27 as permitted sender) smtp.mailfrom=dan@langille.org X-Spamd-Result: default: False [-3.35 / 15.00]; ARC_NA(0.00)[]; NEURAL_HAM_MEDIUM(-1.04)[-1.039]; R_DKIM_ALLOW(-0.20)[langille.org:s=fm2,messagingengine.com:s=fm3]; XM_UA_NO_VERSION(0.01)[]; FROM_HAS_DN(0.00)[]; RCPT_COUNT_THREE(0.00)[4]; MV_CASE(0.50)[]; TO_MATCH_ENVRCPT_ALL(0.00)[]; MIME_GOOD(-0.10)[text/plain]; FREEFALL_USER(0.00)[dan]; NEURAL_HAM_LONG(-1.07)[-1.071]; TO_DN_SOME(0.00)[]; R_SPF_ALLOW(-0.20)[+ip4:66.111.4.27]; RCVD_COUNT_THREE(0.00)[4]; RWL_MAILSPIKE_GOOD(0.00)[66.111.4.27:from]; DKIM_TRACE(0.00)[langille.org:+,messagingengine.com:+]; DMARC_POLICY_ALLOW(-0.50)[langille.org,none]; NEURAL_HAM_SHORT(-1.15)[-1.145]; RCVD_IN_DNSWL_LOW(-0.10)[66.111.4.27:from]; FROM_EQ_ENVFROM(0.00)[]; MIME_TRACE(0.00)[0:+]; RCVD_TLS_LAST(0.00)[]; ASN(0.00)[asn:11403, ipnet:66.111.4.0/24, country:US]; MAILMAN_DEST(0.00)[svn-ports-all,svn-ports-branches]; MID_RHS_WWW(0.50)[] X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 18 Sep 2020 16:06:43 -0000 On Fri, Sep 18, 2020, at 11:46 AM, Dan Langille wrote: > www/node will not build on 2020Q3 because of a BUILD_DEPENDS which can > never be met. I have asked permission for the recent archivers/brotli update to 1.0.9 to be MFH seeing as it was security related: https://svnweb.freebsd.org/ports?view=revision&revision=546350 I see now that I did not cc the lists on that email. Sorry about that. > > On 2020Q3, brotil is 1.0.7 - see below. > > > On Sep 18, 2020, at 12:50 AM, Bradley T. Hughes wrote: > > > > Author: bhughes > > Date: Fri Sep 18 04:50:56 2020 > > New Revision: 548876 > > URL: https://svnweb.freebsd.org/changeset/ports/548876 > > > > Log: > > MFH: r541372 r543678 r543682 r545547 r545560 r547570 r548046 r548047 r548707 r548802 > > > > www/node: Update 14.4.0 -> 14.5.0 > > > > https://nodejs.org/en/blog/release/v14.5.0/ > > > > Refresh patches with `make makepatch`, and adapt them to the changes > > from upstream due to the V8 upgrade. > > > > Sponsored by: Miles AS > > > > www/node10: Update 10.21.0 -> 10.22.0 > > > > https://nodejs.org/en/blog/release/v10.22.0/ > > > > Sponsored by: Miles AS > > > > www/node: Update 14.6.0 -> 14.6.0_1 > > > > Bump PORTREVISION after updating the minimum version requirements for > > libuv, libnghttp2, and libcares. > > > > The previous change for www/node erroneously mentioned the most recent > > www/node10 update. The correct changelog should have read: > > > > www/node: Update 14.5.0 -> 14.6.0 > > > > https://nodejs.org/en/blog/release/v14.6.0/ > > > > Sponsored by: Miles AS > > > > www/node: Update 14.6.0_1 -> 14.7.0 > > > > https://nodejs.org/en/blog/release/v14.7.0/ > > > > Sponsored by: Miles AS > > > > www/node: Update 14.7.0 -> 14.8.0 > > > > https://nodejs.org/en/blog/release/v14.8.0/ > > > > Sponsored by: Miles AS > > > > www/node: Update 14.8.0 -> 14.9.0 > > > > https://nodejs.org/en/blog/release/v14.9.0/ > > > > Sponsored by: Miles AS > > > > www/node: Update 14.9.0 -> 14.10.0 > > > > https://nodejs.org/en/blog/release/v14.10.0/ > > > > While here, refresh patches with `make makepatch`. > > > > Sponsored by: Miles AS > > > > www/node: add dependency on archivers/brotli > > > > ... instead of building the version bundled with Node.js. Bump > > PORTREVISION due to the new dependency. > > > > Sponsored by: Miles AS > > > > www/node: Update 14.10.0_1 -> 14.10.1 > > > > https://nodejs.org/en/blog/release/v14.10.1/ > > > > Sponsored by: Miles AS > > > > www/node: Update 14.10.1 -> 14.11.0 > > > > https://nodejs.org/en/blog/release/v14.11.0/ > > > > This is a security release. See > > https://nodejs.org/en/blog/vulnerability/september-2020-security-releases/ > > > > Security: 4ca5894c-f7f1-11ea-8ff8-0022489ad614 > > Sponsored by: Miles AS > > > > Approved by: ports-secteam (fluffy) > > > > Modified: > > branches/2020Q3/www/node/Makefile > > branches/2020Q3/www/node/distinfo > > branches/2020Q3/www/node/files/patch-deps_openssl_openssl-cl__no__asm.gypi > > branches/2020Q3/www/node/files/patch-deps_openssl_openssl__no__asm.gypi > > branches/2020Q3/www/node/files/patch-deps_v8_src_base_platform_platform-freebsd.cc > > branches/2020Q3/www/node/files/patch-deps_v8_src_codegen_ppc_constants-ppc.h > > branches/2020Q3/www/node/files/patch-deps_v8_src_compiler_backend_instruction-selector.cc > > branches/2020Q3/www/node/files/patch-deps_v8_src_compiler_backend_ppc_code-generator-ppc.cc > > branches/2020Q3/www/node/files/patch-deps_v8_src_libsampler_sampler.cc > > branches/2020Q3/www/node/pkg-plist > > Directory Properties: > > branches/2020Q3/ (props changed) > > > > Modified: branches/2020Q3/www/node/Makefile > > ============================================================================== > > --- branches/2020Q3/www/node/Makefile Fri Sep 18 04:43:56 2020 (r548875) > > +++ branches/2020Q3/www/node/Makefile Fri Sep 18 04:50:56 2020 (r548876) > > @@ -1,7 +1,7 @@ > > # $FreeBSD$ > > > > PORTNAME= node > > -PORTVERSION= 14.4.0 > > +PORTVERSION= 14.11.0 > > DISTVERSIONPREFIX= v > > CATEGORIES= www > > MASTER_SITES= http://nodejs.org/dist/v${PORTVERSION}/ > > @@ -38,7 +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>=66.1:devel/icu > > +NLS_BUILD_DEPENDS= icu>=67.1:devel/icu > > NLS_LIB_DEPENDS= libicui18n.so:devel/icu > > > > DTRACE_CONFIGURE_ON= --with-dtrace > > @@ -52,6 +52,7 @@ CONFLICTS_INSTALL= node[68]-[0-9]* node10-[0-9]* node1 > > > > CONFIGURE_ARGS= --prefix=${PREFIX_RELDEST} \ > > --without-npm \ > > + --shared-brotli \ > > --shared-cares \ > > --shared-libuv \ > > --shared-nghttp2 \ > > @@ -68,11 +69,13 @@ 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.37.0:devel/libuv \ > > - libnghttp2>=1.40.0:www/libnghttp2 \ > > +BUILD_DEPENDS+= brotli>=1.0.9,1:archivers/brotli \ > > On 2020Q3, brotil is 1.0.7 - above requirement can never be met. > > > > > + c-ares>=1.16.0:dns/c-ares \ > > + libuv>=1.39.0:devel/libuv \ > > + libnghttp2>=1.41.0:www/libnghttp2 \ > > objdump:devel/binutils > > -LIB_DEPENDS+= libcares.so:dns/c-ares\ > > +LIB_DEPENDS+= libbrotlidec.so:archivers/brotli \ > > + libcares.so:dns/c-ares\ > > libuv.so:devel/libuv \ > > libnghttp2.so:www/libnghttp2 > > > > > > Modified: branches/2020Q3/www/node/distinfo > > ============================================================================== > > --- branches/2020Q3/www/node/distinfo Fri Sep 18 04:43:56 2020 (r548875) > > +++ branches/2020Q3/www/node/distinfo Fri Sep 18 04:50:56 2020 (r548876) > > @@ -1,3 +1,3 @@ > > -TIMESTAMP = 1591883644 > > -SHA256 (node-v14.4.0.tar.gz) = 5769ce6cf619e3f38dab9d64eab204722665b8b0f5bd2568ac171e2edc6db7f7 > > -SIZE (node-v14.4.0.tar.gz) = 61658009 > > +TIMESTAMP = 1600242162 > > +SHA256 (node-v14.11.0.tar.gz) = c07669ddbd708d0dfc4ccb63a7ced7ad1fd7d1b59ced50cf05f22f0b96e45463 > > +SIZE (node-v14.11.0.tar.gz) = 63018833 > > > > Modified: branches/2020Q3/www/node/files/patch-deps_openssl_openssl-cl__no__asm.gypi > > ============================================================================== > > --- branches/2020Q3/www/node/files/patch-deps_openssl_openssl-cl__no__asm.gypi Fri Sep 18 04:43:56 2020 (r548875) > > +++ branches/2020Q3/www/node/files/patch-deps_openssl_openssl-cl__no__asm.gypi Fri Sep 18 04:50:56 2020 (r548876) > > @@ -1,4 +1,4 @@ > > ---- deps/openssl/openssl-cl_no_asm.gypi.orig 2019-08-06 20:46:23 UTC > > +--- deps/openssl/openssl-cl_no_asm.gypi.orig 2020-09-08 12:17:10 UTC > > +++ deps/openssl/openssl-cl_no_asm.gypi > > @@ -1,4 +1,5 @@ > > { > > @@ -6,7 +6,7 @@ > > 'conditions': [ > > ['target_arch=="ppc" and OS=="aix"', { > > 'includes': ['config/archs/aix-gcc/no-asm/openssl-cl.gypi'], > > -@@ -45,7 +46,7 @@ > > +@@ -47,7 +48,7 @@ > > 'includes': ['config/archs/linux64-mips64/no-asm/openssl-cl.gypi'], > > }, { > > # Other architectures don't use assembly > > > > Modified: branches/2020Q3/www/node/files/patch-deps_openssl_openssl__no__asm.gypi > > ============================================================================== > > --- branches/2020Q3/www/node/files/patch-deps_openssl_openssl__no__asm.gypi Fri Sep 18 04:43:56 2020 (r548875) > > +++ branches/2020Q3/www/node/files/patch-deps_openssl_openssl__no__asm.gypi Fri Sep 18 04:50:56 2020 (r548876) > > @@ -1,6 +1,6 @@ > > ---- deps/openssl/openssl_no_asm.gypi.orig 2019-08-06 20:46:23 UTC > > +--- deps/openssl/openssl_no_asm.gypi.orig 2020-09-08 12:17:11 UTC > > +++ deps/openssl/openssl_no_asm.gypi > > -@@ -46,7 +46,7 @@ > > +@@ -48,7 +48,7 @@ > > 'includes': ['config/archs/linux64-mips64/no-asm/openssl.gypi'], > > }, { > > # Other architectures don't use assembly > > > > Modified: branches/2020Q3/www/node/files/patch-deps_v8_src_base_platform_platform-freebsd.cc > > ============================================================================== > > --- branches/2020Q3/www/node/files/patch-deps_v8_src_base_platform_platform-freebsd.cc Fri Sep 18 04:43:56 2020 (r548875) > > +++ branches/2020Q3/www/node/files/patch-deps_v8_src_base_platform_platform-freebsd.cc Fri Sep 18 04:50:56 2020 (r548876) > > @@ -1,6 +1,6 @@ > > ---- deps/v8/src/base/platform/platform-freebsd.cc.orig 2020-01-07 22:07:49 UTC > > +--- deps/v8/src/base/platform/platform-freebsd.cc.orig 2020-06-30 17:49:16 UTC > > +++ deps/v8/src/base/platform/platform-freebsd.cc > > -@@ -81,8 +81,8 @@ std::vector OS::GetSharedLib > > +@@ -82,8 +82,8 @@ std::vector OS::GetSharedLib > > lib_name = std::string(path); > > } > > result.push_back(SharedLibraryAddress( > > @@ -11,7 +11,7 @@ > > } > > > > start += ssize; > > -@@ -93,6 +93,48 @@ std::vector OS::GetSharedLib > > +@@ -94,6 +94,48 @@ std::vector OS::GetSharedLib > > } > > > > void OS::SignalCodeMovingGC() {} > > > > Modified: branches/2020Q3/www/node/files/patch-deps_v8_src_codegen_ppc_constants-ppc.h > > ============================================================================== > > --- branches/2020Q3/www/node/files/patch-deps_v8_src_codegen_ppc_constants-ppc.h Fri Sep 18 04:43:56 2020 (r548875) > > +++ branches/2020Q3/www/node/files/patch-deps_v8_src_codegen_ppc_constants-ppc.h Fri Sep 18 04:50:56 2020 (r548876) > > @@ -1,18 +1,18 @@ > > ---- deps/v8/src/codegen/ppc/constants-ppc.h.orig 2019-09-09 16:27:17 UTC > > +--- deps/v8/src/codegen/ppc/constants-ppc.h.orig 2020-06-30 17:49:17 UTC > > +++ deps/v8/src/codegen/ppc/constants-ppc.h > > -@@ -34,7 +34,7 @@ > > - #define ABI_PASSES_HANDLES_IN_REGS 0 > > +@@ -36,7 +36,7 @@ > > #endif > > > > --#if !V8_HOST_ARCH_PPC || !V8_TARGET_ARCH_PPC64 || V8_TARGET_LITTLE_ENDIAN || \ > > -+#if !V8_HOST_ARCH_PPC || !V8_TARGET_ARCH_PPC64 || \ > > - (defined(_CALL_ELF) && _CALL_ELF == 2) > > + #if !(V8_HOST_ARCH_PPC || V8_HOST_ARCH_PPC64) || !V8_TARGET_ARCH_PPC64 || \ > > +- V8_TARGET_LITTLE_ENDIAN || (defined(_CALL_ELF) && _CALL_ELF == 2) > > ++ (defined(_CALL_ELF) && _CALL_ELF == 2) > > #define ABI_RETURNS_OBJECT_PAIRS_IN_REGS 1 > > #else > > -@@ -43,7 +43,7 @@ > > + #define ABI_RETURNS_OBJECT_PAIRS_IN_REGS 0 > > +@@ -44,7 +44,7 @@ > > > > - #if !V8_HOST_ARCH_PPC || \ > > - (V8_TARGET_ARCH_PPC64 && \ > > + #if !(V8_HOST_ARCH_PPC || V8_HOST_ARCH_PPC64) || \ > > + (V8_TARGET_ARCH_PPC64 && \ > > - (V8_TARGET_LITTLE_ENDIAN || (defined(_CALL_ELF) && _CALL_ELF == 2))) > > + (defined(_CALL_ELF) && _CALL_ELF == 2)) > > #define ABI_CALL_VIA_IP 1 > > > > Modified: branches/2020Q3/www/node/files/patch-deps_v8_src_compiler_backend_instruction-selector.cc > > ============================================================================== > > --- branches/2020Q3/www/node/files/patch-deps_v8_src_compiler_backend_instruction-selector.cc Fri Sep 18 04:43:56 2020 (r548875) > > +++ branches/2020Q3/www/node/files/patch-deps_v8_src_compiler_backend_instruction-selector.cc Fri Sep 18 04:50:56 2020 (r548876) > > @@ -1,6 +1,6 @@ > > ---- deps/v8/src/compiler/backend/instruction-selector.cc.orig 2020-04-21 11:38:50 UTC > > +--- deps/v8/src/compiler/backend/instruction-selector.cc.orig 2020-07-20 22:18:45 UTC > > +++ deps/v8/src/compiler/backend/instruction-selector.cc > > -@@ -2783,7 +2783,7 @@ void InstructionSelector::VisitCall(Node* node, BasicB > > +@@ -2808,7 +2808,7 @@ void InstructionSelector::VisitCall(Node* node, BasicB > > switch (call_descriptor->kind()) { > > case CallDescriptor::kCallAddress: { > > int misc_field = static_cast(call_descriptor->ParameterCount()); > > > > Modified: branches/2020Q3/www/node/files/patch-deps_v8_src_compiler_backend_ppc_code-generator-ppc.cc > > ============================================================================== > > --- branches/2020Q3/www/node/files/patch-deps_v8_src_compiler_backend_ppc_code-generator-ppc.cc Fri Sep 18 04:43:56 2020 (r548875) > > +++ branches/2020Q3/www/node/files/patch-deps_v8_src_compiler_backend_ppc_code-generator-ppc.cc Fri Sep 18 04:50:56 2020 (r548876) > > @@ -1,9 +1,10 @@ > > ---- deps/v8/src/compiler/backend/ppc/code-generator-ppc.cc.orig 2020-04-21 11:38:50 UTC > > +--- deps/v8/src/compiler/backend/ppc/code-generator-ppc.cc.orig 2020-07-20 22:18:45 UTC > > +++ deps/v8/src/compiler/backend/ppc/code-generator-ppc.cc > > -@@ -1032,7 +1032,7 @@ CodeGenerator::CodeGenResult CodeGenerator::AssembleAr > > +@@ -1038,8 +1038,7 @@ CodeGenerator::CodeGenResult CodeGenerator::AssembleAr > > bool isWasmCapiFunction = > > linkage()->GetIncomingDescriptor()->IsWasmCapiFunction(); > > - int offset = 9 * kInstrSize; > > + int offset = (FLAG_enable_embedded_constant_pool ? 20 : 23) * kInstrSize; > > +- > > -#if defined(_AIX) > > +#if defined(_AIX) || (V8_TARGET_ARCH_PPC_BE && (!defined(_CALL_ELF) || _CALL_ELF == 1)) > > // AIX/PPC64BE Linux uses a function descriptor > > > > Modified: branches/2020Q3/www/node/files/patch-deps_v8_src_libsampler_sampler.cc > > ============================================================================== > > --- branches/2020Q3/www/node/files/patch-deps_v8_src_libsampler_sampler.cc Fri Sep 18 04:43:56 2020 (r548875) > > +++ branches/2020Q3/www/node/files/patch-deps_v8_src_libsampler_sampler.cc Fri Sep 18 04:50:56 2020 (r548876) > > @@ -1,6 +1,6 @@ > > ---- deps/v8/src/libsampler/sampler.cc.orig 2020-04-21 11:38:50 UTC > > +--- deps/v8/src/libsampler/sampler.cc.orig 2020-06-30 17:49:17 UTC > > +++ deps/v8/src/libsampler/sampler.cc > > -@@ -480,6 +480,10 @@ void SignalHandler::FillRegisterState(void* context, R > > +@@ -482,6 +482,10 @@ void SignalHandler::FillRegisterState(void* context, R > > state->pc = reinterpret_cast(mcontext.__gregs[_REG_PC]); > > state->sp = reinterpret_cast(mcontext.__gregs[_REG_SP]); > > state->fp = reinterpret_cast(mcontext.__gregs[_REG_FP]); > > > > Modified: branches/2020Q3/www/node/pkg-plist > > ============================================================================== > > --- branches/2020Q3/www/node/pkg-plist Fri Sep 18 04:43:56 2020 (r548875) > > +++ branches/2020Q3/www/node/pkg-plist Fri Sep 18 04:50:56 2020 (r548876) > > @@ -1,6 +1,30 @@ > > bin/node > > include/node/common.gypi > > include/node/config.gypi > > +include/node/cppgc/allocation.h > > +include/node/cppgc/common.h > > +include/node/cppgc/custom-space.h > > +include/node/cppgc/garbage-collected.h > > +include/node/cppgc/heap.h > > +include/node/cppgc/internal/accessors.h > > +include/node/cppgc/internal/api-constants.h > > +include/node/cppgc/internal/compiler-specific.h > > +include/node/cppgc/internal/finalizer-trait.h > > +include/node/cppgc/internal/gc-info.h > > +include/node/cppgc/internal/logging.h > > +include/node/cppgc/internal/persistent-node.h > > +include/node/cppgc/internal/pointer-policies.h > > +include/node/cppgc/internal/prefinalizer-handler.h > > +include/node/cppgc/liveness-broker.h > > +include/node/cppgc/macros.h > > +include/node/cppgc/member.h > > +include/node/cppgc/persistent.h > > +include/node/cppgc/platform.h > > +include/node/cppgc/prefinalizer.h > > +include/node/cppgc/source-location.h > > +include/node/cppgc/trace-trait.h > > +include/node/cppgc/type-traits.h > > +include/node/cppgc/visitor.h > > include/node/js_native_api.h > > include/node/js_native_api_types.h > > include/node/libplatform/libplatform.h > > @@ -122,6 +146,21 @@ include/node/node_version.h > > %%BUNDLED_SSL%%include/node/openssl/archs/darwin-i386-cc/no-asm/crypto/include/internal/dso_conf.h > > %%BUNDLED_SSL%%include/node/openssl/archs/darwin-i386-cc/no-asm/include/openssl/opensslconf.h > > %%BUNDLED_SSL%%include/node/openssl/archs/darwin-i386-cc/no-asm/include/progs.h > > +%%BUNDLED_SSL%%include/node/openssl/archs/darwin64-arm64-cc/asm/crypto/buildinf.h > > +%%BUNDLED_SSL%%include/node/openssl/archs/darwin64-arm64-cc/asm/crypto/include/internal/bn_conf.h > > +%%BUNDLED_SSL%%include/node/openssl/archs/darwin64-arm64-cc/asm/crypto/include/internal/dso_conf.h > > +%%BUNDLED_SSL%%include/node/openssl/archs/darwin64-arm64-cc/asm/include/openssl/opensslconf.h > > +%%BUNDLED_SSL%%include/node/openssl/archs/darwin64-arm64-cc/asm/include/progs.h > > +%%BUNDLED_SSL%%include/node/openssl/archs/darwin64-arm64-cc/asm_avx2/crypto/buildinf.h > > +%%BUNDLED_SSL%%include/node/openssl/archs/darwin64-arm64-cc/asm_avx2/crypto/include/internal/bn_conf.h > > +%%BUNDLED_SSL%%include/node/openssl/archs/darwin64-arm64-cc/asm_avx2/crypto/include/internal/dso_conf.h > > +%%BUNDLED_SSL%%include/node/openssl/archs/darwin64-arm64-cc/asm_avx2/include/openssl/opensslconf.h > > +%%BUNDLED_SSL%%include/node/openssl/archs/darwin64-arm64-cc/asm_avx2/include/progs.h > > +%%BUNDLED_SSL%%include/node/openssl/archs/darwin64-arm64-cc/no-asm/crypto/buildinf.h > > +%%BUNDLED_SSL%%include/node/openssl/archs/darwin64-arm64-cc/no-asm/crypto/include/internal/bn_conf.h > > +%%BUNDLED_SSL%%include/node/openssl/archs/darwin64-arm64-cc/no-asm/crypto/include/internal/dso_conf.h > > +%%BUNDLED_SSL%%include/node/openssl/archs/darwin64-arm64-cc/no-asm/include/openssl/opensslconf.h > > +%%BUNDLED_SSL%%include/node/openssl/archs/darwin64-arm64-cc/no-asm/include/progs.h > > %%BUNDLED_SSL%%include/node/openssl/archs/darwin64-x86_64-cc/asm/crypto/buildinf.h > > %%BUNDLED_SSL%%include/node/openssl/archs/darwin64-x86_64-cc/asm/crypto/include/internal/bn_conf.h > > %%BUNDLED_SSL%%include/node/openssl/archs/darwin64-x86_64-cc/asm/crypto/include/internal/dso_conf.h > > @@ -444,6 +483,7 @@ include/node/node_version.h > > %%BUNDLED_SSL%%include/node/openssl/x509err.h > > %%BUNDLED_SSL%%include/node/openssl/x509v3.h > > %%BUNDLED_SSL%%include/node/openssl/x509v3err.h > > +include/node/v8-fast-api-calls.h > > include/node/v8-internal.h > > include/node/v8-platform.h > > include/node/v8-profiler.h > > -- Dan Langille dan@langille.org From owner-svn-ports-branches@freebsd.org Fri Sep 18 22:18:48 2020 Return-Path: Delivered-To: svn-ports-branches@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 25A873F1B13; Fri, 18 Sep 2020 22:18:48 +0000 (UTC) (envelope-from gjb@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 "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4BtSsh0YrPz4DSF; Fri, 18 Sep 2020 22:18:48 +0000 (UTC) (envelope-from gjb@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 D175222194; Fri, 18 Sep 2020 22:18:47 +0000 (UTC) (envelope-from gjb@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 08IMIljd034798; Fri, 18 Sep 2020 22:18:47 GMT (envelope-from gjb@FreeBSD.org) Received: (from gjb@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 08IMIj3j034789; Fri, 18 Sep 2020 22:18:45 GMT (envelope-from gjb@FreeBSD.org) Message-Id: <202009182218.08IMIj3j034789@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: gjb set sender to gjb@FreeBSD.org using -f From: Glen Barber Date: Fri, 18 Sep 2020 22:18:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r548924 - in branches/2020Q3/misc/freebsd-release-manifests: . files/MANIFESTS X-SVN-Group: ports-branches X-SVN-Commit-Author: gjb X-SVN-Commit-Paths: in branches/2020Q3/misc/freebsd-release-manifests: . files/MANIFESTS X-SVN-Commit-Revision: 548924 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 18 Sep 2020 22:18:48 -0000 Author: gjb Date: Fri Sep 18 22:18:45 2020 New Revision: 548924 URL: https://svnweb.freebsd.org/changeset/ports/548924 Log: MFH: r548923 Add MANIFEST files for 12.2-BETA2. Prune files for 12.2-BETA1. Approved by: portmgr (implicit, re blanket) Sponsored by: Rubicon Communications, LLC (netgate.com) Added: branches/2020Q3/misc/freebsd-release-manifests/files/MANIFESTS/amd64-amd64-12.2-BETA2 - copied unchanged from r548923, head/misc/freebsd-release-manifests/files/MANIFESTS/amd64-amd64-12.2-BETA2 branches/2020Q3/misc/freebsd-release-manifests/files/MANIFESTS/arm64-aarch64-12.2-BETA2 - copied unchanged from r548923, head/misc/freebsd-release-manifests/files/MANIFESTS/arm64-aarch64-12.2-BETA2 branches/2020Q3/misc/freebsd-release-manifests/files/MANIFESTS/i386-i386-12.2-BETA2 - copied unchanged from r548923, head/misc/freebsd-release-manifests/files/MANIFESTS/i386-i386-12.2-BETA2 branches/2020Q3/misc/freebsd-release-manifests/files/MANIFESTS/powerpc-powerpc-12.2-BETA2 - copied unchanged from r548923, head/misc/freebsd-release-manifests/files/MANIFESTS/powerpc-powerpc-12.2-BETA2 branches/2020Q3/misc/freebsd-release-manifests/files/MANIFESTS/powerpc-powerpc64-12.2-BETA2 - copied unchanged from r548923, head/misc/freebsd-release-manifests/files/MANIFESTS/powerpc-powerpc64-12.2-BETA2 branches/2020Q3/misc/freebsd-release-manifests/files/MANIFESTS/powerpc-powerpcspe-12.2-BETA2 - copied unchanged from r548923, head/misc/freebsd-release-manifests/files/MANIFESTS/powerpc-powerpcspe-12.2-BETA2 branches/2020Q3/misc/freebsd-release-manifests/files/MANIFESTS/sparc64-sparc64-12.2-BETA2 - copied unchanged from r548923, head/misc/freebsd-release-manifests/files/MANIFESTS/sparc64-sparc64-12.2-BETA2 Deleted: branches/2020Q3/misc/freebsd-release-manifests/files/MANIFESTS/amd64-amd64-12.2-BETA1 branches/2020Q3/misc/freebsd-release-manifests/files/MANIFESTS/arm64-aarch64-12.2-BETA1 branches/2020Q3/misc/freebsd-release-manifests/files/MANIFESTS/i386-i386-12.2-BETA1 branches/2020Q3/misc/freebsd-release-manifests/files/MANIFESTS/powerpc-powerpc-12.2-BETA1 branches/2020Q3/misc/freebsd-release-manifests/files/MANIFESTS/powerpc-powerpc64-12.2-BETA1 branches/2020Q3/misc/freebsd-release-manifests/files/MANIFESTS/powerpc-powerpcspe-12.2-BETA1 branches/2020Q3/misc/freebsd-release-manifests/files/MANIFESTS/sparc64-sparc64-12.2-BETA1 Modified: branches/2020Q3/misc/freebsd-release-manifests/Makefile branches/2020Q3/misc/freebsd-release-manifests/pkg-plist Directory Properties: branches/2020Q3/ (props changed) Modified: branches/2020Q3/misc/freebsd-release-manifests/Makefile ============================================================================== --- branches/2020Q3/misc/freebsd-release-manifests/Makefile Fri Sep 18 22:17:31 2020 (r548923) +++ branches/2020Q3/misc/freebsd-release-manifests/Makefile Fri Sep 18 22:18:45 2020 (r548924) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= freebsd-release-manifests -DISTVERSION= 20200912 +DISTVERSION= 20200918 PORTREVISION= 0 CATEGORIES= misc MASTER_SITES= # Copied: branches/2020Q3/misc/freebsd-release-manifests/files/MANIFESTS/amd64-amd64-12.2-BETA2 (from r548923, head/misc/freebsd-release-manifests/files/MANIFESTS/amd64-amd64-12.2-BETA2) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2020Q3/misc/freebsd-release-manifests/files/MANIFESTS/amd64-amd64-12.2-BETA2 Fri Sep 18 22:18:45 2020 (r548924, copy of r548923, head/misc/freebsd-release-manifests/files/MANIFESTS/amd64-amd64-12.2-BETA2) @@ -0,0 +1,9 @@ +base-dbg.txz f95eaa329e113a7698b794ffeebaa35ecc1ba3ea3b2985e75258aacdbf9a1f92 1649 base_dbg "Base system (Debugging)" off +base.txz fc181c19da6f5f9e11f31561732d6ed1ef168951f5da1fad232faeafdd3b48c1 26177 base "Base system (MANDATORY)" on +kernel-dbg.txz 2cd4faea7280bb94d1d4fad563bccb5d7758397c2595f6a15c7a9a08ffe441ec 895 kernel_dbg "Kernel (Debugging)" on +kernel.txz 83406fae459b4eb76ca7078a3dd7350eb749a79f57663c113ddbebf3fe17f096 909 kernel "Kernel (MANDATORY)" on +lib32-dbg.txz f090cdcf4863856b9e7f96b9c9dee3f51f76e276668cf45df2b0a2b6a0ec1e9b 243 lib32_dbg "32-bit compatibility libraries (Debugging)" off +lib32.txz f426e9c3b90cedaef774cdfb151166b43960593149538927b07c5a707aee3aee 1009 lib32 "32-bit compatibility libraries" on +ports.txz a70f0462dcd0e566687ba0a56af5de765324f6c3a2b0d03c022a6be410142fe6 177514 ports "Ports tree" off +src.txz 3dc32898902676bce32feabbf5dc78508ac1ac01db2a34fb6fcda2286349dba7 89271 src "System source tree" off +tests.txz 20a58e3d56db653d947154058816fcb56272354ffc6a32caa497ec006e4a7881 6075 tests "Test suite" off Copied: branches/2020Q3/misc/freebsd-release-manifests/files/MANIFESTS/arm64-aarch64-12.2-BETA2 (from r548923, head/misc/freebsd-release-manifests/files/MANIFESTS/arm64-aarch64-12.2-BETA2) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2020Q3/misc/freebsd-release-manifests/files/MANIFESTS/arm64-aarch64-12.2-BETA2 Fri Sep 18 22:18:45 2020 (r548924, copy of r548923, head/misc/freebsd-release-manifests/files/MANIFESTS/arm64-aarch64-12.2-BETA2) @@ -0,0 +1,7 @@ +base-dbg.txz d41eb83d1acf8b1e42e0f5e26c374f75c2d7c0f96e6833b0bc03b001443c76f1 1618 base_dbg "Base system (Debugging)" off +base.txz 7a4c81ee49889767972ac30fdaac3b8770ee3a7c2003878932fde26082ea11a3 25849 base "Base system (MANDATORY)" on +kernel-dbg.txz aa0ee8bff9998d7f1931896f68d398fb61103e116c9af1878e84292bc89f3be6 626 kernel_dbg "Kernel (Debugging)" on +kernel.txz 669495776bd49c1e501991867da07366d6d940987110270eed552722639afb07 666 kernel "Kernel (MANDATORY)" on +ports.txz a70f0462dcd0e566687ba0a56af5de765324f6c3a2b0d03c022a6be410142fe6 177514 ports "Ports tree" off +src.txz 3dc32898902676bce32feabbf5dc78508ac1ac01db2a34fb6fcda2286349dba7 89271 src "System source tree" off +tests.txz 2a7bb5d8caedeb228f44a77a41a49c5bbe51d15500df7b061b55cc90572f7a64 6069 tests "Test suite" off Copied: branches/2020Q3/misc/freebsd-release-manifests/files/MANIFESTS/i386-i386-12.2-BETA2 (from r548923, head/misc/freebsd-release-manifests/files/MANIFESTS/i386-i386-12.2-BETA2) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2020Q3/misc/freebsd-release-manifests/files/MANIFESTS/i386-i386-12.2-BETA2 Fri Sep 18 22:18:45 2020 (r548924, copy of r548923, head/misc/freebsd-release-manifests/files/MANIFESTS/i386-i386-12.2-BETA2) @@ -0,0 +1,7 @@ +base-dbg.txz e03e0a98cec143e79e32e3f80f5d1c2b5f28865af86fc7e9214167ff521ee663 1647 base_dbg "Base system (Debugging)" off +base.txz 9d81a4c05567349883a0afd71640b95ae903976089a6d9b57a32e1a78e045e76 26168 base "Base system (MANDATORY)" on +kernel-dbg.txz 684d27228e88d925afe9348761677ecad547eda442a6b72d520651eba908b179 886 kernel_dbg "Kernel (Debugging)" on +kernel.txz d05ad6d2784c57dda372177b255a21266b6c74ade3bc4076b99fce262b6ce041 899 kernel "Kernel (MANDATORY)" on +ports.txz a70f0462dcd0e566687ba0a56af5de765324f6c3a2b0d03c022a6be410142fe6 177514 ports "Ports tree" off +src.txz 3dc32898902676bce32feabbf5dc78508ac1ac01db2a34fb6fcda2286349dba7 89271 src "System source tree" off +tests.txz 9bfa5e532fd958c711caf0fbebb99228fdc42c51fe194d54d86962bb08cfb0a6 6075 tests "Test suite" off Copied: branches/2020Q3/misc/freebsd-release-manifests/files/MANIFESTS/powerpc-powerpc-12.2-BETA2 (from r548923, head/misc/freebsd-release-manifests/files/MANIFESTS/powerpc-powerpc-12.2-BETA2) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2020Q3/misc/freebsd-release-manifests/files/MANIFESTS/powerpc-powerpc-12.2-BETA2 Fri Sep 18 22:18:45 2020 (r548924, copy of r548923, head/misc/freebsd-release-manifests/files/MANIFESTS/powerpc-powerpc-12.2-BETA2) @@ -0,0 +1,7 @@ +base-dbg.txz f0aa15ac0c4b3e00a9f02cdd66b94c4a01ab7cab48ffa413e052099acb172c24 1604 base_dbg "Base system (Debugging)" off +base.txz bf584af3f81edd6f17b684e446f7c2d8da463bb905c15394fbfe6ff33d68e23a 25847 base "Base system (MANDATORY)" on +kernel-dbg.txz 1f8577d684fbf909675698f5b024bde6c50c527c2264ad2b74ecae94be4f8f77 609 kernel_dbg "Kernel (Debugging)" on +kernel.txz 02e3d24a6523a9fb4539908eac74f6e72e17fe871b951ddfd12a6b1b6ce1af63 623 kernel "Kernel (MANDATORY)" on +ports.txz a70f0462dcd0e566687ba0a56af5de765324f6c3a2b0d03c022a6be410142fe6 177514 ports "Ports tree" off +src.txz 3dc32898902676bce32feabbf5dc78508ac1ac01db2a34fb6fcda2286349dba7 89271 src "System source tree" off +tests.txz 417a3d55b0a4fbd14e6317f18d87459211e01df447654a9002f756596d8f3e36 5951 tests "Test suite" off Copied: branches/2020Q3/misc/freebsd-release-manifests/files/MANIFESTS/powerpc-powerpc64-12.2-BETA2 (from r548923, head/misc/freebsd-release-manifests/files/MANIFESTS/powerpc-powerpc64-12.2-BETA2) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2020Q3/misc/freebsd-release-manifests/files/MANIFESTS/powerpc-powerpc64-12.2-BETA2 Fri Sep 18 22:18:45 2020 (r548924, copy of r548923, head/misc/freebsd-release-manifests/files/MANIFESTS/powerpc-powerpc64-12.2-BETA2) @@ -0,0 +1,9 @@ +base-dbg.txz 82d491fdce824e313be1165806c683c2b512b73ed57e5fa8cdafb890f469396e 1612 base_dbg "Base system (Debugging)" off +base.txz 61b1dc46b9a8090511ff619094fd72a6c152a23ef48c601f842db56c77d88060 25875 base "Base system (MANDATORY)" on +kernel-dbg.txz dba7a0c57a3e56e16944c6da5479c7d95a34bf2c5b1de48f38d893d0f31cb817 706 kernel_dbg "Kernel (Debugging)" on +kernel.txz dc84a26e83a8ee53e48c57f64532c50bdfea47657e2f98a1cfc613bff2a322e8 720 kernel "Kernel (MANDATORY)" on +lib32-dbg.txz 23119af8543783ff9520660a1dfc4e3c7ad658e51c1b2d32717264d9b257cc13 234 lib32_dbg "32-bit compatibility libraries (Debugging)" off +lib32.txz 9e3da87d369696ac4d168685c1cfd4a57368086d8894c694717d9dbfecd7ded7 970 lib32 "32-bit compatibility libraries" on +ports.txz a70f0462dcd0e566687ba0a56af5de765324f6c3a2b0d03c022a6be410142fe6 177514 ports "Ports tree" off +src.txz 3dc32898902676bce32feabbf5dc78508ac1ac01db2a34fb6fcda2286349dba7 89271 src "System source tree" off +tests.txz 295405a46de8b4096380469422c2200156938b67692a35a94178f86be47b6195 5954 tests "Test suite" off Copied: branches/2020Q3/misc/freebsd-release-manifests/files/MANIFESTS/powerpc-powerpcspe-12.2-BETA2 (from r548923, head/misc/freebsd-release-manifests/files/MANIFESTS/powerpc-powerpcspe-12.2-BETA2) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2020Q3/misc/freebsd-release-manifests/files/MANIFESTS/powerpc-powerpcspe-12.2-BETA2 Fri Sep 18 22:18:45 2020 (r548924, copy of r548923, head/misc/freebsd-release-manifests/files/MANIFESTS/powerpc-powerpcspe-12.2-BETA2) @@ -0,0 +1,7 @@ +base-dbg.txz 4f5cd16ed856ce086df271d65b872c2ca73f9d23c2b94df7d2e757401fbe9dc3 1603 base_dbg "Base system (Debugging)" off +base.txz a500e73bce2bfdc254de65db9182e19cbc18cfe74f4ad08e3222aecb2c4b6ec0 25842 base "Base system (MANDATORY)" on +kernel-dbg.txz a6115fc739db877022f60093daab0c2ede169510d52a71516e7181e688190cfb 610 kernel_dbg "Kernel (Debugging)" on +kernel.txz 8bbe5577e5ba4a83aeb51c9c62cd9baa62bfd8e06f3cdece07ec7df84ecbe5bc 624 kernel "Kernel (MANDATORY)" on +ports.txz a70f0462dcd0e566687ba0a56af5de765324f6c3a2b0d03c022a6be410142fe6 177514 ports "Ports tree" off +src.txz 3dc32898902676bce32feabbf5dc78508ac1ac01db2a34fb6fcda2286349dba7 89271 src "System source tree" off +tests.txz 62892dbc47d9afe3570a252794230a1d089975ae9e4a85505049d9674b0134f8 5951 tests "Test suite" off Copied: branches/2020Q3/misc/freebsd-release-manifests/files/MANIFESTS/sparc64-sparc64-12.2-BETA2 (from r548923, head/misc/freebsd-release-manifests/files/MANIFESTS/sparc64-sparc64-12.2-BETA2) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2020Q3/misc/freebsd-release-manifests/files/MANIFESTS/sparc64-sparc64-12.2-BETA2 Fri Sep 18 22:18:45 2020 (r548924, copy of r548923, head/misc/freebsd-release-manifests/files/MANIFESTS/sparc64-sparc64-12.2-BETA2) @@ -0,0 +1,7 @@ +base-dbg.txz c4737f8a5aa272c28aa9667f9fee57bc7562ada68bbc70bb986550cf4230056d 1603 base_dbg "Base system (Debugging)" off +base.txz 138f43f000adbb6d3bc9fe6604dceeb63c8b45f1ec4c5e8bd85964fa06c0d9d2 25780 base "Base system (MANDATORY)" on +kernel-dbg.txz 84548a7553c873ad9875ad65d1a0d8ebd6648e312b9d46364778d4a46094df1b 592 kernel_dbg "Kernel (Debugging)" on +kernel.txz 80a1cde53f61cb5c80610ca65cb3053bfc38d2991ac62b7c0c326daef6230816 604 kernel "Kernel (MANDATORY)" on +ports.txz a70f0462dcd0e566687ba0a56af5de765324f6c3a2b0d03c022a6be410142fe6 177514 ports "Ports tree" off +src.txz 3dc32898902676bce32feabbf5dc78508ac1ac01db2a34fb6fcda2286349dba7 89271 src "System source tree" off +tests.txz 99464c728d8e29a2d331d7e821f9cb7a1269fd1cefc08cd5387c674caed89af2 5947 tests "Test suite" off Modified: branches/2020Q3/misc/freebsd-release-manifests/pkg-plist ============================================================================== --- branches/2020Q3/misc/freebsd-release-manifests/pkg-plist Fri Sep 18 22:17:31 2020 (r548923) +++ branches/2020Q3/misc/freebsd-release-manifests/pkg-plist Fri Sep 18 22:18:45 2020 (r548924) @@ -94,10 +94,10 @@ %%DATADIR%%/MANIFESTS/powerpc-powerpc-11.4-RELEASE %%DATADIR%%/MANIFESTS/powerpc-powerpc64-11.4-RELEASE %%DATADIR%%/MANIFESTS/sparc64-sparc64-11.4-RELEASE -%%DATADIR%%/MANIFESTS/amd64-amd64-12.2-BETA1 -%%DATADIR%%/MANIFESTS/arm64-aarch64-12.2-BETA1 -%%DATADIR%%/MANIFESTS/i386-i386-12.2-BETA1 -%%DATADIR%%/MANIFESTS/powerpc-powerpc-12.2-BETA1 -%%DATADIR%%/MANIFESTS/powerpc-powerpc64-12.2-BETA1 -%%DATADIR%%/MANIFESTS/powerpc-powerpcspe-12.2-BETA1 -%%DATADIR%%/MANIFESTS/sparc64-sparc64-12.2-BETA1 +%%DATADIR%%/MANIFESTS/amd64-amd64-12.2-BETA2 +%%DATADIR%%/MANIFESTS/arm64-aarch64-12.2-BETA2 +%%DATADIR%%/MANIFESTS/i386-i386-12.2-BETA2 +%%DATADIR%%/MANIFESTS/powerpc-powerpc-12.2-BETA2 +%%DATADIR%%/MANIFESTS/powerpc-powerpc64-12.2-BETA2 +%%DATADIR%%/MANIFESTS/powerpc-powerpcspe-12.2-BETA2 +%%DATADIR%%/MANIFESTS/sparc64-sparc64-12.2-BETA2 From owner-svn-ports-branches@freebsd.org Sat Sep 19 01:22:05 2020 Return-Path: Delivered-To: svn-ports-branches@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 276E83F6A63; Sat, 19 Sep 2020 01:22:05 +0000 (UTC) (envelope-from dvl@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 "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4BtXx90HJkz4QDG; Sat, 19 Sep 2020 01:22:05 +0000 (UTC) (envelope-from dvl@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 E180624346; Sat, 19 Sep 2020 01:22:04 +0000 (UTC) (envelope-from dvl@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 08J1M4RQ050413; Sat, 19 Sep 2020 01:22:04 GMT (envelope-from dvl@FreeBSD.org) Received: (from dvl@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 08J1M4tV050411; Sat, 19 Sep 2020 01:22:04 GMT (envelope-from dvl@FreeBSD.org) Message-Id: <202009190122.08J1M4tV050411@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dvl set sender to dvl@FreeBSD.org using -f From: Dan Langille Date: Sat, 19 Sep 2020 01:22:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r548933 - branches/2020Q3/archivers/brotli X-SVN-Group: ports-branches X-SVN-Commit-Author: dvl X-SVN-Commit-Paths: branches/2020Q3/archivers/brotli X-SVN-Commit-Revision: 548933 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 19 Sep 2020 01:22:05 -0000 Author: dvl Date: Sat Sep 19 01:22:04 2020 New Revision: 548933 URL: https://svnweb.freebsd.org/changeset/ports/548933 Log: MFH: r546350 Update from 1.0.7 to 1.0.9. Please consider updating brotli to version 1.0.9 (latest). Version 1.0.9 contains a fix to "integer overflow" problem. This happens when "one-shot" decoding API is used (or input chunk for streaming API is not limited), input size (chunk size) is larger than 2GiB, and input contains uncompressed blocks. After the overflow happens, `memcpy` is invoked with a gigantic `num` value, that will likely cause the crash. Approved by: ports-secteam (fluffy) Modified: branches/2020Q3/archivers/brotli/Makefile branches/2020Q3/archivers/brotli/distinfo Directory Properties: branches/2020Q3/ (props changed) Modified: branches/2020Q3/archivers/brotli/Makefile ============================================================================== --- branches/2020Q3/archivers/brotli/Makefile Sat Sep 19 01:20:52 2020 (r548932) +++ branches/2020Q3/archivers/brotli/Makefile Sat Sep 19 01:22:04 2020 (r548933) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= brotli -PORTVERSION= 1.0.7 -PORTREVISION= 2 +PORTVERSION= 1.0.9 DISTVERSIONPREFIX= v PORTEPOCH= 1 CATEGORIES= archivers devel Modified: branches/2020Q3/archivers/brotli/distinfo ============================================================================== --- branches/2020Q3/archivers/brotli/distinfo Sat Sep 19 01:20:52 2020 (r548932) +++ branches/2020Q3/archivers/brotli/distinfo Sat Sep 19 01:22:04 2020 (r548933) @@ -1,3 +1,3 @@ -TIMESTAMP = 1540423662 -SHA256 (google-brotli-v1.0.7_GH0.tar.gz) = 4c61bfb0faca87219ea587326c467b95acb25555b53d1a421ffa3c8a9296ee2c -SIZE (google-brotli-v1.0.7_GH0.tar.gz) = 23827908 +TIMESTAMP = 1598538126 +SHA256 (google-brotli-v1.0.9_GH0.tar.gz) = f9e8d81d0405ba66d181529af42a3354f838c939095ff99930da6aa9cdf6fe46 +SIZE (google-brotli-v1.0.9_GH0.tar.gz) = 486984 From owner-svn-ports-branches@freebsd.org Sat Sep 19 01:35:48 2020 Return-Path: Delivered-To: svn-ports-branches@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 7A4EA3F717D; Sat, 19 Sep 2020 01:35:48 +0000 (UTC) (envelope-from dan@langille.org) Received: from out1-smtp.messagingengine.com (out1-smtp.messagingengine.com [66.111.4.25]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4BtYDz18fBz4QY1; Sat, 19 Sep 2020 01:35:46 +0000 (UTC) (envelope-from dan@langille.org) Received: from compute2.internal (compute2.nyi.internal [10.202.2.42]) by mailout.nyi.internal (Postfix) with ESMTP id 4639F5C007C; Fri, 18 Sep 2020 21:35:45 -0400 (EDT) Received: from mailfrontend2 ([10.202.2.163]) by compute2.internal (MEProxy); Fri, 18 Sep 2020 21:35:45 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=langille.org; h= from:message-id:content-type:mime-version:subject:date :in-reply-to:cc:to:references; s=fm2; bh=KCzNruLlxqfa53Uy3RivkVV cwxK+Z0V0T35dJ6uRkdo=; b=JI3YY52feVH0y/S8W6zoKHcWW88yy6yKGJh/WzQ 8hojFUJHD95uCkfOIhJbV5YQEttg+wZhlbNiChNldakZr3C51eGi+3XY9G/TCzWT vat7W4E1HPtnuwKPNq2BBjilu8gwDamoBxudpsanYoJYFML77PG34lUTak06M79S +ikiSoJPxTLDVEx2IUWUJ0Q23n0Gc3tzSACEOce0isyR49LJDR0G0rN5M/Lo1NFo RNKdgZZDxHMaj3uEIhjoxZkq9KoZuhk5bYRltNTngC9OoEiLflwRZWmaJX03plYb +z7c/Goq514sQn8gBnG9zd9m43dXbLWV+JCtOd8jQ6Cx/KA== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:content-type:date:from:in-reply-to :message-id:mime-version:references:subject:to:x-me-proxy :x-me-proxy:x-me-sender:x-me-sender:x-sasl-enc; s=fm3; bh=KCzNru Llxqfa53Uy3RivkVVcwxK+Z0V0T35dJ6uRkdo=; b=lGegPO9I/EBf4UwwiVMErd sWw28XKOVw5xr0oAdlwjASZ31A6rnAFeeYU3mKCshBlMlxM4YggEYYnncE7m3HRd dcFN/NAI/1uG/rnBn4HTTgv1W7nSHJcac2PjCE8UpEl0L0pdTNVLC8PaQzu/5LgL YDJPRNha1wkvIhHeOQzCPAZjo0MKNZG5OoMKrKuIKNqt3Xso8yFvk0hzfYlCL7wz lr4IRKYYjCGZO5xh/5Y6DAk48XQCe4eT8OVAJCSCR+REI89IMLKK0iYeBtirmi7h q4RBEn3rfUtao0133MCRK2uJrI/siTOplsA1qjCfc1xW7cMwipibDepLhXIKDYqg == X-ME-Sender: X-ME-Proxy-Cause: gggruggvucftvghtrhhoucdtuddrgedujedrtdejgdegjecutefuodetggdotefrodftvf curfhrohhfihhlvgemucfhrghsthforghilhdpqfgfvfdpuffrtefokffrpgfnqfghnecu uegrihhlohhuthemuceftddtnecusecvtfgvtghiphhivghnthhsucdlqddutddtmdenfg hrlhcuvffnffculdduhedmnecujfgurhephffktgggufffjgfvfhfosegrtdhmrehhtddv necuhfhrohhmpeffrghnucfnrghnghhilhhlvgcuoegurghnsehlrghnghhilhhlvgdroh hrgheqnecuggftrfgrthhtvghrnhepvdeiffduieefueegtdekhfdvtdeiuddtleehtdeh vdekkeevieetgffgvdehtefgnecuffhomhgrihhnpehfrhgvvggsshgurdhorhhgpdhnoh guvghjshdrohhrghdpphgrthgthhdquggvphhspghvkegpshhrtggpsggrshgvpghplhgr thhfohhrmhgpphhlrghtfhhorhhmqdhfrhgvvggsshgurdgttgdpphgrthgthhdquggvph hspghvkegpshhrtggptghomhhpihhlvghrpggsrggtkhgvnhgupghinhhsthhruhgtthhi ohhnqdhsvghlvggtthhorhdrtggtpdhprghttghhqdguvghpshgpvhekpghsrhgtpggtoh hmphhilhgvrhgpsggrtghkvghnuggpphhptggptghouggvqdhgvghnvghrrghtohhrqdhp phgtrdgttgdpphgrthgthhdquggvphhspghvkegpshhrtggplhhisghsrghmphhlvghrpg hsrghmphhlvghrrdgttgdphhhtthhpvddrshhopdhplhgrthhfohhrmhdqfhhrvggvsghs ugdrtggtpdhinhhsthhruhgtthhiohhnqdhsvghlvggtthhorhdrtggtpdgtohguvgdqgh gvnhgvrhgrthhorhdqphhptgdrtggtpdhsrghmphhlvghrrdgttgenucfkphepudejgedr uddtiedruddvkedrvddvvdenucevlhhushhtvghrufhiiigvpedtnecurfgrrhgrmhepmh grihhlfhhrohhmpegurghnsehlrghnghhilhhlvgdrohhrgh X-ME-Proxy: Received: from [192.168.1.236] (cpe-174-106-128-222.ec.res.rr.com [174.106.128.222]) by mail.messagingengine.com (Postfix) with ESMTPA id 0D2E6306467E; Fri, 18 Sep 2020 21:35:43 -0400 (EDT) From: Dan Langille Message-Id: Mime-Version: 1.0 (Mac OS X Mail 13.4 \(3608.120.23.2.1\)) Subject: Re: svn commit: r548876 - in branches/2020Q3/www/node: . files Date: Fri, 18 Sep 2020 21:35:42 -0400 In-Reply-To: Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org To: "Bradley T. Hughes" References: <202009180450.08I4ouW4090425@repo.freebsd.org> <482CEC48-E724-4B59-AF30-1C3855D9B7F0@langille.org> X-Mailer: Apple Mail (2.3608.120.23.2.1) X-Rspamd-Queue-Id: 4BtYDz18fBz4QY1 X-Spamd-Bar: --- Authentication-Results: mx1.freebsd.org; dkim=pass header.d=langille.org header.s=fm2 header.b=JI3YY52f; dkim=pass header.d=messagingengine.com header.s=fm3 header.b=lGegPO9I; dmarc=pass (policy=none) header.from=langille.org; spf=pass (mx1.freebsd.org: domain of dan@langille.org designates 66.111.4.25 as permitted sender) smtp.mailfrom=dan@langille.org X-Spamd-Result: default: False [-3.02 / 15.00]; RCVD_VIA_SMTP_AUTH(0.00)[]; TO_DN_SOME(0.00)[]; MV_CASE(0.50)[]; R_SPF_ALLOW(-0.20)[+ip4:66.111.4.25]; RWL_MAILSPIKE_GOOD(0.00)[66.111.4.25:from]; RCVD_COUNT_THREE(0.00)[4]; DKIM_TRACE(0.00)[langille.org:+,messagingengine.com:+]; DMARC_POLICY_ALLOW(-0.50)[langille.org,none]; NEURAL_HAM_SHORT(-0.34)[-0.342]; RECEIVED_SPAMHAUS_PBL(0.00)[174.106.128.222:received]; FROM_EQ_ENVFROM(0.00)[]; MIME_TRACE(0.00)[0:+,1:+,2:~]; ASN(0.00)[asn:11403, ipnet:66.111.4.0/24, country:US]; RCVD_TLS_LAST(0.00)[]; MID_RHS_MATCH_FROM(0.00)[]; RCVD_IN_DNSWL_LOW(-0.10)[66.111.4.25:from]; ARC_NA(0.00)[]; NEURAL_HAM_MEDIUM(-1.00)[-1.000]; R_DKIM_ALLOW(-0.20)[langille.org:s=fm2,messagingengine.com:s=fm3]; FREEFALL_USER(0.00)[dan]; FROM_HAS_DN(0.00)[]; RCPT_COUNT_THREE(0.00)[4]; TO_MATCH_ENVRCPT_ALL(0.00)[]; NEURAL_HAM_LONG(-1.07)[-1.073]; MIME_GOOD(-0.10)[multipart/alternative,text/plain]; MAILMAN_DEST(0.00)[svn-ports-all,svn-ports-branches] Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.33 X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 19 Sep 2020 01:35:48 -0000 On Sep 18, 2020, at 12:06 PM, Dan Langille wrote: >=20 > On Fri, Sep 18, 2020, at 11:46 AM, Dan Langille wrote: >> www/node will not build on 2020Q3 because of a BUILD_DEPENDS which = can=20 >> never be met. >=20 > I have asked permission for the recent archivers/brotli update to = 1.0.9 to be MFH seeing as it was security related: = https://svnweb.freebsd.org/ports?view=3Drevision&revision=3D546350 >=20 > I see now that I did not cc the lists on that email. Sorry about = that. Permission received. r546350 has been mfh into 2020Q3. However, there are other dependencies which are not met on 2020Q3: devel/libuv >=3D 1.39 It appears this commit was never tested on 2020Q3 before being back = ported. I can't spend more time on this at present, but we've gone from a = working but vuln port to a non-compiling port. It should be reverted. >=20 >>=20 >> On 2020Q3, brotil is 1.0.7 - see below. >>=20 >>> On Sep 18, 2020, at 12:50 AM, Bradley T. Hughes = wrote: >>>=20 >>> Author: bhughes >>> Date: Fri Sep 18 04:50:56 2020 >>> New Revision: 548876 >>> URL: https://svnweb.freebsd.org/changeset/ports/548876 >>>=20 >>> Log: >>> MFH: r541372 r543678 r543682 r545547 r545560 r547570 r548046 r548047 = r548707 r548802 >>>=20 >>> www/node: Update 14.4.0 -> 14.5.0 >>>=20 >>> https://nodejs.org/en/blog/release/v14.5.0/ >>>=20 >>> Refresh patches with `make makepatch`, and adapt them to the changes >>> from upstream due to the V8 upgrade. >>>=20 >>> Sponsored by: Miles AS >>>=20 >>> www/node10: Update 10.21.0 -> 10.22.0 >>>=20 >>> https://nodejs.org/en/blog/release/v10.22.0/ >>>=20 >>> Sponsored by: Miles AS >>>=20 >>> www/node: Update 14.6.0 -> 14.6.0_1 >>>=20 >>> Bump PORTREVISION after updating the minimum version requirements = for >>> libuv, libnghttp2, and libcares. >>>=20 >>> The previous change for www/node erroneously mentioned the most = recent >>> www/node10 update. The correct changelog should have read: >>>=20 >>> www/node: Update 14.5.0 -> 14.6.0 >>>=20 >>> https://nodejs.org/en/blog/release/v14.6.0/ >>>=20 >>> Sponsored by: Miles AS >>>=20 >>> www/node: Update 14.6.0_1 -> 14.7.0 >>>=20 >>> https://nodejs.org/en/blog/release/v14.7.0/ >>>=20 >>> Sponsored by: Miles AS >>>=20 >>> www/node: Update 14.7.0 -> 14.8.0 >>>=20 >>> https://nodejs.org/en/blog/release/v14.8.0/ >>>=20 >>> Sponsored by: Miles AS >>>=20 >>> www/node: Update 14.8.0 -> 14.9.0 >>>=20 >>> https://nodejs.org/en/blog/release/v14.9.0/ >>>=20 >>> Sponsored by: Miles AS >>>=20 >>> www/node: Update 14.9.0 -> 14.10.0 >>>=20 >>> https://nodejs.org/en/blog/release/v14.10.0/ >>>=20 >>> While here, refresh patches with `make makepatch`. >>>=20 >>> Sponsored by: Miles AS >>>=20 >>> www/node: add dependency on archivers/brotli >>>=20 >>> ... instead of building the version bundled with Node.js. Bump >>> PORTREVISION due to the new dependency. >>>=20 >>> Sponsored by: Miles AS >>>=20 >>> www/node: Update 14.10.0_1 -> 14.10.1 >>>=20 >>> https://nodejs.org/en/blog/release/v14.10.1/ >>>=20 >>> Sponsored by: Miles AS >>>=20 >>> www/node: Update 14.10.1 -> 14.11.0 >>>=20 >>> https://nodejs.org/en/blog/release/v14.11.0/ >>>=20 >>> This is a security release. See >>> = https://nodejs.org/en/blog/vulnerability/september-2020-security-releases/= >>>=20 >>> Security: 4ca5894c-f7f1-11ea-8ff8-0022489ad614 >>> Sponsored by: Miles AS >>>=20 >>> Approved by: ports-secteam (fluffy) >>>=20 >>> Modified: >>> branches/2020Q3/www/node/Makefile >>> branches/2020Q3/www/node/distinfo >>> = branches/2020Q3/www/node/files/patch-deps_openssl_openssl-cl__no__asm.gypi= >>> = branches/2020Q3/www/node/files/patch-deps_openssl_openssl__no__asm.gypi >>> = branches/2020Q3/www/node/files/patch-deps_v8_src_base_platform_platform-fr= eebsd.cc >>> = branches/2020Q3/www/node/files/patch-deps_v8_src_codegen_ppc_constants-ppc= .h >>> = branches/2020Q3/www/node/files/patch-deps_v8_src_compiler_backend_instruct= ion-selector.cc >>> = branches/2020Q3/www/node/files/patch-deps_v8_src_compiler_backend_ppc_code= -generator-ppc.cc >>> = branches/2020Q3/www/node/files/patch-deps_v8_src_libsampler_sampler.cc >>> branches/2020Q3/www/node/pkg-plist >>> Directory Properties: >>> branches/2020Q3/ (props changed) >>>=20 >>> Modified: branches/2020Q3/www/node/Makefile >>> = =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D >>> --- branches/2020Q3/www/node/Makefile Fri Sep 18 04:43:56 2020 = (r548875) >>> +++ branches/2020Q3/www/node/Makefile Fri Sep 18 04:50:56 2020 = (r548876) >>> @@ -1,7 +1,7 @@ >>> # $FreeBSD$ >>>=20 >>> PORTNAME=3D node >>> -PORTVERSION=3D 14.4.0 >>> +PORTVERSION=3D 14.11.0 >>> DISTVERSIONPREFIX=3D v >>> CATEGORIES=3D www >>> MASTER_SITES=3D http://nodejs.org/dist/v${PORTVERSION}/ >>> @@ -38,7 +38,7 @@ BUNDLED_SSL_CONFIGURE_OFF=3D --shared-openssl = --openssl- >>> BUNDLED_SSL_RUN_DEPENDS_OFF=3D = ca_root_nss>=3D0:security/ca_root_nss >>>=20 >>> NLS_CONFIGURE_ON=3D --with-intl=3Dsystem-icu >>> -NLS_BUILD_DEPENDS=3D icu>=3D66.1:devel/icu >>> +NLS_BUILD_DEPENDS=3D icu>=3D67.1:devel/icu >>> NLS_LIB_DEPENDS=3D libicui18n.so:devel/icu >>>=20 >>> DTRACE_CONFIGURE_ON=3D --with-dtrace >>> @@ -52,6 +52,7 @@ CONFLICTS_INSTALL=3D node[68]-[0-9]* = node10-[0-9]* node1 >>>=20 >>> CONFIGURE_ARGS=3D --prefix=3D${PREFIX_RELDEST} \ >>> --without-npm \ >>> + --shared-brotli \ >>> --shared-cares \ >>> --shared-libuv \ >>> --shared-nghttp2 \ >>> @@ -68,11 +69,13 @@ MAKE_ENV+=3D CC.host=3D${CC} = CFLAGS.host=3D"${CFLAGS}" \ >>> CXX.host=3D${CXX} CXXFLAGS.host=3D"${CXXFLAGS}" \ >>> LINK.host=3D${CXX} LDFLAGS.host=3D"${LDFLAGS}" >>>=20 >>> -BUILD_DEPENDS+=3D c-ares>=3D1.15.0:dns/c-ares\ >>> - libuv>=3D1.37.0:devel/libuv \ >>> - libnghttp2>=3D1.40.0:www/libnghttp2 \ >>> +BUILD_DEPENDS+=3D brotli>=3D1.0.9,1:archivers/brotli \ >>=20 >> On 2020Q3, brotil is 1.0.7 - above requirement can never be met. >>=20 >>=20 >>=20 >>> + c-ares>=3D1.16.0:dns/c-ares \ >>> + libuv>=3D1.39.0:devel/libuv \ >>> + libnghttp2>=3D1.41.0:www/libnghttp2 \ >>> objdump:devel/binutils >>> -LIB_DEPENDS+=3D libcares.so:dns/c-ares\ >>> +LIB_DEPENDS+=3D libbrotlidec.so:archivers/brotli \ >>> + libcares.so:dns/c-ares\ >>> libuv.so:devel/libuv \ >>> libnghttp2.so:www/libnghttp2 >>>=20 >>>=20 >>> Modified: branches/2020Q3/www/node/distinfo >>> = =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D >>> --- branches/2020Q3/www/node/distinfo Fri Sep 18 04:43:56 2020 = (r548875) >>> +++ branches/2020Q3/www/node/distinfo Fri Sep 18 04:50:56 2020 = (r548876) >>> @@ -1,3 +1,3 @@ >>> -TIMESTAMP =3D 1591883644 >>> -SHA256 (node-v14.4.0.tar.gz) =3D = 5769ce6cf619e3f38dab9d64eab204722665b8b0f5bd2568ac171e2edc6db7f7 >>> -SIZE (node-v14.4.0.tar.gz) =3D 61658009 >>> +TIMESTAMP =3D 1600242162 >>> +SHA256 (node-v14.11.0.tar.gz) =3D = c07669ddbd708d0dfc4ccb63a7ced7ad1fd7d1b59ced50cf05f22f0b96e45463 >>> +SIZE (node-v14.11.0.tar.gz) =3D 63018833 >>>=20 >>> Modified: = branches/2020Q3/www/node/files/patch-deps_openssl_openssl-cl__no__asm.gypi= >>> = =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D >>> --- = branches/2020Q3/www/node/files/patch-deps_openssl_openssl-cl__no__asm.gypi= Fri Sep 18 04:43:56 2020 (r548875) >>> +++ = branches/2020Q3/www/node/files/patch-deps_openssl_openssl-cl__no__asm.gypi= Fri Sep 18 04:50:56 2020 (r548876) >>> @@ -1,4 +1,4 @@ >>> ---- deps/openssl/openssl-cl_no_asm.gypi.orig 2019-08-06 = 20:46:23 UTC >>> +--- deps/openssl/openssl-cl_no_asm.gypi.orig 2020-09-08 = 12:17:10 UTC >>> +++ deps/openssl/openssl-cl_no_asm.gypi >>> @@ -1,4 +1,5 @@ >>> { >>> @@ -6,7 +6,7 @@ >>> 'conditions': [ >>> ['target_arch=3D=3D"ppc" and OS=3D=3D"aix"', { >>> 'includes': ['config/archs/aix-gcc/no-asm/openssl-cl.gypi'], >>> -@@ -45,7 +46,7 @@ >>> +@@ -47,7 +48,7 @@ >>> 'includes': = ['config/archs/linux64-mips64/no-asm/openssl-cl.gypi'], >>> }, { >>> # Other architectures don't use assembly >>>=20 >>> Modified: = branches/2020Q3/www/node/files/patch-deps_openssl_openssl__no__asm.gypi >>> = =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D >>> --- = branches/2020Q3/www/node/files/patch-deps_openssl_openssl__no__asm.gypi = Fri Sep 18 04:43:56 2020 (r548875) >>> +++ = branches/2020Q3/www/node/files/patch-deps_openssl_openssl__no__asm.gypi = Fri Sep 18 04:50:56 2020 (r548876) >>> @@ -1,6 +1,6 @@ >>> ---- deps/openssl/openssl_no_asm.gypi.orig 2019-08-06 20:46:23 UTC >>> +--- deps/openssl/openssl_no_asm.gypi.orig 2020-09-08 12:17:11 UTC >>> +++ deps/openssl/openssl_no_asm.gypi >>> -@@ -46,7 +46,7 @@ >>> +@@ -48,7 +48,7 @@ >>> 'includes': = ['config/archs/linux64-mips64/no-asm/openssl.gypi'], >>> }, { >>> # Other architectures don't use assembly >>>=20 >>> Modified: = branches/2020Q3/www/node/files/patch-deps_v8_src_base_platform_platform-fr= eebsd.cc >>> = =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D >>> --- = branches/2020Q3/www/node/files/patch-deps_v8_src_base_platform_platform-fr= eebsd.cc Fri Sep 18 04:43:56 2020 (r548875) >>> +++ = branches/2020Q3/www/node/files/patch-deps_v8_src_base_platform_platform-fr= eebsd.cc Fri Sep 18 04:50:56 2020 (r548876) >>> @@ -1,6 +1,6 @@ >>> ---- deps/v8/src/base/platform/platform-freebsd.cc.orig = 2020-01-07 22:07:49 UTC >>> +--- deps/v8/src/base/platform/platform-freebsd.cc.orig = 2020-06-30 17:49:16 UTC >>> +++ deps/v8/src/base/platform/platform-freebsd.cc >>> -@@ -81,8 +81,8 @@ std::vector = OS::GetSharedLib >>> +@@ -82,8 +82,8 @@ std::vector = OS::GetSharedLib >>> lib_name =3D std::string(path); >>> } >>> result.push_back(SharedLibraryAddress( >>> @@ -11,7 +11,7 @@ >>> } >>>=20 >>> start +=3D ssize; >>> -@@ -93,6 +93,48 @@ std::vector = OS::GetSharedLib >>> +@@ -94,6 +94,48 @@ std::vector = OS::GetSharedLib >>> } >>>=20 >>> void OS::SignalCodeMovingGC() {} >>>=20 >>> Modified: = branches/2020Q3/www/node/files/patch-deps_v8_src_codegen_ppc_constants-ppc= .h >>> = =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D >>> --- = branches/2020Q3/www/node/files/patch-deps_v8_src_codegen_ppc_constants-ppc= .h Fri Sep 18 04:43:56 2020 (r548875) >>> +++ = branches/2020Q3/www/node/files/patch-deps_v8_src_codegen_ppc_constants-ppc= .h Fri Sep 18 04:50:56 2020 (r548876) >>> @@ -1,18 +1,18 @@ >>> ---- deps/v8/src/codegen/ppc/constants-ppc.h.orig 2019-09-09 = 16:27:17 UTC >>> +--- deps/v8/src/codegen/ppc/constants-ppc.h.orig 2020-06-30 = 17:49:17 UTC >>> +++ deps/v8/src/codegen/ppc/constants-ppc.h >>> -@@ -34,7 +34,7 @@ >>> - #define ABI_PASSES_HANDLES_IN_REGS 0 >>> +@@ -36,7 +36,7 @@ >>> #endif >>>=20 >>> --#if !V8_HOST_ARCH_PPC || !V8_TARGET_ARCH_PPC64 || = V8_TARGET_LITTLE_ENDIAN || \ >>> -+#if !V8_HOST_ARCH_PPC || !V8_TARGET_ARCH_PPC64 || \ >>> - (defined(_CALL_ELF) && _CALL_ELF =3D=3D 2) >>> + #if !(V8_HOST_ARCH_PPC || V8_HOST_ARCH_PPC64) || = !V8_TARGET_ARCH_PPC64 || \ >>> +- V8_TARGET_LITTLE_ENDIAN || (defined(_CALL_ELF) && _CALL_ELF =3D=3D= 2) >>> ++ (defined(_CALL_ELF) && _CALL_ELF =3D=3D 2) >>> #define ABI_RETURNS_OBJECT_PAIRS_IN_REGS 1 >>> #else >>> -@@ -43,7 +43,7 @@ >>> + #define ABI_RETURNS_OBJECT_PAIRS_IN_REGS 0 >>> +@@ -44,7 +44,7 @@ >>>=20 >>> - #if !V8_HOST_ARCH_PPC || \ >>> - (V8_TARGET_ARCH_PPC64 && \ >>> + #if !(V8_HOST_ARCH_PPC || V8_HOST_ARCH_PPC64) || \ >>> + (V8_TARGET_ARCH_PPC64 && \ >>> - (V8_TARGET_LITTLE_ENDIAN || (defined(_CALL_ELF) && _CALL_ELF = =3D=3D 2))) >>> + (defined(_CALL_ELF) && _CALL_ELF =3D=3D 2)) >>> #define ABI_CALL_VIA_IP 1 >>>=20 >>> Modified: = branches/2020Q3/www/node/files/patch-deps_v8_src_compiler_backend_instruct= ion-selector.cc >>> = =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D >>> --- = branches/2020Q3/www/node/files/patch-deps_v8_src_compiler_backend_instruct= ion-selector.cc Fri Sep 18 04:43:56 2020 (r548875) >>> +++ = branches/2020Q3/www/node/files/patch-deps_v8_src_compiler_backend_instruct= ion-selector.cc Fri Sep 18 04:50:56 2020 (r548876) >>> @@ -1,6 +1,6 @@ >>> ---- deps/v8/src/compiler/backend/instruction-selector.cc.orig = 2020-04-21 11:38:50 UTC >>> +--- deps/v8/src/compiler/backend/instruction-selector.cc.orig = 2020-07-20 22:18:45 UTC >>> +++ deps/v8/src/compiler/backend/instruction-selector.cc >>> -@@ -2783,7 +2783,7 @@ void InstructionSelector::VisitCall(Node* = node, BasicB >>> +@@ -2808,7 +2808,7 @@ void InstructionSelector::VisitCall(Node* = node, BasicB >>> switch (call_descriptor->kind()) { >>> case CallDescriptor::kCallAddress: { >>> int misc_field =3D = static_cast(call_descriptor->ParameterCount()); >>>=20 >>> Modified: = branches/2020Q3/www/node/files/patch-deps_v8_src_compiler_backend_ppc_code= -generator-ppc.cc >>> = =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D >>> --- = branches/2020Q3/www/node/files/patch-deps_v8_src_compiler_backend_ppc_code= -generator-ppc.cc Fri Sep 18 04:43:56 2020 (r548875) >>> +++ = branches/2020Q3/www/node/files/patch-deps_v8_src_compiler_backend_ppc_code= -generator-ppc.cc Fri Sep 18 04:50:56 2020 (r548876) >>> @@ -1,9 +1,10 @@ >>> ---- deps/v8/src/compiler/backend/ppc/code-generator-ppc.cc.orig = 2020-04-21 11:38:50 UTC >>> +--- deps/v8/src/compiler/backend/ppc/code-generator-ppc.cc.orig = 2020-07-20 22:18:45 UTC >>> +++ deps/v8/src/compiler/backend/ppc/code-generator-ppc.cc >>> -@@ -1032,7 +1032,7 @@ CodeGenerator::CodeGenResult = CodeGenerator::AssembleAr >>> +@@ -1038,8 +1038,7 @@ CodeGenerator::CodeGenResult = CodeGenerator::AssembleAr >>> bool isWasmCapiFunction =3D >>> linkage()->GetIncomingDescriptor()->IsWasmCapiFunction(); >>> - int offset =3D 9 * kInstrSize; >>> + int offset =3D (FLAG_enable_embedded_constant_pool ? 20 : = 23) * kInstrSize; >>> +- >>> -#if defined(_AIX) >>> +#if defined(_AIX) || (V8_TARGET_ARCH_PPC_BE && (!defined(_CALL_ELF) = || _CALL_ELF =3D=3D 1)) >>> // AIX/PPC64BE Linux uses a function descriptor >>>=20 >>> Modified: = branches/2020Q3/www/node/files/patch-deps_v8_src_libsampler_sampler.cc >>> = =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D >>> --- = branches/2020Q3/www/node/files/patch-deps_v8_src_libsampler_sampler.cc = Fri Sep 18 04:43:56 2020 (r548875) >>> +++ = branches/2020Q3/www/node/files/patch-deps_v8_src_libsampler_sampler.cc = Fri Sep 18 04:50:56 2020 (r548876) >>> @@ -1,6 +1,6 @@ >>> ---- deps/v8/src/libsampler/sampler.cc.orig 2020-04-21 11:38:50 UTC >>> +--- deps/v8/src/libsampler/sampler.cc.orig 2020-06-30 17:49:17 UTC >>> +++ deps/v8/src/libsampler/sampler.cc >>> -@@ -480,6 +480,10 @@ void SignalHandler::FillRegisterState(void* = context, R >>> +@@ -482,6 +482,10 @@ void SignalHandler::FillRegisterState(void* = context, R >>> state->pc =3D reinterpret_cast(mcontext.__gregs[_REG_PC]); >>> state->sp =3D reinterpret_cast(mcontext.__gregs[_REG_SP]); >>> state->fp =3D reinterpret_cast(mcontext.__gregs[_REG_FP]); >>>=20 >>> Modified: branches/2020Q3/www/node/pkg-plist >>> = =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D >>> --- branches/2020Q3/www/node/pkg-plist Fri Sep 18 04:43:56 2020 = (r548875) >>> +++ branches/2020Q3/www/node/pkg-plist Fri Sep 18 04:50:56 2020 = (r548876) >>> @@ -1,6 +1,30 @@ >>> bin/node >>> include/node/common.gypi >>> include/node/config.gypi >>> +include/node/cppgc/allocation.h >>> +include/node/cppgc/common.h >>> +include/node/cppgc/custom-space.h >>> +include/node/cppgc/garbage-collected.h >>> +include/node/cppgc/heap.h >>> +include/node/cppgc/internal/accessors.h >>> +include/node/cppgc/internal/api-constants.h >>> +include/node/cppgc/internal/compiler-specific.h >>> +include/node/cppgc/internal/finalizer-trait.h >>> +include/node/cppgc/internal/gc-info.h >>> +include/node/cppgc/internal/logging.h >>> +include/node/cppgc/internal/persistent-node.h >>> +include/node/cppgc/internal/pointer-policies.h >>> +include/node/cppgc/internal/prefinalizer-handler.h >>> +include/node/cppgc/liveness-broker.h >>> +include/node/cppgc/macros.h >>> +include/node/cppgc/member.h >>> +include/node/cppgc/persistent.h >>> +include/node/cppgc/platform.h >>> +include/node/cppgc/prefinalizer.h >>> +include/node/cppgc/source-location.h >>> +include/node/cppgc/trace-trait.h >>> +include/node/cppgc/type-traits.h >>> +include/node/cppgc/visitor.h >>> include/node/js_native_api.h >>> include/node/js_native_api_types.h >>> include/node/libplatform/libplatform.h >>> @@ -122,6 +146,21 @@ include/node/node_version.h >>> = %%BUNDLED_SSL%%include/node/openssl/archs/darwin-i386-cc/no-asm/crypto/inc= lude/internal/dso_conf.h >>> = %%BUNDLED_SSL%%include/node/openssl/archs/darwin-i386-cc/no-asm/include/op= enssl/opensslconf.h >>> = %%BUNDLED_SSL%%include/node/openssl/archs/darwin-i386-cc/no-asm/include/pr= ogs.h >>> = +%%BUNDLED_SSL%%include/node/openssl/archs/darwin64-arm64-cc/asm/crypto/bu= ildinf.h >>> = +%%BUNDLED_SSL%%include/node/openssl/archs/darwin64-arm64-cc/asm/crypto/in= clude/internal/bn_conf.h >>> = +%%BUNDLED_SSL%%include/node/openssl/archs/darwin64-arm64-cc/asm/crypto/in= clude/internal/dso_conf.h >>> = +%%BUNDLED_SSL%%include/node/openssl/archs/darwin64-arm64-cc/asm/include/o= penssl/opensslconf.h >>> = +%%BUNDLED_SSL%%include/node/openssl/archs/darwin64-arm64-cc/asm/include/p= rogs.h >>> = +%%BUNDLED_SSL%%include/node/openssl/archs/darwin64-arm64-cc/asm_avx2/cryp= to/buildinf.h >>> = +%%BUNDLED_SSL%%include/node/openssl/archs/darwin64-arm64-cc/asm_avx2/cryp= to/include/internal/bn_conf.h >>> = +%%BUNDLED_SSL%%include/node/openssl/archs/darwin64-arm64-cc/asm_avx2/cryp= to/include/internal/dso_conf.h >>> = +%%BUNDLED_SSL%%include/node/openssl/archs/darwin64-arm64-cc/asm_avx2/incl= ude/openssl/opensslconf.h >>> = +%%BUNDLED_SSL%%include/node/openssl/archs/darwin64-arm64-cc/asm_avx2/incl= ude/progs.h >>> = +%%BUNDLED_SSL%%include/node/openssl/archs/darwin64-arm64-cc/no-asm/crypto= /buildinf.h >>> = +%%BUNDLED_SSL%%include/node/openssl/archs/darwin64-arm64-cc/no-asm/crypto= /include/internal/bn_conf.h >>> = +%%BUNDLED_SSL%%include/node/openssl/archs/darwin64-arm64-cc/no-asm/crypto= /include/internal/dso_conf.h >>> = +%%BUNDLED_SSL%%include/node/openssl/archs/darwin64-arm64-cc/no-asm/includ= e/openssl/opensslconf.h >>> = +%%BUNDLED_SSL%%include/node/openssl/archs/darwin64-arm64-cc/no-asm/includ= e/progs.h >>> = %%BUNDLED_SSL%%include/node/openssl/archs/darwin64-x86_64-cc/asm/crypto/bu= ildinf.h >>> = %%BUNDLED_SSL%%include/node/openssl/archs/darwin64-x86_64-cc/asm/crypto/in= clude/internal/bn_conf.h >>> = %%BUNDLED_SSL%%include/node/openssl/archs/darwin64-x86_64-cc/asm/crypto/in= clude/internal/dso_conf.h >>> @@ -444,6 +483,7 @@ include/node/node_version.h >>> %%BUNDLED_SSL%%include/node/openssl/x509err.h >>> %%BUNDLED_SSL%%include/node/openssl/x509v3.h >>> %%BUNDLED_SSL%%include/node/openssl/x509v3err.h >>> +include/node/v8-fast-api-calls.h >>> include/node/v8-internal.h >>> include/node/v8-platform.h >>> include/node/v8-profiler.h >>=20 >>=20 >=20 > --=20 > Dan Langille > dan@langille.org From owner-svn-ports-branches@freebsd.org Sat Sep 19 13:21:45 2020 Return-Path: Delivered-To: svn-ports-branches@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 7719E3E0A0B; Sat, 19 Sep 2020 13:21:45 +0000 (UTC) (envelope-from rene@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 "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4BtrvY2clcz3bRB; Sat, 19 Sep 2020 13:21:45 +0000 (UTC) (envelope-from rene@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 3D347CB19; Sat, 19 Sep 2020 13:21:45 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 08JDLjtY094964; Sat, 19 Sep 2020 13:21:45 GMT (envelope-from rene@FreeBSD.org) Received: (from rene@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 08JDLjZo094963; Sat, 19 Sep 2020 13:21:45 GMT (envelope-from rene@FreeBSD.org) Message-Id: <202009191321.08JDLjZo094963@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rene set sender to rene@FreeBSD.org using -f From: Rene Ladan Date: Sat, 19 Sep 2020 13:21:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r548984 - branches/2020Q3/cad/openvsp X-SVN-Group: ports-branches X-SVN-Commit-Author: rene X-SVN-Commit-Paths: branches/2020Q3/cad/openvsp X-SVN-Commit-Revision: 548984 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 19 Sep 2020 13:21:45 -0000 Author: rene Date: Sat Sep 19 13:21:44 2020 New Revision: 548984 URL: https://svnweb.freebsd.org/changeset/ports/548984 Log: MFH: r548947 cad/openvsp: unexpire by allowing it to build on FreeBSD versions with PR 230888 fixed. PR: 242229 Submitted by: fernape@ (maintainer) Approved by: build fix blanket Approved by: ports-secteam (fluffy) Modified: branches/2020Q3/cad/openvsp/Makefile Directory Properties: branches/2020Q3/ (props changed) Modified: branches/2020Q3/cad/openvsp/Makefile ============================================================================== --- branches/2020Q3/cad/openvsp/Makefile Sat Sep 19 13:10:26 2020 (r548983) +++ branches/2020Q3/cad/openvsp/Makefile Sat Sep 19 13:21:44 2020 (r548984) @@ -13,7 +13,6 @@ LICENSE_NAME= NASA Open Source Agreement version 1.3 LICENSE_FILE= ${WRKSRC}/LICENSE LICENSE_PERMS= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept -BROKEN= fails to link BROKEN_aarch64= fails to compile: invokes x86 asm LIB_DEPENDS= libdrm.so:graphics/libdrm \ @@ -56,7 +55,7 @@ USE_GNOME= libxml2 # See https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=230888 .if ${OPSYS} == FreeBSD -.if (${OSVERSION} < 1200000 || ${OSVERSION} >=1300000) +.if (${OSVERSION} < 1104507) || (${OSVERSION} >= 1200000 && ${OSVERSION} < 1202000) || (${OSVERSION} >= 1300000 && ${OSVERSION} < 1300115) BROKEN= undefined reference to __atomic_load .endif .endif From owner-svn-ports-branches@freebsd.org Sat Sep 19 13:23:32 2020 Return-Path: Delivered-To: svn-ports-branches@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 977E63E0A1D; Sat, 19 Sep 2020 13:23:32 +0000 (UTC) (envelope-from rene@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 "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4Btrxc3X9nz3bSZ; Sat, 19 Sep 2020 13:23:32 +0000 (UTC) (envelope-from rene@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 424F5CB29; Sat, 19 Sep 2020 13:23:32 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 08JDNWqi001035; Sat, 19 Sep 2020 13:23:32 GMT (envelope-from rene@FreeBSD.org) Received: (from rene@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 08JDNV1q001030; Sat, 19 Sep 2020 13:23:31 GMT (envelope-from rene@FreeBSD.org) Message-Id: <202009191323.08JDNV1q001030@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rene set sender to rene@FreeBSD.org using -f From: Rene Ladan Date: Sat, 19 Sep 2020 13:23:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r548985 - in branches/2020Q3/net/aslookup: . files X-SVN-Group: ports-branches X-SVN-Commit-Author: rene X-SVN-Commit-Paths: in branches/2020Q3/net/aslookup: . files X-SVN-Commit-Revision: 548985 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 19 Sep 2020 13:23:32 -0000 Author: rene Date: Sat Sep 19 13:23:30 2020 New Revision: 548985 URL: https://svnweb.freebsd.org/changeset/ports/548985 Log: MFH: r548951 net/aslookup: unexpire by updating to 0.13d - Various fixes are performed, by Chris, dinoex and myself. - MASTER_SITES and WWW changed to a new home. - AS queries are now ran against whois.epoch.net, the former server went offline. - Hand over maintainership to Chris PR: 246187 Submitted by: Chris Hutchinson Approved by: previous maintainer Approved by: ports-secteam (fluffy) Modified: branches/2020Q3/net/aslookup/Makefile branches/2020Q3/net/aslookup/distinfo branches/2020Q3/net/aslookup/files/patch-Makefile branches/2020Q3/net/aslookup/files/patch-aslookup.c branches/2020Q3/net/aslookup/pkg-descr Directory Properties: branches/2020Q3/ (props changed) Modified: branches/2020Q3/net/aslookup/Makefile ============================================================================== --- branches/2020Q3/net/aslookup/Makefile Sat Sep 19 13:21:44 2020 (r548984) +++ branches/2020Q3/net/aslookup/Makefile Sat Sep 19 13:23:30 2020 (r548985) @@ -2,24 +2,18 @@ # $FreeBSD$ PORTNAME= aslookup -PORTVERSION= 0.12 -PORTREVISION= 1 +PORTVERSION= 0.13d CATEGORIES= net -MASTER_SITES= http://www.bugest.net/software/aslookup/ -DISTNAME= ${PORTNAME}-alpha${PORTVERSION} +MASTER_SITES= http://aslookup.bgpview.org/download/ \ + https://BSDforce.com/source/net/aslookup/ +DISTNAME= ${PORTNAME}-beta${PORTVERSION} -MAINTAINER= jmohacsi@bsd.hu +MAINTAINER= portmaster@BSDforge.com COMMENT= Tool that searches the sequence of AS numbers -BROKEN= unfetchable -DEPRECATED= Broken for more than 6 months -EXPIRATION_DATE= 2020-05-05 +CFLAGS+= -DARINDB -DJPNICDB -DAPNICDB OPTIONS_DEFINE= DOCS - -post-patch: - @${REINPLACE_CMD} -E -e "s|CFLAGS.*=|CFLAGS +=|" \ - -e "s|CC.*=|CC ?=|" ${WRKSRC}/Makefile do-install: ${INSTALL_PROGRAM} ${WRKSRC}/aslookup ${STAGEDIR}${PREFIX}/bin Modified: branches/2020Q3/net/aslookup/distinfo ============================================================================== --- branches/2020Q3/net/aslookup/distinfo Sat Sep 19 13:21:44 2020 (r548984) +++ branches/2020Q3/net/aslookup/distinfo Sat Sep 19 13:23:30 2020 (r548985) @@ -1,2 +1,3 @@ -SHA256 (aslookup-alpha0.12.tar.gz) = b5bbbf48dad6f2133078b060dae59afc12ee82ff326088458c5953f2a476c3d6 -SIZE (aslookup-alpha0.12.tar.gz) = 12979 +TIMESTAMP = 1590002488 +SHA256 (aslookup-beta0.13d.tar.gz) = bed372c27329cc87e2438c19015695ca16586e4083ae73f54fd92471fc506a35 +SIZE (aslookup-beta0.13d.tar.gz) = 12986 Modified: branches/2020Q3/net/aslookup/files/patch-Makefile ============================================================================== --- branches/2020Q3/net/aslookup/files/patch-Makefile Sat Sep 19 13:21:44 2020 (r548984) +++ branches/2020Q3/net/aslookup/files/patch-Makefile Sat Sep 19 13:23:30 2020 (r548985) @@ -1,11 +1,42 @@ ---- ./Makefile.orig Wed Apr 5 05:36:20 2000 -+++ ./Makefile Wed Nov 9 22:52:32 2005 -@@ -34,7 +34,7 @@ - # CFLAGS = -DJPIXDB -DJPNICDB -DAPNICDB - # CFLAGS = -DRALOCAL -DJPNICDB -DAPNICDB - # CFLAGS = -DJPNICDB -DAPNICDB -DLOG -DSOLARIS --CFLAGS = -DARINDB -DJPNICDB -DAPNICDB -DLOG -DDEBUG -+CFLAGS = -DARINDB -DJPNICDB -DAPNICDB +--- Makefile.orig 2009-09-20 11:00:57 UTC ++++ Makefile +@@ -2,9 +2,9 @@ + # Makefile,v 1.7 2005/12/07 02:57:18 kuniaki Exp + + PROGS = aslookup +-VERSION = beta0.13c ++VERSION = beta0.13d + DISTNAME = $(PROGS)-$(VERSION) +-CVSTAG = b013c ++CVSTAG = b013d + CVS_COMMAND = cvs + INSTALLCMD = /usr/bin/install + +@@ -22,7 +22,7 @@ TARCMD =/usr/bin/tar + SHELL =/bin/sh + .SUFFIXES: .c .o + +-CC = gcc ++CC ?= gcc + + BINDIR =/usr/local/bin + +@@ -34,12 +34,12 @@ MANDIR =/usr/local/man/man1 + # if you have radb mirror server (trawhois), you specify RALOCAL flag. + # Because aslookup will use local radb server. + # AND, If you are using solaris, Please add option "-DSOLARIS". +-# CFLAGS = +-# CFLAGS = -DJPIXDB -DJPNICDB -DAPNICDB -g -O +-CFLAGS = -DRALOCAL -DJPNICDB -DAPNICDB -g -O +-# CFLAGS = -DJPNICDB -DAPNICDB -DLOG -DSOLARIS -g -O +-# CFLAGS = -DARINDB -DJPNICDB -DAPNICDB -DLOG -DDEBUG -g -O +-# CFLAGS = -DARINDB -DJPNICDB -DAPNICDB -g -O ++# CFLAGS += ++# CFLAGS += -DJPIXDB -DJPNICDB -DAPNICDB -g -O ++# CFLAGS += -DRALOCAL -DJPNICDB -DAPNICDB -g -O ++# CFLAGS += -DJPNICDB -DAPNICDB -DLOG -DSOLARIS -g -O ++# CFLAGS += -DARINDB -DJPNICDB -DAPNICDB -DLOG -DDEBUG -g -O ++# CFLAGS += -DARINDB -DJPNICDB -DAPNICDB -g -O INCDIR = -I./ # This line is for solaris. Modified: branches/2020Q3/net/aslookup/files/patch-aslookup.c ============================================================================== --- branches/2020Q3/net/aslookup/files/patch-aslookup.c Sat Sep 19 13:21:44 2020 (r548984) +++ branches/2020Q3/net/aslookup/files/patch-aslookup.c Sat Sep 19 13:23:30 2020 (r548985) @@ -1,56 +1,251 @@ ---- ./aslookup.c.orig Wed Apr 5 05:35:56 2000 -+++ ./aslookup.c Wed Nov 9 22:53:13 2005 -@@ -249,7 +249,7 @@ - break; - case 'C': +--- aslookup.c.orig 2009-09-20 11:00:21 UTC ++++ aslookup.c +@@ -48,12 +48,12 @@ + #include + #include + +-#define VERSION "ASLookup Beta Version 0.13" ++#define VERSION "ASLookup Beta Version 0.13d" + #define COPYRIGHT "Copyright (C) 1998 - 2000 K.Kondo, Internet Initiative Japan Inc.\r\nCopyright (c) 2005 K.Kondo, Bugest-Network" + #define REVISION "aslookup.c,v 1.7 2005/12/07 02:56:35 kuniaki Exp" + + #ifdef RALOCAL +-#define RADB "bvtest.bugest.net" ++#define RADB "whois.epoch.net" + #define WHOIS 43 + #endif /* _ifedef RALOCAL */ + #ifndef RALOCAL +@@ -109,7 +109,7 @@ char *connecthost; + } + #endif /* _ifdef LOG */ + +-int dbopen() ++void dbopen() + { + struct hostent *hp; + struct sockaddr_in sin; +@@ -137,14 +137,14 @@ int dbopen() + #endif + } + +-int dbclose() ++void dbclose() + { + write(sc, "q\n", 2); + close(sc); + + } + +-int batchmode() ++void batchmode() + { + write(sc, "!!\n", 3); + } +@@ -198,7 +198,7 @@ char *type; + return(ret); + } + +-int sread(buf, len) ++void sread(buf, len) + char *buf; + int len; + { +@@ -285,7 +285,7 @@ u_long asn; + char asstr[128]; + char *data; + +- sprintf(asstr, "!man,AS%d\n", asn); ++ sprintf(asstr, "!man,AS%lu\n", asn); + #ifdef DEBUG -- printf("Compleate\n"); -+ printf("Complete\n"); + printf("Command : %s", asstr); +@@ -512,7 +512,7 @@ char *retc; + connectlog(JPWHOIS); #endif - stop = 1; - break; -@@ -936,7 +936,7 @@ - if (strncmp(&line[3], " ", 7) == 0) { +- sprintf(line, "AS%d\n", asn); ++ sprintf(line, "AS%lu\n", asn); + write(jpsoc,line,strlen(line)); + + jpfd = fdopen(jpsoc, "r"); +@@ -571,7 +571,7 @@ char *retc; + connectlog(APWHOIS); + #endif + +- sprintf(line, "AS%d\n", asn); ++ sprintf(line, "AS%lu\n", asn); + write(apsoc,line,strlen(line)); + + apfd = fdopen(apsoc, "r"); +@@ -686,7 +686,7 @@ char *retc; + connectlog(JIWHOIS); + #endif + +- sprintf(line, "AS%d\n", asn); ++ sprintf(line, "AS%lu\n", asn); + write(jisoc,line,strlen(line)); + + jifd = fdopen(jisoc, "r"); +@@ -710,7 +710,7 @@ char *retc; + } + #endif /* _JPIXDB */ + +-int searchas(aslist) ++void searchas(aslist) + char *aslist; + { + char aslistbuf[1024]; +@@ -738,7 +738,7 @@ char *aslist; #ifdef DEBUG -- printf("Old Data Concatinate\n"); -+ printf("Old Data Concatenate\n"); + printf("DEBUG: descr field not found\n"); #endif - bzero(buf,40); - strncpy(buf, pathcache.data, 3); -@@ -952,7 +952,7 @@ - printf("%s:\n",pathcache.data); - searchas(pathcache.pathstr); +- printf(" AS%d:????????\n", asnum); ++ printf(" AS%lu:????????\n", asnum); + } + #ifdef DEBUG + printf("DB Type -> RPSL?\n"); +@@ -771,7 +771,7 @@ char *aslist; + if (desce != NULL) { + *desce = '\0'; + } +- printf(" AS%d:%s\n", asnum, descs); ++ printf(" AS%lu:%s\n", asnum, descs); + } + free(obj); } else { -- printf("%s: Dplicated AS Path\n",pathcache.data); -+ printf("%s: Duplicated AS Path\n",pathcache.data); - } - } - freecache(); -@@ -987,7 +987,7 @@ +@@ -779,7 +779,7 @@ char *aslist; - if (strncmp(&line[3], " ", 7) == 0) { - #ifdef DEBUG -- printf("Old Data Concatinate: %s\n",olddata); -+ printf("Old Data Concatenate: %s\n",olddata); + #ifdef JPIXDB + if (jpix(asnum, &asname) != NULL) { +- printf(" AS%d:%s\n", asnum, asname); ++ printf(" AS%lu:%s\n", asnum, asname); + } else { #endif - if (strlen(olddata) > 0) { - bzero(buf,40); -@@ -1007,7 +1007,7 @@ - printf("%s:\n",pathcache.data); - searchas(pathcache.pathstr); - } else { -- printf("%s: Dplicated AS Path\n",pathcache.data); -+ printf("%s: Duplicated AS Path\n",pathcache.data); - } + #ifdef ARINDB +@@ -790,7 +790,7 @@ char *aslist; + #ifdef JPNICDB + if (strcmp(asname, JPNICTAG) == 0) { + if (jpnic(asnum, &asname) != NULL) { +- printf(" AS%d:%s (JPNIC)\n", ++ printf(" AS%lu:%s (JPNIC)\n", + asnum, asname); + fg = 1; + } else { +@@ -801,7 +801,7 @@ char *aslist; + #ifdef APNICDB + if (strcmp(asname, APNICTAG) == 0) { + if (apnic(asnum, &asname) != NULL) { +- printf(" AS%d:%s (APNIC)\n", ++ printf(" AS%lu:%s (APNIC)\n", + asnum, asname); + fg = 1; + } else { +@@ -811,11 +811,11 @@ char *aslist; + #endif + if (strlen(asname) != 0) { + if (fg == 0) { +- printf(" AS%d:%s (ARIN)\n", ++ printf(" AS%lu:%s (ARIN)\n", + asnum, asname); + } + } else { +- printf(" AS%d:????????\n", asnum); ++ printf(" AS%lu:????????\n", asnum); + } + } + #endif /* ARINDB */ +@@ -823,11 +823,11 @@ char *aslist; + #ifdef JPNICDB + #ifdef APNICDB + if (jpnic(asnum, &asname) != NULL) { +- printf(" AS%d:%s (JPNIC)\n", asnum, asname); ++ printf(" AS%lu:%s (JPNIC)\n", asnum, asname); + } else if (apnic(asnum, &asname) != NULL) { +- printf(" AS%d:%s (APNIC)\n", asnum, asname); ++ printf(" AS%lu:%s (APNIC)\n", asnum, asname); + } else { +- printf(" AS%d:????????\n", asnum); ++ printf(" AS%lu:????????\n", asnum); + } + #endif + #endif +@@ -835,9 +835,9 @@ char *aslist; + #ifdef JPNICDB + #ifndef APNICDB + if (jpnic(asnum, &asname) != NULL) { +- printf(" AS%d:%s (JPNIC)\n", asnum, asname); ++ printf(" AS%lu:%s (JPNIC)\n", asnum, asname); + } else { +- printf(" AS%d:????????\n", asnum); ++ printf(" AS%lu:????????\n", asnum); + } + #endif + #endif +@@ -845,16 +845,16 @@ char *aslist; + #ifndef JPNICDB + #ifdef APNICDB + if (apnic(asnum, &asname) != NULL) { +- printf(" AS%d:%s (APNIC)\n", asnum, asname); ++ printf(" AS%lu:%s (APNIC)\n", asnum, asname); + } else { +- printf(" AS%d:????????\n", asnum); ++ printf(" AS%lu:????????\n", asnum); + } + #endif + #endif + + #ifndef JPNICDB + #ifndef APNICDB +- printf(" AS%d:????????\n", asnum); ++ printf(" AS%lu:????????\n", asnum); + #endif + #endif + +@@ -906,7 +906,7 @@ ASPATHCACHE *data; + return(ret); + } + +-int freecache() ++void freecache() + { + ASPATHCACHE *ptr; + +@@ -918,7 +918,7 @@ int freecache() } + } + +-int parsestdin() ++void parsestdin() + { + + char line[2048]; +@@ -1020,6 +1020,7 @@ char *fname; + } fclose(fp); -@@ -1034,7 +1034,7 @@ - if (a == 0) { - hp = gethostbyname(hn); - if (hp == NULL) { -- printf("Could not resolv : %s\n",hn); -+ printf("Could not resolve : %s\n",hn); - return(1); + freecache(); ++ return(0); + } + + int host2as(hn) +@@ -1065,7 +1066,7 @@ char *hn; + #endif + + if (getas(adstr, &getasnum) == 0) { +- printf("% Search Fail\n"); ++ printf("%% Search Fail\n"); + } else { + #ifdef DEBUG + printf("Search AS : %s\n",getasnum); +@@ -1088,10 +1089,11 @@ char *hn; + asptr++; } - bzero(&sin, sizeof(struct sockaddr_in)); + } ++ return(0); + } + + +-main(argc, argv) ++int main(argc, argv) + int argc; + char *argv[]; + { Modified: branches/2020Q3/net/aslookup/pkg-descr ============================================================================== --- branches/2020Q3/net/aslookup/pkg-descr Sat Sep 19 13:21:44 2020 (r548984) +++ branches/2020Q3/net/aslookup/pkg-descr Sat Sep 19 13:23:30 2020 (r548985) @@ -1,11 +1,11 @@ -ASLOOKUP is the tool which searches the sequence of AS number specified +ASLOOKUP is the tool which searches the sequence of the AS number specified with the parameter from IRR and indicates the first line of Description -of AS Object. +of the AS Object. Advantages: -You can search many AS Numbers at one time. -You can use result of "show ip bgp" command with CISCO router. -You can search to ARIN, JPNIC and APNIC whois dabase. -You can srarch AS Number from IP Addresses. +You can search many AS Numbers at once. +You can use result of "show ip bgp" command with a CISCO router. +You can search to ARIN, JPNIC and APNIC whois database. +You can search AS Number from IP Addresses. -WWW: http://www.bugest.net/software/aslookup/index-e.html +WWW: http://aslookup.bgpview.org/index-e.html