Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.netbsd.org", Issuer "Postmaster NetBSD.org" (verified OK)) by mollari.NetBSD.org (Postfix) with ESMTPS id A66247A1B1 for ; Sun, 8 Jan 2017 14:38:14 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 4AB0A8563F; Sun, 8 Jan 2017 14:38:14 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id CCD1D8559B for ; Sun, 8 Jan 2017 14:38:13 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id KmGdiiOUOgnr for ; Sun, 8 Jan 2017 14:38:13 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 568C685579 for ; Sun, 8 Jan 2017 14:38:13 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 4DCFCFBA6; Sun, 8 Jan 2017 14:38:13 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1483886293189800" MIME-Version: 1.0 Date: Sun, 8 Jan 2017 14:38:13 +0000 From: "Maya Rashish" Subject: CVS commit: pkgsrc/lang/rust To: pkgsrc-changes@NetBSD.org Reply-To: maya@netbsd.org X-Mailer: log_accum Message-Id: <20170108143813.4DCFCFBA6@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk This is a multi-part message in MIME format. --_----------=_1483886293189800 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: maya Date: Sun Jan 8 14:38:13 UTC 2017 Modified Files: pkgsrc/lang/rust: distinfo Added Files: pkgsrc/lang/rust/patches: patch-configure Log Message: rust: match newer versions of llvm, too. while I didn't complete the build, it is likely necessary, as pkgsrc llvm is 3.9 and doesn't match this test. To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 pkgsrc/lang/rust/distinfo cvs rdiff -u -r0 -r1.1 pkgsrc/lang/rust/patches/patch-configure Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1483886293189800 Content-Disposition: inline Content-Length: 1944 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/lang/rust/distinfo diff -u pkgsrc/lang/rust/distinfo:1.3 pkgsrc/lang/rust/distinfo:1.4 --- pkgsrc/lang/rust/distinfo:1.3 Tue Sep 13 12:37:08 2016 +++ pkgsrc/lang/rust/distinfo Sun Jan 8 14:38:13 2017 @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.3 2016/09/13 12:37:08 ryoon Exp $ +$NetBSD: distinfo,v 1.4 2017/01/08 14:38:13 maya Exp $ SHA1 (rust-1.10.0-i686-unknown-linux-gnu.tar.gz) = aded64d8ddc5d286ffc81de21c6a8c47951ac329 RMD160 (rust-1.10.0-i686-unknown-linux-gnu.tar.gz) = 9248526a5f9656e083a221f0931f9cec6b1a0726 @@ -24,6 +24,7 @@ SHA1 (rustc-1.11.0-src.tar.gz) = d4c7177 RMD160 (rustc-1.11.0-src.tar.gz) = ada0761c38febb423677c1b8bb2fd5c8fee05d53 SHA512 (rustc-1.11.0-src.tar.gz) = 6ad050a02e3a3b48f205f5d5ed9393fd2a1a2237e5c78b3e51af8162f410b93a831ebe5980ce78c4d38c5a692395c7fec8442956497a5d21e9f7157404c6b5aa Size (rustc-1.11.0-src.tar.gz) = 26126471 bytes +SHA1 (patch-configure) = df5fb89bb04be3844fba78e0adea5c0a2901e376 SHA1 (patch-mk_cfg_x86__64-apple-darwin.mk) = 37b50b64ea5607588d541852e07f02a4611d38c8 SHA1 (patch-mk_rt.mk) = 51238ae320b47296546537aeb050773511049d11 SHA1 (patch-mk_rustllvm.mk) = 500ce129d9ea83fc97317679b45a79f12c8ca9e8 Added files: Index: pkgsrc/lang/rust/patches/patch-configure diff -u /dev/null pkgsrc/lang/rust/patches/patch-configure:1.1 --- /dev/null Sun Jan 8 14:38:13 2017 +++ pkgsrc/lang/rust/patches/patch-configure Sun Jan 8 14:38:13 2017 @@ -0,0 +1,18 @@ +$NetBSD: patch-configure,v 1.1 2017/01/08 14:38:13 maya Exp $ + +match newer versions of llvm + +--- configure.orig 2016-08-16 01:54:35.000000000 +0000 ++++ configure +@@ -991,7 +991,10 @@ then + LLVM_VERSION=$($LLVM_CONFIG --version) + + case $LLVM_VERSION in +- (3.[7-8]*) ++ (3.[789]*) ++ msg "found ok version of LLVM: $LLVM_VERSION" ++ ;; ++ (4.*) + msg "found ok version of LLVM: $LLVM_VERSION" + ;; + (*) --_----------=_1483886293189800--