From owner-svn-ports-head@freebsd.org Mon Jul 23 07:32:24 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 25DE81041DB0; Mon, 23 Jul 2018 07:32:24 +0000 (UTC) (envelope-from dumbbell@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id C4A3097F9D; Mon, 23 Jul 2018 07:32:23 +0000 (UTC) (envelope-from dumbbell@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 A5CBA19A0B; Mon, 23 Jul 2018 07:32:23 +0000 (UTC) (envelope-from dumbbell@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w6N7WNTQ006972; Mon, 23 Jul 2018 07:32:23 GMT (envelope-from dumbbell@FreeBSD.org) Received: (from dumbbell@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w6N7WNWN006971; Mon, 23 Jul 2018 07:32:23 GMT (envelope-from dumbbell@FreeBSD.org) Message-Id: <201807230732.w6N7WNWN006971@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dumbbell set sender to dumbbell@FreeBSD.org using -f From: =?UTF-8?Q?Jean-S=c3=a9bastien_P=c3=a9dron?= Date: Mon, 23 Jul 2018 07:32:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r475150 - head/lang/rust X-SVN-Group: ports-head X-SVN-Commit-Author: dumbbell X-SVN-Commit-Paths: head/lang/rust X-SVN-Commit-Revision: 475150 X-SVN-Commit-Repository: ports 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.27 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: Mon, 23 Jul 2018 07:32:24 -0000 Author: dumbbell Date: Mon Jul 23 07:32:23 2018 New Revision: 475150 URL: https://svnweb.freebsd.org/changeset/ports/475150 Log: lang/rust: Udpate checksums in libgit2-sys/.cargo-checksum.json It was part of the initial patch from Charlie Li to support LibreSSL 2.7. However, I misread it and though he was only removing bits which were not needed anymore (updating checksums for openssl and openssl-sys). Now, we update all three: libgit2-sys, openssl and openssl-sys. PR: 226955 Submitted by: Charlie Li Reported by: Charlie Li Modified: head/lang/rust/Makefile Modified: head/lang/rust/Makefile ============================================================================== --- head/lang/rust/Makefile Mon Jul 23 06:55:51 2018 (r475149) +++ head/lang/rust/Makefile Mon Jul 23 07:32:23 2018 (r475150) @@ -156,7 +156,10 @@ post-patch: ${WRKSRC}/src/stage0.txt # After patching crates, we need to update their corresponding # `.cargo-checksum.json` to reflect the new checksums verified by Cargo. - @for dir in "${WRKSRC}/src/vendor/libc" "${WRKSRC}/src/vendor/openssl" "${WRKSRC}/src/vendor/openssl-sys"; do \ + @for dir in "${WRKSRC}/src/vendor/libc" \ + "${WRKSRC}/src/vendor/libgit2-sys" \ + "${WRKSRC}/src/vendor/openssl" \ + "${WRKSRC}/src/vendor/openssl-sys"; do \ if ! test -d "$$dir"; then \ continue; \ fi; \