From 602a5ef9f3714be8e7bbad6f4df89d59fb7e076a Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Sun, 10 Feb 2019 18:57:01 +0100 Subject: gnu: OpenBLAS: Update to 0.3.5. * gnu/packages/maths.scm (openblas): Update to 0.3.5. --- gnu/packages/maths.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/packages/maths.scm') diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm index 7d3ac773b3..34c72dadad 100644 --- a/gnu/packages/maths.scm +++ b/gnu/packages/maths.scm @@ -2930,7 +2930,7 @@ parts of it.") (define-public openblas (package (name "openblas") - (version "0.3.4") + (version "0.3.5") (source (origin (method url-fetch) @@ -2939,7 +2939,7 @@ parts of it.") (file-name (string-append name "-" version ".tar.gz")) (sha256 (base32 - "1s56lgilyyw86dzmj3jkci9zsg24n60wq4d0zri1hrxlxb6ihimj")))) + "062kg4ny1ywz7k5grpb4pbf0hba0w6manbajwkmv4f477a31sxpl")))) (build-system gnu-build-system) (arguments `(#:test-target "test" -- cgit v1.2.3 From 5855756c81041bd7dd81ae45f473e1c116e2a0f2 Mon Sep 17 00:00:00 2001 From: Eric Bavier Date: Thu, 21 Feb 2019 21:01:26 -0600 Subject: gnu: openblas: Honor parallel-job-count. * gnu/packages/maths.scm (openblas)[arguments]: Add "MAKE_NB_JOBS" make flag. --- gnu/packages/maths.scm | 1 + 1 file changed, 1 insertion(+) (limited to 'gnu/packages/maths.scm') diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm index 7a03036b67..c3587007df 100644 --- a/gnu/packages/maths.scm +++ b/gnu/packages/maths.scm @@ -2956,6 +2956,7 @@ parts of it.") #:make-flags (list (string-append "PREFIX=" (assoc-ref %outputs "out")) "SHELL=bash" + "MAKE_NB_JOBS=0" ;use jobserver for submakes ;; Build the library for all supported CPUs. This allows ;; switching CPU targets at runtime with the environment variable ;; OPENBLAS_CORETYPE=, where "type" is a supported CPU type. -- cgit v1.2.3 From a4de1a651e75c9b9d5e6bdb993f5bd5f74875d49 Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Sun, 10 Mar 2019 17:50:10 +0100 Subject: gnu: double-conversion: Update to 3.1.3. * gnu/packages/maths.scm (double-conversion): Update to 3.1.3. [source](uri): Adjust for version tag prefix. --- gnu/packages/maths.scm | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'gnu/packages/maths.scm') diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm index dd14ce573e..687fa3b61a 100644 --- a/gnu/packages/maths.scm +++ b/gnu/packages/maths.scm @@ -324,15 +324,16 @@ enough to be used effectively as a scientific calculator.") (define-public double-conversion (package (name "double-conversion") - (version "3.1.0") + (version "3.1.3") (home-page "https://github.com/google/double-conversion") (source (origin (method git-fetch) - (uri (git-reference (url home-page) (commit version))) + (uri (git-reference (url home-page) + (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 (base32 - "123rb2p4snqagrybw66vnapchqdwn2rfpr1wcq0ya9gwbyl7xccx")))) + "082w15xq8f4c422a71phvcahgc8vmqrig97av9g9628q5n2ybbgg")))) (build-system cmake-build-system) (arguments '(#:test-target "test" -- cgit v1.2.3 From c958c31caefb20c32cf89caea7d4668d7021a92b Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Thu, 14 Mar 2019 14:37:57 +0100 Subject: gnu: double-conversion: Update to 3.1.4. * gnu/packages/maths.scm (double-conversion): Update to 3.1.4. --- gnu/packages/maths.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/packages/maths.scm') diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm index 687fa3b61a..2781761474 100644 --- a/gnu/packages/maths.scm +++ b/gnu/packages/maths.scm @@ -324,7 +324,7 @@ enough to be used effectively as a scientific calculator.") (define-public double-conversion (package (name "double-conversion") - (version "3.1.3") + (version "3.1.4") (home-page "https://github.com/google/double-conversion") (source (origin (method git-fetch) @@ -333,7 +333,7 @@ enough to be used effectively as a scientific calculator.") (file-name (git-file-name name version)) (sha256 (base32 - "082w15xq8f4c422a71phvcahgc8vmqrig97av9g9628q5n2ybbgg")))) + "13xwcqk2c0q8c1siw566clxcpvp0xrxvb72mra42wa3nvq9wlsv6")))) (build-system cmake-build-system) (arguments '(#:test-target "test" -- cgit v1.2.3