unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#68615] [PATCH] gnu: immer: Update to 0.8.1.
@ 2024-01-20 17:44 Liliana Marie Prikler
  2024-01-28 17:23 ` bug#68615: " Liliana Marie Prikler
  0 siblings, 1 reply; 2+ messages in thread
From: Liliana Marie Prikler @ 2024-01-20 17:44 UTC (permalink / raw)
  To: 68615

* gnu/packages/cpp.scm (immer): Update to 0.8.1.
[source]: Drop modules and snippet.
[arguments]: Add #:configure-flags to disable -Werror.
---
 gnu/packages/cpp.scm | 19 ++++++-------------
 1 file changed, 6 insertions(+), 13 deletions(-)

diff --git a/gnu/packages/cpp.scm b/gnu/packages/cpp.scm
index f65506dcec..b72915fa3d 100644
--- a/gnu/packages/cpp.scm
+++ b/gnu/packages/cpp.scm
@@ -1628,7 +1628,7 @@ (define-public libexpected
 (define-public immer
   (package
    (name "immer")
-   (version "0.8.0")
+   (version "0.8.1")
    (source (origin
             (method git-fetch)
             (uri (git-reference
@@ -1636,19 +1636,12 @@ (define-public immer
                   (commit (string-append "v" version))))
             (file-name (git-file-name name version))
             (sha256
-             (base32 "11km3l5h3rgsbj8yfyzk3fnx9na55l6zs2sxpx922yvlvs2blh27"))
-            (modules '((guix build utils)))
-            (snippet #~(begin
-                         (delete-file "tools/include/doctest.h")
-                         (delete-file "tools/include/catch.hpp")
-                         (substitute* (find-files "test" "\\.[cih]pp")
-                           (("<catch.hpp>") "<catch2/catch.hpp>")
-                           (("<doctest.h>") "<doctest/doctest.h>"))
-                         (substitute* (find-files "test/oss-fuzz" "\\.cpp")
-                           ;; someone used the wrong header :)
-                           (("<fmt/printf.h>") "<fmt/ostream.h>"))))))
+             (base32 "03qkr42h0g6rivj3kq207gzgnv7hq88y69q16l2vg1lbvjcgca2g"))))
    (build-system cmake-build-system)
-   (arguments (list #:test-target "check"))
+   (arguments (list #:test-target "check"
+                    ;; -Werror appears to report false positives.
+                    ;; See <https://github.com/arximboldi/immer/issues/223>.
+                    #:configure-flags #~(list "-DDISABLE_WERROR=ON")))
    (inputs (list boost libgc c-rrb))
    (native-inputs (list catch2 doctest fmt pkg-config))
    (home-page "https://sinusoid.es/immer")

base-commit: 0eadd486484fcf9a234758842f74ba28361640db
-- 
2.41.0





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

* bug#68615: [PATCH] gnu: immer: Update to 0.8.1.
  2024-01-20 17:44 [bug#68615] [PATCH] gnu: immer: Update to 0.8.1 Liliana Marie Prikler
@ 2024-01-28 17:23 ` Liliana Marie Prikler
  0 siblings, 0 replies; 2+ messages in thread
From: Liliana Marie Prikler @ 2024-01-28 17:23 UTC (permalink / raw)
  To: 68615-done

Am Samstag, dem 20.01.2024 um 18:44 +0100 schrieb Liliana Marie
Prikler:
> * gnu/packages/cpp.scm (immer): Update to 0.8.1.
> [source]: Drop modules and snippet.
> [arguments]: Add #:configure-flags to disable -Werror.
> ---
Pushed




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

end of thread, other threads:[~2024-01-28 17:24 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-01-20 17:44 [bug#68615] [PATCH] gnu: immer: Update to 0.8.1 Liliana Marie Prikler
2024-01-28 17:23 ` bug#68615: " Liliana Marie Prikler

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