From owner-svn-ports-all@freebsd.org Mon Apr 13 09:54:35 2020 Return-Path: Delivered-To: svn-ports-all@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 E3C962B8D33; Mon, 13 Apr 2020 09:54:35 +0000 (UTC) (envelope-from danfe@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) server-signature RSA-PSS (4096 bits) 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 4913qv5k9Pz4N5c; Mon, 13 Apr 2020 09:54:35 +0000 (UTC) (envelope-from danfe@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 BFB5219693; Mon, 13 Apr 2020 09:54:35 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 03D9sZgY033093; Mon, 13 Apr 2020 09:54:35 GMT (envelope-from danfe@FreeBSD.org) Received: (from danfe@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 03D9sZO5033091; Mon, 13 Apr 2020 09:54:35 GMT (envelope-from danfe@FreeBSD.org) Message-Id: <202004130954.03D9sZO5033091@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: danfe set sender to danfe@FreeBSD.org using -f From: Alexey Dokuchaev Date: Mon, 13 Apr 2020 09:54:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r531588 - head/security/rhash X-SVN-Group: ports-head X-SVN-Commit-Author: danfe X-SVN-Commit-Paths: head/security/rhash X-SVN-Commit-Revision: 531588 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.29 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, 13 Apr 2020 09:54:36 -0000 Author: danfe Date: Mon Apr 13 09:54:35 2020 New Revision: 531588 URL: https://svnweb.freebsd.org/changeset/ports/531588 Log: Pull the community patch which yields some performance boost to RIPEMD-160 by interleaving the macro/function calls. Effect is more visible on older and less potent CPUs. Obtained from: https://sourceforge.net/p/rhash/patches/5/ Modified: head/security/rhash/Makefile head/security/rhash/distinfo Modified: head/security/rhash/Makefile ============================================================================== --- head/security/rhash/Makefile Mon Apr 13 09:53:06 2020 (r531587) +++ head/security/rhash/Makefile Mon Apr 13 09:54:35 2020 (r531588) @@ -7,9 +7,12 @@ CATEGORIES= security MASTER_SITES= SF DISTNAME= ${PORTNAME}-${PORTVERSION}-src -PATCH_SITES= https://gitweb.gentoo.org/repo/gentoo.git/plain/app-crypt/rhash/files/ \ - https://raw.githubusercontent.com/gentoo/gentoo/master/app-crypt/rhash/files/ -PATCHFILES= rhash-1.3.9-nls.patch:-p1 rhash-1.3.9-rc-segfault.patch:-p1 +PATCH_SITES= https://gitweb.gentoo.org/repo/gentoo.git/plain/app-crypt/rhash/files/:gentoo \ + https://raw.githubusercontent.com/gentoo/gentoo/master/app-crypt/rhash/files/:gentoo \ + https://sourceforge.net/p/rhash/patches/_discuss/thread/271b85e9/0ac7/attachment/:sf +PATCHFILES= rhash-1.3.9-nls.patch:-p1:gentoo \ + rhash-1.3.9-rc-segfault.patch:-p1:gentoo \ + rhash-1.3.2.patch:-p1:sf MAINTAINER= danfe@FreeBSD.org COMMENT= Utility and library for computing and checking of file hashes Modified: head/security/rhash/distinfo ============================================================================== --- head/security/rhash/distinfo Mon Apr 13 09:53:06 2020 (r531587) +++ head/security/rhash/distinfo Mon Apr 13 09:54:35 2020 (r531588) @@ -5,3 +5,5 @@ SHA256 (rhash-1.3.9-nls.patch) = 2e60e6e34d32296f8b6d0 SIZE (rhash-1.3.9-nls.patch) = 744 SHA256 (rhash-1.3.9-rc-segfault.patch) = 39e875cde8026fb609e1008d7afc7133474e104c5f823bd7552060d39ae7d891 SIZE (rhash-1.3.9-rc-segfault.patch) = 9662 +SHA256 (rhash-1.3.2.patch) = 9aeeb0d89f0203429a6f5433e7dd5fd4b621b34bc42fb6d5d32ede6279c990b0 +SIZE (rhash-1.3.2.patch) = 9021