gnu: ccache: Update to 3.7.7.

gnu/packages/ccache.scm (ccache): Update to 3.7.7, update homepage
to ccache.dev, get source code from github, remove fortran 77 from
description.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
Vincent Legoll 2020-03-04 18:29:00 +01:00 committed by Ludovic Courtès
parent 24a4a635fd
commit 9eb456b8c7
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5

View File

@ -30,14 +30,14 @@
(define-public ccache (define-public ccache
(package (package
(name "ccache") (name "ccache")
(version "3.6") (version "3.7.7")
(source (source
(origin (origin
(method url-fetch) (method url-fetch)
(uri (string-append "https://www.samba.org/ftp/ccache/ccache-" (uri (string-append "https://github.com/ccache/ccache/releases/download/v"
version ".tar.xz")) version "/ccache-" version ".tar.xz"))
(sha256 (sha256
(base32 "07wv75xdcxpdkfsz9h5ffrm8pjbvr1dh6wnb02nyzz18cdbjkcd6")))) (base32 "1kcqii3hr1008gj6jgfsjibwh2ryhsplc9z99m18xwa2zvbddhdp"))))
(build-system gnu-build-system) (build-system gnu-build-system)
(native-inputs `(("perl" ,perl) ; for test/run (native-inputs `(("perl" ,perl) ; for test/run
("which" ,(@ (gnu packages base) which)))) ("which" ,(@ (gnu packages base) which))))
@ -49,11 +49,10 @@
(substitute* '("unittest/test_hashutil.c" "test/suites/base.bash") (substitute* '("unittest/test_hashutil.c" "test/suites/base.bash")
(("#!/bin/sh") (string-append "#!" (which "sh")))) (("#!/bin/sh") (string-append "#!" (which "sh"))))
#t))))) #t)))))
(home-page "https://ccache.samba.org/") (home-page "https://ccache.dev/")
(synopsis "Compiler cache") (synopsis "Compiler cache")
(description (description
"Ccache is a compiler cache. It speeds up recompilation by caching "Ccache is a compiler cache. It speeds up recompilation by caching
previous compilations and detecting when the same compilation is being done previous compilations and detecting when the same compilation is being done
again. Supported languages are C, C++, Objective-C, Objective-C++, and again. Supported languages are C, C++, Objective-C and Objective-C++.")
Fortran 77.")
(license gpl3+))) (license gpl3+)))