GNU bug report logs - #57707
[PATCH core-updates 0/2] Upgrade googletest.

Previous Next

Package: guix-patches;

Reported by: Greg Hogan <code <at> greghogan.com>

Date: Fri, 9 Sep 2022 18:57:02 UTC

Severity: normal

Tags: patch

Done: Marius Bakke <marius <at> gnu.org>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 57707 in the body.
You can then email your comments to 57707 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to guix-patches <at> gnu.org:
bug#57707; Package guix-patches. (Fri, 09 Sep 2022 18:57:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to Greg Hogan <code <at> greghogan.com>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Fri, 09 Sep 2022 18:57:02 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Greg Hogan <code <at> greghogan.com>
To: guix-patches <at> gnu.org
Cc: Greg Hogan <code <at> greghogan.com>
Subject: [PATCH core-updates 0/2] Upgrade googletest.
Date: Fri,  9 Sep 2022 18:56:39 +0000
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





Information forwarded to guix-patches <at> gnu.org:
bug#57707; Package guix-patches. (Fri, 09 Sep 2022 18:59:02 GMT) Full text and rfc822 format available.

Message #8 received at 57707 <at> debbugs.gnu.org (full text, mbox):

From: Greg Hogan <code <at> greghogan.com>
To: 57707 <at> debbugs.gnu.org
Cc: Greg Hogan <code <at> greghogan.com>
Subject: [PATCH core-updates 1/2] gnu: googletest: Update to 1.12.1.
Date: Fri,  9 Sep 2022 18:58:32 +0000
* 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





Information forwarded to guix-patches <at> gnu.org:
bug#57707; Package guix-patches. (Fri, 09 Sep 2022 18:59:03 GMT) Full text and rfc822 format available.

Message #11 received at 57707 <at> debbugs.gnu.org (full text, mbox):

From: Greg Hogan <code <at> greghogan.com>
To: 57707 <at> debbugs.gnu.org
Cc: Greg Hogan <code <at> greghogan.com>
Subject: [PATCH core-updates 2/2] gnu: abseil-cpp: Re-enable testing.
Date: Fri,  9 Sep 2022 18:58:33 +0000
* 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





Reply sent to Marius Bakke <marius <at> gnu.org>:
You have taken responsibility. (Fri, 16 Sep 2022 20:48:01 GMT) Full text and rfc822 format available.

Notification sent to Greg Hogan <code <at> greghogan.com>:
bug acknowledged by developer. (Fri, 16 Sep 2022 20:48:02 GMT) Full text and rfc822 format available.

Message #16 received at 57707-done <at> debbugs.gnu.org (full text, mbox):

From: Marius Bakke <marius <at> gnu.org>
To: Greg Hogan <code <at> greghogan.com>, 57707-done <at> debbugs.gnu.org
Cc: Greg Hogan <code <at> greghogan.com>
Subject: Re: [bug#57707] [PATCH core-updates 0/2] Upgrade googletest.
Date: Fri, 16 Sep 2022 22:46:54 +0200
[Message part 1 (text/plain, inline)]
Greg Hogan <code <at> 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!
[signature.asc (application/pgp-signature, inline)]

bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Sat, 15 Oct 2022 11:24:04 GMT) Full text and rfc822 format available.

This bug report was last modified 1 year and 194 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.