This is an automated email from the git hooks/post-receive script.
guix_mirror_bot pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new 91d340fe46 gnu: cpuinfo: Update to 0.0-6.b3b2596.
91d340fe46 is described below
commit 91d340fe46bca0a421cb82868753cfa491732210
Author: Cayetano Santos <[email protected]>
AuthorDate: Fri Jan 2 18:05:19 2026 +0100
gnu: cpuinfo: Update to 0.0-6.b3b2596.
* gnu/packages/parallel.scm (cpuinfo): Update to 0.0-6.b3b2596.
[native-inputs]: Add python-wrapper.
[arguments]<#:phases>: Remove ’skip-bad-test.
<#:configure-flags>: Use G-Expressions.
Merges guix/guix#5315
Change-Id: I3e69d6aea35656beda8992bab5114ddddad03872
---
gnu/packages/parallel.scm | 23 ++++++++---------------
1 file changed, 8 insertions(+), 15 deletions(-)
diff --git a/gnu/packages/parallel.scm b/gnu/packages/parallel.scm
index 07d1a9d229..eb20ef1c8d 100644
--- a/gnu/packages/parallel.scm
+++ b/gnu/packages/parallel.scm
@@ -625,12 +625,11 @@ features.")
(define-public cpuinfo
;; There's currently no tag on this repo.
- (let ((version "0.0")
- (revision "5")
- (commit "b73ae6ce38d5dd0b7fe46dbe0a4b5f4bab91c7ea"))
+ (let ((revision "6")
+ (commit "b3b25967b5b80406304d575321e572c5f9e5e3c4"))
(package
(name "cpuinfo")
- (version (git-version version revision commit))
+ (version (git-version "0.0" revision commit))
(home-page "https://github.com/pytorch/cpuinfo")
(source (origin
(method git-fetch)
@@ -638,7 +637,7 @@ features.")
(file-name (git-file-name name version))
(sha256
(base32
- "0ibba4jssvjyd147dyj5lzijgxhmjxf0ishl1wykka1rblmxmli4"))))
+ "02i4sf6bgw25xsaarbialw9n9plqxqblvh7pjz2sw6cvz1r5n6c6"))))
(build-system cmake-build-system)
(arguments
(list
@@ -647,18 +646,12 @@ features.")
#:tests? (not (or (target-aarch64?)
(target-riscv64?)))
#:configure-flags
- '(list "-DBUILD_SHARED_LIBS=ON"
- "-DUSE_SYSTEM_LIBS=ON")
- #:phases
- '(modify-phases %standard-phases
- (add-after 'unpack 'skip-bad-test
- (lambda _
- (substitute* "test/init.cc"
- (("TEST\\(CORE, known_uarch\\) \\{" m)
- (string-append m "\
-GTEST_SKIP() << \"See https://github.com/pytorch/cpuinfo/issues/132\";"))))))))
+ #~(list "-DBUILD_SHARED_LIBS=ON"
+ "-DUSE_SYSTEM_LIBS=ON")))
(inputs
(list googletest-1.13 googlebenchmark))
+ (native-inputs
+ (list python-wrapper))
(synopsis "C/C++ library to obtain information about the CPU")
(description
"The cpuinfo library provides a C/C++ and a command-line interface to