Date: Wed, 31 Jan 2018 21:25:59 +0000 (UTC) From: Jan Beich <jbeich@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r460533 - in branches/2018Q1/security: ca_root_nss nss nss/files Message-ID: <201801312125.w0VLPxQf040932@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: jbeich Date: Wed Jan 31 21:25:59 2018 New Revision: 460533 URL: https://svnweb.freebsd.org/changeset/ports/460533 Log: MFH: r459458 r460255 security/nss: update to 3.35 Changes: https://developer.mozilla.org/docs/Mozilla/Projects/NSS/NSS_3.35_release_notes Changes: https://hg.mozilla.org/projects/nss/shortlog/NSS_3_35_RTM ABI: https://abi-laboratory.pro/tracker/timeline/nss/ Approved by: ports-secteam (swills) Added: branches/2018Q1/security/nss/files/patch-bug1432455 - copied unchanged from r460255, head/security/nss/files/patch-bug1432455 Deleted: branches/2018Q1/security/nss/files/patch-bug1396301 Modified: branches/2018Q1/security/ca_root_nss/Makefile branches/2018Q1/security/ca_root_nss/distinfo branches/2018Q1/security/nss/Makefile branches/2018Q1/security/nss/distinfo Directory Properties: branches/2018Q1/ (props changed) Modified: branches/2018Q1/security/ca_root_nss/Makefile ============================================================================== --- branches/2018Q1/security/ca_root_nss/Makefile Wed Jan 31 21:03:35 2018 (r460532) +++ branches/2018Q1/security/ca_root_nss/Makefile Wed Jan 31 21:25:59 2018 (r460533) @@ -32,7 +32,7 @@ PLIST_SUB+= CERTDIR=${CERTDIR} # !!! Please DO NOT submit patches for new version until it has !!! # !!! been committed there first. !!! # !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -VERSION_NSS= 3.34.1 +VERSION_NSS= 3.35 #NSS_SUFFIX= -with-ckbi-1.98 CERTDATA_TXT_PATH= nss-${VERSION_NSS}/nss/lib/ckfw/builtins/certdata.txt BUNDLE_PROCESSOR= MAca-bundle.pl Modified: branches/2018Q1/security/ca_root_nss/distinfo ============================================================================== --- branches/2018Q1/security/ca_root_nss/distinfo Wed Jan 31 21:03:35 2018 (r460532) +++ branches/2018Q1/security/ca_root_nss/distinfo Wed Jan 31 21:25:59 2018 (r460533) @@ -1,3 +1,3 @@ -TIMESTAMP = 1511379088 -SHA256 (nss-3.34.1.tar.gz) = a3c15d367caf784f33d96dbafbdffc16a8e42fb8c8aedfce97bf92a9f918dda0 -SIZE (nss-3.34.1.tar.gz) = 9562876 +TIMESTAMP = 1516285199 +SHA256 (nss-3.35.tar.gz) = f4127de09bede39f5fd0f789d33c3504c5d261e69ea03022d46b319b3e32f6fa +SIZE (nss-3.35.tar.gz) = 9620041 Modified: branches/2018Q1/security/nss/Makefile ============================================================================== --- branches/2018Q1/security/nss/Makefile Wed Jan 31 21:03:35 2018 (r460532) +++ branches/2018Q1/security/nss/Makefile Wed Jan 31 21:25:59 2018 (r460533) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= nss -PORTVERSION= 3.34.1 +PORTVERSION= 3.35 #DISTVERSIONSUFFIX= -with-ckbi-1.98 CATEGORIES= security MASTER_SITES= MOZILLA/security/${PORTNAME}/releases/${DISTNAME:tu:C/[-.]/_/g}_RTM/src Modified: branches/2018Q1/security/nss/distinfo ============================================================================== --- branches/2018Q1/security/nss/distinfo Wed Jan 31 21:03:35 2018 (r460532) +++ branches/2018Q1/security/nss/distinfo Wed Jan 31 21:25:59 2018 (r460533) @@ -1,3 +1,3 @@ -TIMESTAMP = 1511379088 -SHA256 (nss-3.34.1.tar.gz) = a3c15d367caf784f33d96dbafbdffc16a8e42fb8c8aedfce97bf92a9f918dda0 -SIZE (nss-3.34.1.tar.gz) = 9562876 +TIMESTAMP = 1516285199 +SHA256 (nss-3.35.tar.gz) = f4127de09bede39f5fd0f789d33c3504c5d261e69ea03022d46b319b3e32f6fa +SIZE (nss-3.35.tar.gz) = 9620041 Copied: branches/2018Q1/security/nss/files/patch-bug1432455 (from r460255, head/security/nss/files/patch-bug1432455) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2018Q1/security/nss/files/patch-bug1432455 Wed Jan 31 21:25:59 2018 (r460533, copy of r460255, head/security/nss/files/patch-bug1432455) @@ -0,0 +1,27 @@ +commit 1668fafc1db4 +Author: Daiki Ueno <dueno@redhat.com> +Date: Tue Jan 23 13:29:34 2018 +0100 + + Bug 1432455, Build Hacl_Poly1305_64.o on AArch64 even with make, r=fkiefer +--- + lib/freebl/Makefile | 7 ++++++- + 1 file changed, 6 insertions(+), 1 deletion(-) + +diff --git lib/freebl/Makefile lib/freebl/Makefile +index 0b3daa2756..6c8e6a2ead 100644 +--- lib/freebl/Makefile ++++ lib/freebl/Makefile +@@ -527,7 +527,12 @@ ifndef NSS_DISABLE_CHACHAPOLY + EXTRA_SRCS += chacha20_vec.c + endif + else +- EXTRA_SRCS += poly1305.c ++ ifeq ($(CPU_ARCH),aarch64) ++ EXTRA_SRCS += Hacl_Poly1305_64.c ++ else ++ EXTRA_SRCS += poly1305.c ++ endif ++ + EXTRA_SRCS += chacha20.c + VERIFIED_SRCS += Hacl_Chacha20.c + endif # x86_64
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201801312125.w0VLPxQf040932>