Mathieu, Thank you for the recommendation. I had changed the source to the official github repo to enable the version check by the refresh updater. Can the git tag not be regenerated in the same way as archive uploads? New patch follows. Greg From f02afcd187e7a11c84228f87a767094305f7f0eb Mon Sep 17 00:00:00 2001 From: Greg Hogan Date: Thu, 17 Sep 2020 15:32:50 +0000 Subject: [PATCH] gnu: openblas: Update to 0.3.10. * gnu/packages/maths.scm (openblas): Update to 0.3.10 and fetch from github. --- gnu/packages/maths.scm | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm index df4d39f900..1ed1e0511b 100644 --- a/gnu/packages/maths.scm +++ b/gnu/packages/maths.scm @@ -3609,16 +3609,17 @@ parts of it.") (define-public openblas (package (name "openblas") - (version "0.3.9") + (version "0.3.10") (source (origin - (method url-fetch) - (uri (string-append "mirror://sourceforge/openblas/v" version "/OpenBLAS%20" - version "%20version.tar.gz")) - (file-name (string-append name "-" version ".tar.gz")) + (method git-fetch) + (uri (git-reference + (url "https://github.com/xianyi/OpenBLAS") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) (sha256 (base32 - "14iz9xnrb9xiwgj84j94mc74gg0zn2vsy9fmsijxxma1n7dck4w3")))) + "174id98ga82bhz2v7sy9yj6pqy0h0088p3mkdikip69p9rh3d17b")))) (build-system gnu-build-system) (arguments `(#:test-target "test" -- 2.28.0 On Thu, Sep 17, 2020 at 9:58 AM Mathieu Othacehe wrote: > > Hello Greg, > > > * gnu/packages/maths.scm (openblas): Update to 0.3.10 and fetch from > github. > > We prefer not to use the github archives that can be > regenerated. If it is really necessary to switch to github then you can > use the "git-fetch" method. > > Could you please send an updated patch? > > Thanks, > > Mathieu >