From owner-svn-ports-all@freebsd.org Mon Dec 18 21:55:56 2017 Return-Path: Delivered-To: svn-ports-all@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 8CAF3E8B9AF; Mon, 18 Dec 2017 21:55:56 +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 mx1.freebsd.org (Postfix) with ESMTPS id 59A4A726AE; Mon, 18 Dec 2017 21:55:56 +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 vBILttfb028671; Mon, 18 Dec 2017 21:55:55 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vBILttFS028668; Mon, 18 Dec 2017 21:55:55 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201712182155.vBILttFS028668@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Mon, 18 Dec 2017 21:55:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r456682 - in head/security/tor-devel: . files X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/security/tor-devel: . files X-SVN-Commit-Revision: 456682 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Dec 2017 21:55:56 -0000 Author: yuri Date: Mon Dec 18 21:55:54 2017 New Revision: 456682 URL: https://svnweb.freebsd.org/changeset/ports/456682 Log: security/tor-devel: Update to 0.3.2.7-rc; Unbreaking on systems without timingsafe_memcmp(3) timingsafe_memcmp(3) has only been introduced in 12, therefore limiting its use to 12. Reported by: Martin Gehlen (timingsafe_memcmp(3) bug reporter) Approved by: adamw (mentor) Differential Revision: https://reviews.freebsd.org/D13496 Added: head/security/tor-devel/files/patch-orconfig.h.in (contents, props changed) Modified: head/security/tor-devel/Makefile head/security/tor-devel/distinfo Modified: head/security/tor-devel/Makefile ============================================================================== --- head/security/tor-devel/Makefile Mon Dec 18 21:55:35 2017 (r456681) +++ head/security/tor-devel/Makefile Mon Dec 18 21:55:54 2017 (r456682) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= tor -DISTVERSION= 0.3.2.6-alpha +DISTVERSION= 0.3.2.7-rc CATEGORIES= security net ipv6 MASTER_SITES= TOR PKGNAMESUFFIX= -devel Modified: head/security/tor-devel/distinfo ============================================================================== --- head/security/tor-devel/distinfo Mon Dec 18 21:55:35 2017 (r456681) +++ head/security/tor-devel/distinfo Mon Dec 18 21:55:54 2017 (r456682) @@ -1,3 +1,3 @@ -TIMESTAMP = 1512146666 -SHA256 (tor-0.3.2.6-alpha.tar.gz) = 6770cf76973dcfc126ce98a7b1bf55cd0dffdacaf77f7389a08218559e9b2280 -SIZE (tor-0.3.2.6-alpha.tar.gz) = 6310498 +TIMESTAMP = 1513300048 +SHA256 (tor-0.3.2.7-rc.tar.gz) = 4be673a5084790977d692e11afe5ca575adb08f06809dbac52d8b005435131fb +SIZE (tor-0.3.2.7-rc.tar.gz) = 6313975 Added: head/security/tor-devel/files/patch-orconfig.h.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/tor-devel/files/patch-orconfig.h.in Mon Dec 18 21:55:54 2017 (r456682) @@ -0,0 +1,12 @@ +--- orconfig.h.in.orig 2017-12-13 17:18:09 UTC ++++ orconfig.h.in +@@ -535,7 +535,9 @@ + #undef HAVE_TIME_H + + /* Define to 1 if you have the `timingsafe_memcmp' function. */ ++#if __FreeBSD_version >= 1200000 // disabled: timingsafe_memcmp(3) has been added only in 12.0, and isn't yet available on older systems + #undef HAVE_TIMINGSAFE_MEMCMP ++#endif + + /* Define to 1 if you have the `TLS_method' function. */ + #undef HAVE_TLS_METHOD