all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#50161] [PATCH] gnu: ccache: Update to 3.4.
@ 2021-08-22  7:39 Sergei Trofimovich
  2021-08-26 19:38 ` bug#50161: " Brice Waegeneire
  0 siblings, 1 reply; 2+ messages in thread
From: Sergei Trofimovich @ 2021-08-22  7:39 UTC (permalink / raw)
  To: 50161; +Cc: Sergei Trofimovich

* gnu/packages/ccache.scm: Update to 3.4.
---
 gnu/packages/ccache.scm | 13 +++++++++----
 1 file changed, 9 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/ccache.scm b/gnu/packages/ccache.scm
index 4ff0fb2ae0..77098658cf 100644
--- a/gnu/packages/ccache.scm
+++ b/gnu/packages/ccache.scm
@@ -31,21 +31,26 @@
 (define-public ccache
   (package
     (name "ccache")
-    (version "4.3")
+    (version "4.4")
     (source
      (origin
        (method url-fetch)
        (uri (string-append "https://github.com/ccache/ccache/releases/download/v"
                            version "/ccache-" version ".tar.xz"))
        (sha256
-        (base32 "1d4995lkmqshzfxlmbyn101m1rxs02yb8dgh4rl30p26hhhhyjjh"))))
+        (base32 "0qbmcs6c3m071vsd1ppa31r8s0dzpaw5y38z8ga1bz48rwpfl2xl"))))
     (build-system cmake-build-system)
     (native-inputs `(("perl" ,perl)     ; for test/run
                      ("which" ,(@ (gnu packages base) which))))
     (inputs `(("zlib" ,zlib)
               ("zstd" ,zstd "lib")))
     (arguments
-     '(#:phases
+     '(;; Disable redis backend explicitly. Build system insists on present dependency
+       ;; or on explicit flag.
+       #:configure-flags
+       '("-DREDIS_STORAGE_BACKEND=OFF")
+
+       #:phases
        (modify-phases %standard-phases
          (add-before 'configure 'setup-tests
            (lambda _
@@ -56,7 +61,7 @@
            ;; Tests require a writable HOME.
            (lambda _
              (setenv "HOME" (getenv "TMPDIR"))
-	     #t)))))
+             #t)))))
     (home-page "https://ccache.dev/")
     (synopsis "Compiler cache")
     (description
-- 
2.33.0





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

* bug#50161: [PATCH] gnu: ccache: Update to 3.4.
  2021-08-22  7:39 [bug#50161] [PATCH] gnu: ccache: Update to 3.4 Sergei Trofimovich
@ 2021-08-26 19:38 ` Brice Waegeneire
  0 siblings, 0 replies; 2+ messages in thread
From: Brice Waegeneire @ 2021-08-26 19:38 UTC (permalink / raw)
  To: Sergei Trofimovich; +Cc: 50161-done

Sergei Trofimovich <slyich@gmail.com> writes:

> * gnu/packages/ccache.scm: Update to 3.4.
> ---
>  gnu/packages/ccache.scm | 13 +++++++++----
>  1 file changed, 9 insertions(+), 4 deletions(-)

Thank you for the patch.  Pushed as f3b9db9ca1f8096fb21ff097a7d600dc1c7af22b.




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

end of thread, other threads:[~2021-08-26 19:40 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-08-22  7:39 [bug#50161] [PATCH] gnu: ccache: Update to 3.4 Sergei Trofimovich
2021-08-26 19:38 ` bug#50161: " Brice Waegeneire

Code repositories for project(s) associated with this external index

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

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.