[bug#76560] gnu: cpuinfo: Update to 0.0-5.b73ae6c.
Commit Message
* gnu/packages/parallel.scm (cpuinfo): Update to 0.0-5.b73ae6c.
Change-Id: I9e2335de54d26f23c02ceb1bdbfd4b61e8cef6f8
---
gnu/packages/parallel.scm | 9 +++++----
1 file changed, 5 insertions(+), 4 deletions(-)
base-commit: 5ccae0d1bf16c77466809671c17d410d4521a131
prerequisite-patch-id: 46bf75fe0635bbbe7d07adb809176a910127098c
prerequisite-patch-id: 5f1325073b602c32f0f3191617b0ef5b5ad85a96
prerequisite-patch-id: 9bef844d1c23e163090137d900bbd8e4f2561e9f
Comments
Hello,
Zheng Junjie <z572@z572.online> skribis:
> * gnu/packages/parallel.scm (cpuinfo): Update to 0.0-5.b73ae6c.
>
> Change-Id: I9e2335de54d26f23c02ceb1bdbfd4b61e8cef6f8
If “guix build -P1 cpuinfo” passes on x86_64, please push. (Too bad
qa.guix hasn’t caught up.)
Thank you!
Ludo’.
Ludovic Courtès <ludo@gnu.org> writes:
> Hello,
>
> Zheng Junjie <z572@z572.online> skribis:
>
>> * gnu/packages/parallel.scm (cpuinfo): Update to 0.0-5.b73ae6c.
>>
>> Change-Id: I9e2335de54d26f23c02ceb1bdbfd4b61e8cef6f8
>
> If “guix build -P1 cpuinfo” passes on x86_64, please push. (Too bad
> qa.guix hasn’t caught up.)
Thanks, bulid successed. pushed, closing.
>
> Thank you!
>
> Ludo’.
@@ -599,8 +599,8 @@ (define-public pthreadpool
(define-public cpuinfo
;; There's currently no tag on this repo.
(let ((version "0.0")
- (revision "4")
- (commit "ca156f7bc9109c552973414a63d310f76ef0cbf8"))
+ (revision "5")
+ (commit "b73ae6ce38d5dd0b7fe46dbe0a4b5f4bab91c7ea"))
(package
(name "cpuinfo")
(version (git-version version revision commit))
@@ -611,13 +611,14 @@ (define-public cpuinfo
(file-name (git-file-name name version))
(sha256
(base32
- "12ip6mnmymqhcbi8p98cn109y47pg9ygbj3k96r22dbmr77a50c4"))))
+ "0ibba4jssvjyd147dyj5lzijgxhmjxf0ishl1wykka1rblmxmli4"))))
(build-system cmake-build-system)
(arguments
(list
;; cpuinfo does not work in the build container for aarch64:
;; https://github.com/pytorch/cpuinfo/issues/143
- #:tests? (not (target-aarch64?))
+ #:tests? (not (or (target-aarch64?)
+ (target-riscv64?)))
#:configure-flags
'(list "-DBUILD_SHARED_LIBS=ON"
"-DUSE_SYSTEM_LIBS=ON")