unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#65133] [PATCH 0/2] Update googlebenchmark.
@ 2023-08-07 19:15 Greg Hogan
  2023-08-07 19:21 ` [bug#65133] [PATCH 1/2] gnu: googlebenchmark: Update to 1.8.2 Greg Hogan
  0 siblings, 1 reply; 4+ messages in thread
From: Greg Hogan @ 2023-08-07 19:15 UTC (permalink / raw)
  To: 65133; +Cc: Greg Hogan

Greg Hogan (2):
  gnu: googlebenchmark: Update to 1.8.2.
  gnu: python-pyro-ppl: Update to 1.8.6.

 gnu/packages/check.scm            | 4 ++--
 gnu/packages/machine-learning.scm | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

-- 
2.41.0





^ permalink raw reply	[flat|nested] 4+ messages in thread

* [bug#65133] [PATCH 1/2] gnu: googlebenchmark: Update to 1.8.2.
  2023-08-07 19:15 [bug#65133] [PATCH 0/2] Update googlebenchmark Greg Hogan
@ 2023-08-07 19:21 ` Greg Hogan
  2023-08-07 19:21   ` [bug#65133] [PATCH 2/2] gnu: python-pyro-ppl: Update to 1.8.6 Greg Hogan
  2023-08-21 13:54   ` bug#65133: [PATCH 0/2] Update googlebenchmark Ludovic Courtès
  0 siblings, 2 replies; 4+ messages in thread
From: Greg Hogan @ 2023-08-07 19:21 UTC (permalink / raw)
  To: 65133; +Cc: Greg Hogan

* gnu/packages/check.scm (googlebenchmark): Update to 1.8.2.
---
 gnu/packages/check.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm
index 1d70ea9fe0..c057bf3443 100644
--- a/gnu/packages/check.scm
+++ b/gnu/packages/check.scm
@@ -978,7 +978,7 @@ (define-public googletest-1.8
 (define-public googlebenchmark
   (package
     (name "googlebenchmark")
-    (version "1.5.3")
+    (version "1.8.2")
     (home-page "https://github.com/google/benchmark")
     (source (origin
               (method git-fetch)
@@ -987,7 +987,7 @@ (define-public googlebenchmark
               (file-name (git-file-name "google-benchmark" version))
               (sha256
                (base32
-                "1hls0aqqj5cfldn9jfpvzjhpxkhrydrz9crp477rwllwjsybdxw7"))))
+                "1p72bw7xcd88d8268fmmzji59408f552fbiv37jmsixml5dmq9wv"))))
     (build-system cmake-build-system)
     (arguments
      '(#:configure-flags (list "-DBUILD_SHARED_LIBS=ON"
-- 
2.41.0





^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [bug#65133] [PATCH 2/2] gnu: python-pyro-ppl: Update to 1.8.6.
  2023-08-07 19:21 ` [bug#65133] [PATCH 1/2] gnu: googlebenchmark: Update to 1.8.2 Greg Hogan
@ 2023-08-07 19:21   ` Greg Hogan
  2023-08-21 13:54   ` bug#65133: [PATCH 0/2] Update googlebenchmark Ludovic Courtès
  1 sibling, 0 replies; 4+ messages in thread
From: Greg Hogan @ 2023-08-07 19:21 UTC (permalink / raw)
  To: 65133; +Cc: Greg Hogan

* gnu/packages/machine-learning.scm (python-pyro-ppl): Update to 1.8.6.
---
 gnu/packages/machine-learning.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/machine-learning.scm b/gnu/packages/machine-learning.scm
index 3923573d57..f931626cd6 100644
--- a/gnu/packages/machine-learning.scm
+++ b/gnu/packages/machine-learning.scm
@@ -4422,7 +4422,7 @@ (define-public python-pyro-api
 (define-public python-pyro-ppl
   (package
     (name "python-pyro-ppl")
-    (version "1.8.1")
+    (version "1.8.6")
     ;; The sources on pypi don't include tests.
     (source
      (origin
@@ -4432,7 +4432,7 @@ (define-public python-pyro-ppl
              (commit version)))
        (file-name (git-file-name name version))
        (sha256
-        (base32 "0ns20mr8qgjshzbplrfzaz1xhb9ldbgvrj2rzlsxvns2bi1ddyl5"))))
+        (base32 "0n1vsih99pvswcaygdxkc6kq6r48ny130z6ca8pp3281396r2ykw"))))
     (build-system python-build-system)
     (arguments
      `(#:phases
-- 
2.41.0





^ permalink raw reply related	[flat|nested] 4+ messages in thread

* bug#65133: [PATCH 0/2] Update googlebenchmark.
  2023-08-07 19:21 ` [bug#65133] [PATCH 1/2] gnu: googlebenchmark: Update to 1.8.2 Greg Hogan
  2023-08-07 19:21   ` [bug#65133] [PATCH 2/2] gnu: python-pyro-ppl: Update to 1.8.6 Greg Hogan
@ 2023-08-21 13:54   ` Ludovic Courtès
  1 sibling, 0 replies; 4+ messages in thread
From: Ludovic Courtès @ 2023-08-21 13:54 UTC (permalink / raw)
  To: Greg Hogan; +Cc: 65133-done

Greg Hogan <code@greghogan.com> skribis:

> * gnu/packages/check.scm (googlebenchmark): Update to 1.8.2.

Applied, thanks!




^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2023-08-21 13:55 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-08-07 19:15 [bug#65133] [PATCH 0/2] Update googlebenchmark Greg Hogan
2023-08-07 19:21 ` [bug#65133] [PATCH 1/2] gnu: googlebenchmark: Update to 1.8.2 Greg Hogan
2023-08-07 19:21   ` [bug#65133] [PATCH 2/2] gnu: python-pyro-ppl: Update to 1.8.6 Greg Hogan
2023-08-21 13:54   ` bug#65133: [PATCH 0/2] Update googlebenchmark Ludovic Courtès

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).