unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#57707] [PATCH core-updates 0/2] Upgrade googletest.
@ 2022-09-09 18:56 Greg Hogan
  2022-09-09 18:58 ` [bug#57707] [PATCH core-updates 1/2] gnu: googletest: Update to 1.12.1 Greg Hogan
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Greg Hogan @ 2022-09-09 18:56 UTC (permalink / raw)
  To: 57707; +Cc: Greg Hogan

Greg Hogan (2):
  gnu: googletest: Update to 1.12.1.
  gnu: abseil-cpp: Re-enable testing.

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

-- 
2.37.3





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

* [bug#57707] [PATCH core-updates 1/2] gnu: googletest: Update to 1.12.1.
  2022-09-09 18:56 [bug#57707] [PATCH core-updates 0/2] Upgrade googletest Greg Hogan
@ 2022-09-09 18:58 ` Greg Hogan
  2022-09-09 18:58 ` [bug#57707] [PATCH core-updates 2/2] gnu: abseil-cpp: Re-enable testing Greg Hogan
  2022-09-16 20:46 ` bug#57707: [PATCH core-updates 0/2] Upgrade googletest Marius Bakke
  2 siblings, 0 replies; 4+ messages in thread
From: Greg Hogan @ 2022-09-09 18:58 UTC (permalink / raw)
  To: 57707; +Cc: Greg Hogan

* gnu/packages/check.scm (googletest): Update to 1.12.1.
---
 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 d7920ee27b..9e12363930 100644
--- a/gnu/packages/check.scm
+++ b/gnu/packages/check.scm
@@ -723,7 +723,7 @@ (define-public go-github.com-smartystreets-goconvey
 (define-public googletest
   (package
     (name "googletest")
-    (version "1.11.0")
+    (version "1.12.1")
     (source
      (origin
        (method git-fetch)
@@ -732,7 +732,7 @@ (define-public googletest
              (commit (string-append "release-" version))))
        (file-name (git-file-name name version))
        (sha256
-        (base32 "0pd4y1gpx1z8fiyarkvqlmk6hbv0lc8fr00ivnsvqzi1xg34jfaa"))))
+        (base32 "1cv55x3amwrvfan9pr8dfnicwr8r6ar3yf6cg9v6nykd6m2v3qsv"))))
     (build-system cmake-build-system)
     (arguments
      `(#:configure-flags '("-DBUILD_SHARED_LIBS=ON")))
-- 
2.37.3





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

* [bug#57707] [PATCH core-updates 2/2] gnu: abseil-cpp: Re-enable testing.
  2022-09-09 18:56 [bug#57707] [PATCH core-updates 0/2] Upgrade googletest Greg Hogan
  2022-09-09 18:58 ` [bug#57707] [PATCH core-updates 1/2] gnu: googletest: Update to 1.12.1 Greg Hogan
@ 2022-09-09 18:58 ` Greg Hogan
  2022-09-16 20:46 ` bug#57707: [PATCH core-updates 0/2] Upgrade googletest Marius Bakke
  2 siblings, 0 replies; 4+ messages in thread
From: Greg Hogan @ 2022-09-09 18:58 UTC (permalink / raw)
  To: 57707; +Cc: Greg Hogan

* gnu/packages/cpp.scm (abseil-cpp)[arguments]<#:configure-flags>:
Match upstream rename of BUILD_TESTING to ABSL_BUILD_TESTING.
---
 gnu/packages/cpp.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnu/packages/cpp.scm b/gnu/packages/cpp.scm
index f00317e949..c29785d256 100644
--- a/gnu/packages/cpp.scm
+++ b/gnu/packages/cpp.scm
@@ -1036,7 +1036,7 @@ (define-public abseil-cpp
       (arguments
        (substitute-keyword-arguments (package-arguments base)
          ((#:configure-flags flags)
-          `(cons* "-DBUILD_TESTING=ON"
+          `(cons* "-DABSL_BUILD_TESTING=ON"
                   (delete "-DABSL_RUN_TESTS=ON" ,flags))))))))
 
 (define-public pegtl
-- 
2.37.3





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

* bug#57707: [PATCH core-updates 0/2] Upgrade googletest.
  2022-09-09 18:56 [bug#57707] [PATCH core-updates 0/2] Upgrade googletest Greg Hogan
  2022-09-09 18:58 ` [bug#57707] [PATCH core-updates 1/2] gnu: googletest: Update to 1.12.1 Greg Hogan
  2022-09-09 18:58 ` [bug#57707] [PATCH core-updates 2/2] gnu: abseil-cpp: Re-enable testing Greg Hogan
@ 2022-09-16 20:46 ` Marius Bakke
  2 siblings, 0 replies; 4+ messages in thread
From: Marius Bakke @ 2022-09-16 20:46 UTC (permalink / raw)
  To: Greg Hogan, 57707-done; +Cc: Greg Hogan

[-- Attachment #1: Type: text/plain, Size: 258 bytes --]

Greg Hogan <code@greghogan.com> skriver:

> Greg Hogan (2):
>   gnu: googletest: Update to 1.12.1.
>   gnu: abseil-cpp: Re-enable testing.

Pushed in:

  85c7e40ca8 gnu: googletest: Update to 1.12.1.
  5339cb1161 gnu: abseil-cpp: Re-enable testing.

Thanks!

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 247 bytes --]

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

end of thread, other threads:[~2022-09-16 20:49 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-09-09 18:56 [bug#57707] [PATCH core-updates 0/2] Upgrade googletest Greg Hogan
2022-09-09 18:58 ` [bug#57707] [PATCH core-updates 1/2] gnu: googletest: Update to 1.12.1 Greg Hogan
2022-09-09 18:58 ` [bug#57707] [PATCH core-updates 2/2] gnu: abseil-cpp: Re-enable testing Greg Hogan
2022-09-16 20:46 ` bug#57707: [PATCH core-updates 0/2] Upgrade googletest Marius Bakke

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).