From owner-svn-ports-head@freebsd.org Fri Jun 9 16:46:23 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4C893BF8C91; Fri, 9 Jun 2017 16:46:23 +0000 (UTC) (envelope-from adamw@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 mx1.freebsd.org (Postfix) with ESMTPS id 1B0CD73E1E; Fri, 9 Jun 2017 16:46:23 +0000 (UTC) (envelope-from adamw@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v59GkMIH074822; Fri, 9 Jun 2017 16:46:22 GMT (envelope-from adamw@FreeBSD.org) Received: (from adamw@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v59GkMoK074820; Fri, 9 Jun 2017 16:46:22 GMT (envelope-from adamw@FreeBSD.org) Message-Id: <201706091646.v59GkMoK074820@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: adamw set sender to adamw@FreeBSD.org using -f From: Adam Weinberger Date: Fri, 9 Jun 2017 16:46:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443020 - in head/devel/cgit: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Jun 2017 16:46:23 -0000 Author: adamw Date: Fri Jun 9 16:46:21 2017 New Revision: 443020 URL: https://svnweb.freebsd.org/changeset/ports/443020 Log: Add the SHA1 checksum patch from devel/git Added: head/devel/cgit/files/patch-SHA1-endianness - copied, changed from r443018, head/devel/git/files/patch-SHA1-endianness Modified: head/devel/cgit/Makefile Modified: head/devel/cgit/Makefile ============================================================================== --- head/devel/cgit/Makefile Fri Jun 9 16:45:34 2017 (r443019) +++ head/devel/cgit/Makefile Fri Jun 9 16:46:21 2017 (r443020) @@ -2,7 +2,7 @@ PORTNAME= cgit PORTVERSION= 1.1 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= devel www MASTER_SITES= http://git.zx2c4.com/cgit/snapshot/:cgit \ https://www.kernel.org/pub/software/scm/git/:git Copied and modified: head/devel/cgit/files/patch-SHA1-endianness (from r443018, head/devel/git/files/patch-SHA1-endianness) ============================================================================== --- head/devel/git/files/patch-SHA1-endianness Fri Jun 9 16:38:39 2017 (r443018, copy source) +++ head/devel/cgit/files/patch-SHA1-endianness Fri Jun 9 16:46:21 2017 (r443020) @@ -54,8 +54,8 @@ Signed-off-by: Junio C Hamano diff --git a/sha1dc/sha1.c b/sha1dc/sha1.c index 3dff80ac727aa..facea1bb560b5 100644 ---- sha1dc/sha1.c -+++ sha1dc/sha1.c +--- git/sha1dc/sha1.c ++++ git/sha1dc/sha1.c @@ -35,15 +35,33 @@ #ifdef SHA1DC_BIGENDIAN #undef SHA1DC_BIGENDIAN @@ -98,8 +98,8 @@ index 3dff80ac727aa..facea1bb560b5 100644 defined(__amd64__) || defined(__amd64) || defined(__x86_64__) || defined(__x86_64) || \ diff --git a/sha1dc/sha1.h b/sha1dc/sha1.h index a0ff5d1305797..1e4e94be54a6d 100644 ---- sha1dc/sha1.h -+++ sha1dc/sha1.h +--- git/sha1dc/sha1.h ++++ git/sha1dc/sha1.h @@ -61,9 +61,9 @@ void SHA1DCInit(SHA1_CTX*); Function to enable safe SHA-1 hashing: Collision attacks are thwarted by hashing a detected near-collision block 3 times.