From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:46222) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jR24d-0000SI-Ee for guix-patches@gnu.org; Tue, 21 Apr 2020 19:13:03 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.90_1) (envelope-from ) id 1jR24c-0000od-VQ for guix-patches@gnu.org; Tue, 21 Apr 2020 19:13:03 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:39372) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.90_1) (envelope-from ) id 1jR24c-0000mC-3l for guix-patches@gnu.org; Tue, 21 Apr 2020 19:13:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1jR24b-00080d-TA for guix-patches@gnu.org; Tue, 21 Apr 2020 19:13:01 -0400 Subject: [bug#40755] OpenBLAS minor update to 0.3.9 Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:42386) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jR23r-0000MN-6m for guix-patches@gnu.org; Tue, 21 Apr 2020 19:12:15 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.90_1) (envelope-from ) id 1jR23o-0006N8-Ae for guix-patches@gnu.org; Tue, 21 Apr 2020 19:12:13 -0400 Received: from 216-80-121-173.s13.demp-ubr2.chi-demp.il.static.cable.rcncustomer.com ([216.80.121.173]:57923 helo=ericcbrown.com) by eggs.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jR23m-0006GX-9P for guix-patches@gnu.org; Tue, 21 Apr 2020 19:12:11 -0400 Received: from localhost (unknown [192.168.1.1]) by ericcbrown.com (Postfix) with ESMTPSA id 5D215499AB9A for ; Tue, 21 Apr 2020 18:12:08 -0500 (CDT) From: Eric Brown Date: Tue, 21 Apr 2020 18:12:08 -0500 Message-ID: <87zhb4ph6f.fsf@ericcbrown.com> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 40755@debbugs.gnu.org --=-=-= Content-Type: text/plain Hello Guix: Please see attached diff which updates openblas and openblas-ilp64 to 0.3.9. Cheers, Eric --=-=-= Content-Type: text/x-patch Content-Disposition: inline; filename=0001-gnu-openblas-Update-to-0.3.9.patch Content-Description: openblas >From b5c50e08cd87b8a81406f1196dbdf96346a80c3a Mon Sep 17 00:00:00 2001 From: Eric Brown Date: Tue, 21 Apr 2020 18:09:34 -0500 Subject: [PATCH] gnu: openblas: Update to 0.3.9 * gnu/packages/maths.scm (openblas): Update to 0.3.9 --- gnu/packages/maths.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm index 7db2b31012..8255a4089f 100644 --- a/gnu/packages/maths.scm +++ b/gnu/packages/maths.scm @@ -3243,7 +3243,7 @@ parts of it.") (define-public openblas (package (name "openblas") - (version "0.3.7") + (version "0.3.9") (source (origin (method url-fetch) @@ -3252,7 +3252,7 @@ parts of it.") (file-name (string-append name "-" version ".tar.gz")) (sha256 (base32 - "0jbdjsi0qsxahdcm42agnn1y7xpmg0hrhwjsxg0zbhs9wwy3p568")))) + "14iz9xnrb9xiwgj84j94mc74gg0zn2vsy9fmsijxxma1n7dck4w3")))) (build-system gnu-build-system) (arguments `(#:test-target "test" -- 2.26.2 --=-=-=--