unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#39858] [PATCH] gnu: ccache: Update to 3.7.7.
@ 2020-03-01 17:48 Vincent Legoll
  2020-03-02  6:49 ` Eric Bavier
                   ` (3 more replies)
  0 siblings, 4 replies; 6+ messages in thread
From: Vincent Legoll @ 2020-03-01 17:48 UTC (permalink / raw)
  To: 39858

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

lightly tested: cache hits on trivial .c file compilation

Additions to native inputs: asciidoc autoconf gperf
Trivial ./etc/indent-code.el housekeeping

More infos from ccache news:
2016-06-06: Source code and bug tracker moved to github
2019-04-03: Web site moved to ccache.dev

--
Vincent Legoll

[-- Attachment #2: 0001-gnu-ccache-Update-to-3.7.7.patch --]
[-- Type: text/x-patch, Size: 3436 bytes --]

From 9718baa06727eb515030cf7b617a10e9fab8052a Mon Sep 17 00:00:00 2001
From: Vincent Legoll <vincent.legoll@gmail.com>
Date: Sun, 1 Mar 2020 17:59:10 +0100
Subject: [PATCH] gnu: ccache: Update to 3.7.7.

* gnu/packages/ccache.scm (ccache): Update to 3.7.7.
* gnu/packages/ccache.scm (ccache): Update source to github
* gnu/packages/ccache.scm (ccache): Update home-page to ccache.dev
* gnu/packages/ccache.scm (ccache): Add native inputs: asciidoc autoconf gperf
* gnu/packages/ccache.scm (ccache): Reindent arguments
---
 gnu/packages/ccache.scm | 33 +++++++++++++++++++++------------
 1 file changed, 21 insertions(+), 12 deletions(-)

diff --git a/gnu/packages/ccache.scm b/gnu/packages/ccache.scm
index b3f0cbbd95..55d03daf21 100644
--- a/gnu/packages/ccache.scm
+++ b/gnu/packages/ccache.scm
@@ -2,6 +2,7 @@
 ;;; Copyright © 2014, 2015, 2016, 2018 Eric Bavier <bavier@member.fsf.org>
 ;;; Copyright © 2016, 2017 Efraim Flashner <efraim@flashner.co.il>
 ;;; Copyright © 2018, 2019 Tobias Geerinckx-Rice <me@tobias.gr>
+;;; Copyright © 2020 Vincent Legoll <vincent.legoll@gmail.com>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -21,35 +22,43 @@
 (define-module (gnu packages ccache)
   #:use-module (guix packages)
   #:use-module ((guix licenses) #:select (gpl3+))
-  #:use-module (guix download)
+  #:use-module (guix git-download)
   #:use-module (guix build-system gnu)
   #:use-module (gnu packages)
+  #:use-module (gnu packages autotools)
+  #:use-module (gnu packages documentation)
+  #:use-module (gnu packages gperf)
   #:use-module (gnu packages perl)
   #:use-module (gnu packages compression))
 
 (define-public ccache
   (package
     (name "ccache")
-    (version "3.6")
+    (version "3.7.7")
     (source
      (origin
-       (method url-fetch)
-       (uri (string-append "https://www.samba.org/ftp/ccache/ccache-"
-                           version ".tar.xz"))
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/ccache/ccache.git")
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
        (sha256
-        (base32 "07wv75xdcxpdkfsz9h5ffrm8pjbvr1dh6wnb02nyzz18cdbjkcd6"))))
+        (base32 "1s8mq832chk95wa5qwaalralwv3ln1m931nrgd9a4gi19lg55zln"))))
     (build-system gnu-build-system)
     (native-inputs `(("perl" ,perl)     ; for test/run
+                     ("asciidoc" ,asciidoc)
+                     ("autoconf" ,autoconf)
+                     ("gperf" ,gperf)
                      ("which" ,(@ (gnu packages base) which))))
     (inputs `(("zlib" ,zlib)))
     (arguments
      '(#:phases (modify-phases %standard-phases
-                 (add-before 'check 'setup-tests
-                   (lambda _
-                     (substitute* '("unittest/test_hashutil.c" "test/suites/base.bash")
-                       (("#!/bin/sh") (string-append "#!" (which "sh"))))
-                     #t)))))
-    (home-page "https://ccache.samba.org/")
+                  (add-before 'check 'setup-tests
+                    (lambda _
+                      (substitute* '("unittest/test_hashutil.c" "test/suites/base.bash")
+                        (("#!/bin/sh") (string-append "#!" (which "sh"))))
+                      #t)))))
+    (home-page "https://ccache.dev/")
     (synopsis "Compiler cache")
     (description
      "Ccache is a compiler cache.  It speeds up recompilation by caching
-- 
2.25.1


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

* [bug#39858] [PATCH] gnu: ccache: Update to 3.7.7.
  2020-03-01 17:48 [bug#39858] [PATCH] gnu: ccache: Update to 3.7.7 Vincent Legoll
@ 2020-03-02  6:49 ` Eric Bavier
       [not found] ` <6be6367ceeabbcbd3dc812883eced66c@posteo.net>
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 6+ messages in thread
From: Eric Bavier @ 2020-03-02  6:49 UTC (permalink / raw)
  To: 39858

Hi Vincent, thanks for the patch, some comments below:

On 01.03.2020 11:48, Vincent Legoll wrote:
> lightly tested: cache hits on trivial .c file compilation

And the tests still pass ;)

> Trivial ./etc/indent-code.el housekeeping

Could you move this to a separate patch, please?

> From 9718baa06727eb515030cf7b617a10e9fab8052a Mon Sep 17 00:00:00 2001
> From: Vincent Legoll <vincent.legoll@gmail.com>
> Date: Sun, 1 Mar 2020 17:59:10 +0100
> Subject: [PATCH] gnu: ccache: Update to 3.7.7.
> 
> * gnu/packages/ccache.scm (ccache): Update to 3.7.7.
> * gnu/packages/ccache.scm (ccache): Update source to github
> * gnu/packages/ccache.scm (ccache): Update home-page to ccache.dev
> * gnu/packages/ccache.scm (ccache): Add native inputs: asciidoc 
> autoconf gperf
> * gnu/packages/ccache.scm (ccache): Reindent arguments

Check the manual and other commit messages for formatting.  In 
particular, the file name only needs to be mentioned once, and the 
affected sections are mentioned in square brackets before the comment.

> ---
> gnu/packages/ccache.scm | 33 +++++++++++++++++++++------------
> 1 file changed, 21 insertions(+), 12 deletions(-)
> ...
> - (method url-fetch)
> - (uri (string-append "https://www.samba.org/ftp/ccache/ccache-"
> - version ".tar.xz"))
> + (method git-fetch)
> + (uri (git-reference
> + (url "https://github.com/ccache/ccache.git")
> + (commit (string-append "v" version))))
> + (file-name (git-file-name name version))
> (sha256
> - (base32 "07wv75xdcxpdkfsz9h5ffrm8pjbvr1dh6wnb02nyzz18cdbjkcd6"))))
> + (base32 "1s8mq832chk95wa5qwaalralwv3ln1m931nrgd9a4gi19lg55zln"))))
> (build-system gnu-build-system)

I think we can actually stick with the tarball available on the github 
release page: 
https://github.com/ccache/ccache/releases/download/v3.7.7/ccache-3.7.7.tar.xz 
which is already bootstrapped.

> (native-inputs `(("perl" ,perl) ; for test/run
> + ("asciidoc" ,asciidoc)
> + ("autoconf" ,autoconf)
> + ("gperf" ,gperf)

Using the distribution tarball should prevent needing to add these 
inputs.

> (description
> "Ccache is a compiler cache. It speeds up recompilation by caching

It seems based on the release notes that we also need to remove the 
mention of Fortran 77 support in the description.

Could you send updated patches?

Cheers,
`~Eric

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

* [bug#39858] [PATCH] gnu: ccache: Update to 3.7.7.
       [not found] ` <6be6367ceeabbcbd3dc812883eced66c@posteo.net>
@ 2020-03-02  7:44   ` Vincent Legoll
  0 siblings, 0 replies; 6+ messages in thread
From: Vincent Legoll @ 2020-03-02  7:44 UTC (permalink / raw)
  To: Eric Bavier; +Cc: 39858, Guix-patches

Hello

On Mon, Mar 2, 2020 at 7:24 AM Eric Bavier <bavier@posteo.net> wrote:
> Hi Vincent, thanks for the patch, some comments below:
> On 01.03.2020 11:48, Vincent Legoll wrote:
> > lightly tested: cache hits on trivial .c file compilation
>
> And the tests still pass ;)

Yes, I should have mentionned it

> Could you send updated patches?

Yes, I will, thanks for the review

-- 
Vincent Legoll

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

* [bug#39858] [PATCH, v2, 1/2] gnu: ccache: Update to 3.7.7.
  2020-03-01 17:48 [bug#39858] [PATCH] gnu: ccache: Update to 3.7.7 Vincent Legoll
  2020-03-02  6:49 ` Eric Bavier
       [not found] ` <6be6367ceeabbcbd3dc812883eced66c@posteo.net>
@ 2020-03-04 17:53 ` Vincent Legoll
  2020-03-07 21:19   ` bug#39858: " Ludovic Courtès
  2020-03-04 17:54 ` [bug#39858] [PATCH, v2, 2/2] gnu: ccache: Fix indentation Vincent Legoll
  3 siblings, 1 reply; 6+ messages in thread
From: Vincent Legoll @ 2020-03-04 17:53 UTC (permalink / raw)
  To: 39858

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

Here is the updated version:

split the reindent, use source tarball,
remove f77

Hope it's better...

-- 
Vincent Legoll

[-- Attachment #2: 0001-gnu-ccache-Update-to-3.7.7.patch --]
[-- Type: text/x-patch, Size: 2078 bytes --]

From 814563411dd26d76e79a94f535d989095d9a00dd Mon Sep 17 00:00:00 2001
From: Vincent Legoll <vincent.legoll@gmail.com>
Date: Wed, 4 Mar 2020 18:29:00 +0100
Subject: [PATCH 1/2] 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.
---
 gnu/packages/ccache.scm | 13 ++++++-------
 1 file changed, 6 insertions(+), 7 deletions(-)

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


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

* [bug#39858] [PATCH, v2, 2/2] gnu: ccache: Fix indentation
  2020-03-01 17:48 [bug#39858] [PATCH] gnu: ccache: Update to 3.7.7 Vincent Legoll
                   ` (2 preceding siblings ...)
  2020-03-04 17:53 ` [bug#39858] [PATCH, v2, 1/2] " Vincent Legoll
@ 2020-03-04 17:54 ` Vincent Legoll
  3 siblings, 0 replies; 6+ messages in thread
From: Vincent Legoll @ 2020-03-04 17:54 UTC (permalink / raw)
  To: 39858

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

here the split indentation fix

-- 
Vincent Legoll

[-- Attachment #2: 0002-gnu-ccache-Fix-indentation.patch --]
[-- Type: text/x-patch, Size: 1285 bytes --]

From 65d1ba85b1d9437a929d41dd96ebd86b4f0086f8 Mon Sep 17 00:00:00 2001
From: Vincent Legoll <vincent.legoll@gmail.com>
Date: Wed, 4 Mar 2020 18:38:59 +0100
Subject: [PATCH 2/2] gnu: ccache: Fix indentation

* gnu/packages/ccache.scm (ccache): Fix indentation
---
 gnu/packages/ccache.scm | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/gnu/packages/ccache.scm b/gnu/packages/ccache.scm
index c0aafad1fd..529742403e 100644
--- a/gnu/packages/ccache.scm
+++ b/gnu/packages/ccache.scm
@@ -44,11 +44,11 @@
     (inputs `(("zlib" ,zlib)))
     (arguments
      '(#:phases (modify-phases %standard-phases
-                 (add-before 'check 'setup-tests
-                   (lambda _
-                     (substitute* '("unittest/test_hashutil.c" "test/suites/base.bash")
-                       (("#!/bin/sh") (string-append "#!" (which "sh"))))
-                     #t)))))
+                  (add-before 'check 'setup-tests
+                    (lambda _
+                      (substitute* '("unittest/test_hashutil.c" "test/suites/base.bash")
+                        (("#!/bin/sh") (string-append "#!" (which "sh"))))
+                      #t)))))
     (home-page "https://ccache.dev/")
     (synopsis "Compiler cache")
     (description
-- 
2.25.1


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

* bug#39858: [PATCH, v2, 1/2] gnu: ccache: Update to 3.7.7.
  2020-03-04 17:53 ` [bug#39858] [PATCH, v2, 1/2] " Vincent Legoll
@ 2020-03-07 21:19   ` Ludovic Courtès
  0 siblings, 0 replies; 6+ messages in thread
From: Ludovic Courtès @ 2020-03-07 21:19 UTC (permalink / raw)
  To: Vincent Legoll; +Cc: 39858-done

Hi Vincent,

Applied both patches, thanks!

Ludo’.

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

end of thread, other threads:[~2020-03-07 21:20 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-03-01 17:48 [bug#39858] [PATCH] gnu: ccache: Update to 3.7.7 Vincent Legoll
2020-03-02  6:49 ` Eric Bavier
     [not found] ` <6be6367ceeabbcbd3dc812883eced66c@posteo.net>
2020-03-02  7:44   ` Vincent Legoll
2020-03-04 17:53 ` [bug#39858] [PATCH, v2, 1/2] " Vincent Legoll
2020-03-07 21:19   ` bug#39858: " Ludovic Courtès
2020-03-04 17:54 ` [bug#39858] [PATCH, v2, 2/2] gnu: ccache: Fix indentation Vincent Legoll

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