svn commit: r475150 - head/lang/rust

Jean-Sébastien Pédron dumbbell at FreeBSD.org
Mon Jul 23 07:32:24 UTC 2018


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 <ml+freebsd at vishwin.info>
  Reported by:	Charlie Li <ml+freebsd at vishwin.info>

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; \


More information about the svn-ports-all mailing list