guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch master updated: gnu: gperftools: Update to 2.8.1.


From: guix-commits
Subject: branch master updated: gnu: gperftools: Update to 2.8.1.
Date: Thu, 18 Feb 2021 13:04:13 -0500

This is an automated email from the git hooks/post-receive script.

lfam pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 7cd0247  gnu: gperftools: Update to 2.8.1.
7cd0247 is described below

commit 7cd0247eb4d22d47f76e26fd7b65ec45cb5d7ccb
Author: Greg Hogan <code@greghogan.com>
AuthorDate: Thu Feb 11 19:08:35 2021 +0000

    gnu: gperftools: Update to 2.8.1.
    
    * gnu/packages/cpp.scm (gperftools): Update to 2.8.1.
    [arguments]: Set '#:parallel-tests? #f'.
    
    Co-authored-by: Leo Famulari <leo@famulari.name>
---
 gnu/packages/cpp.scm | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/cpp.scm b/gnu/packages/cpp.scm
index ae47490..331afc2 100644
--- a/gnu/packages/cpp.scm
+++ b/gnu/packages/cpp.scm
@@ -512,7 +512,7 @@ maintained anymore.")
 (define-public gperftools
   (package
     (name "gperftools")
-    (version "2.8")
+    (version "2.8.1")
     (source
      (origin
        (method git-fetch)
@@ -520,9 +520,13 @@ maintained anymore.")
              (url "https://github.com/gperftools/gperftools";)
              (commit (string-append "gperftools-" version))))
        (sha256
-        (base32 "1rnc53kaxlljgbpsff906vdsry9jl9gcvcnmxgkprwzxq1wipyd0"))
+        (base32 "19bj2vlsbfwq7m826v2ccqg47kd7cb5vcz1yw2x0v5qzhaxbakk1"))
        (file-name (git-file-name name version))))
     (build-system gnu-build-system)
+    (arguments
+      ;; The tests are flaky when run in parallel. For more info:
+      ;; https://bugs.gnu.org/46562
+     '(#:parallel-tests? #f))
     (native-inputs
      `(("autoconf" ,autoconf)
        ("automake" ,automake)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]