all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#50615] [PATCH] gnu: grokmirror: Update to 2.0.11.
@ 2021-09-16  8:47 Xinglu Chen
  2021-09-17  3:06 ` Kyle Meyer
  2021-09-30 21:00 ` bug#50615: " Ludovic Courtès
  0 siblings, 2 replies; 5+ messages in thread
From: Xinglu Chen @ 2021-09-16  8:47 UTC (permalink / raw)
  To: 50615

* gnu/packages/version-control.scm (grokmirror): Update to 2.0.11.
[arguments]<#:phases>: Don’t return #t.
---
 gnu/packages/version-control.scm | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/version-control.scm b/gnu/packages/version-control.scm
index fe84601372..ead33ad10e 100644
--- a/gnu/packages/version-control.scm
+++ b/gnu/packages/version-control.scm
@@ -2465,7 +2465,7 @@ Mercurial, Bazaar, Darcs, CVS, Fossil, and Veracity.")
 (define-public grokmirror
   (package
     (name "grokmirror")
-    (version "2.0.8")
+    (version "2.0.11")
     (source
      (origin
        (method git-fetch)
@@ -2475,7 +2475,7 @@ Mercurial, Bazaar, Darcs, CVS, Fossil, and Veracity.")
              (commit (string-append "v" version))))
        (file-name (string-append name "-" version "-checkout"))
        (sha256
-        (base32 "0zfiwjw02df3mzpawp9jx61iwp0nhcf6y03cs8022l0hkvc7blbr"))))
+        (base32 "0c6nnfzzyl247r1dcjnsyx16d34nyra9ikjjhi0xzlrbiwnb0w32"))))
     (build-system python-build-system)
     (arguments
      `(#:tests? #f                      ; no test suite
@@ -2487,8 +2487,7 @@ Mercurial, Bazaar, Darcs, CVS, Fossil, and Veracity.")
                                         "/man/man1/")))
                (mkdir-p man)
                (for-each (lambda (file) (install-file file man))
-                         (find-files "." "\\.1$")))
-             #t)))))
+                         (find-files "." "\\.1$"))))))))
     (propagated-inputs
      `(("python-packaging" ,python-packaging)
        ("python-requests" ,python-requests)))

base-commit: a72519489f0178051b7049d5793d95d070ebef86
-- 
2.33.0







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

* [bug#50615] [PATCH] gnu: grokmirror: Update to 2.0.11.
  2021-09-16  8:47 [bug#50615] [PATCH] gnu: grokmirror: Update to 2.0.11 Xinglu Chen
@ 2021-09-17  3:06 ` Kyle Meyer
  2021-09-17  8:33   ` Xinglu Chen
  2021-09-30 21:00 ` bug#50615: " Ludovic Courtès
  1 sibling, 1 reply; 5+ messages in thread
From: Kyle Meyer @ 2021-09-17  3:06 UTC (permalink / raw)
  To: Xinglu Chen; +Cc: 50615

Xinglu Chen writes:

> * gnu/packages/version-control.scm (grokmirror): Update to 2.0.11.
> [arguments]<#:phases>: Don’t return #t.

Thanks for keeping grokmirror up to date.

>  (define-public grokmirror
[...]
> @@ -2487,8 +2487,7 @@ Mercurial, Bazaar, Darcs, CVS, Fossil, and Veracity.")

Unrelated sidenote: you could get a more informative hunk header for
your patches by defining a custom one (more details in the gitattributes
manpage).

>                                          "/man/man1/")))
>                 (mkdir-p man)
>                 (for-each (lambda (file) (install-file file man))
> -                         (find-files "." "\\.1$")))
> -             #t)))))
> +                         (find-files "." "\\.1$"))))))))

Oops, sorry about the unnecessary #t.  I did a quick search of the
lists/manual but didn't find any pointers/discussion.  What's the way to
decide when a custom phase should return #t (like in the below snippet
from the manual)?

--8<---------------cut here---------------start------------->8---
(modify-phases %standard-phases
  (add-after 'install 'fix-egrep-and-fgrep
    ;; Patch 'egrep' and 'fgrep' to execute 'grep' via its
    ;; absolute file name instead of searching for it in $PATH.
    (lambda* (#:key outputs #:allow-other-keys)
      (let* ((out (assoc-ref outputs "out"))
             (bin (string-append out "/bin")))
        (substitute* (list (string-append bin "/egrep")
                           (string-append bin "/fgrep"))
          (("^exec grep")
           (string-append "exec " bin "/grep")))
        #t))))
--8<---------------cut here---------------end--------------->8---




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

* [bug#50615] [PATCH] gnu: grokmirror: Update to 2.0.11.
  2021-09-17  3:06 ` Kyle Meyer
@ 2021-09-17  8:33   ` Xinglu Chen
  2021-09-17 10:48     ` Kyle Meyer
  0 siblings, 1 reply; 5+ messages in thread
From: Xinglu Chen @ 2021-09-17  8:33 UTC (permalink / raw)
  To: Kyle Meyer; +Cc: 50615

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

On Thu, Sep 16 2021, Kyle Meyer wrote:

> Xinglu Chen writes:
>
>> * gnu/packages/version-control.scm (grokmirror): Update to 2.0.11.
>> [arguments]<#:phases>: Don’t return #t.
>
> Thanks for keeping grokmirror up to date.

You are welcome!

>>  (define-public grokmirror
> [...]
>> @@ -2487,8 +2487,7 @@ Mercurial, Bazaar, Darcs, CVS, Fossil, and Veracity.")
>
> Unrelated sidenote: you could get a more informative hunk header for
> your patches by defining a custom one (more details in the gitattributes
> manpage).

Ah, thanks for the tip!

>>                                          "/man/man1/")))
>>                 (mkdir-p man)
>>                 (for-each (lambda (file) (install-file file man))
>> -                         (find-files "." "\\.1$")))
>> -             #t)))))
>> +                         (find-files "." "\\.1$"))))))))
>
> Oops, sorry about the unnecessary #t.  I did a quick search of the
> lists/manual but didn't find any pointers/discussion.  What's the way to
> decide when a custom phase should return #t (like in the below snippet
> from the manual)?
>
> --8<---------------cut here---------------start------------->8---
> (modify-phases %standard-phases
>   (add-after 'install 'fix-egrep-and-fgrep
>     ;; Patch 'egrep' and 'fgrep' to execute 'grep' via its
>     ;; absolute file name instead of searching for it in $PATH.
>     (lambda* (#:key outputs #:allow-other-keys)
>       (let* ((out (assoc-ref outputs "out"))
>              (bin (string-append out "/bin")))
>         (substitute* (list (string-append bin "/egrep")
>                            (string-append bin "/fgrep"))
>           (("^exec grep")
>            (string-append "exec " bin "/grep")))
>         #t))))
> --8<---------------cut here---------------end--------------->8---

I don’t think it documented in the manual, but on ‘master’, phases have
to return #t, otherwise, you will get a warning message about it.  But
once the ‘core-updates-frozen’ branch gets merged (should be soon™),
phases don’t have to return #t anymore.  Since the boilerplate won’t be
needed once ‘core-updates-frozen’ gets merged, I thought it would be a
good idea to just remove the #t.  :-)

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 861 bytes --]

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

* [bug#50615] [PATCH] gnu: grokmirror: Update to 2.0.11.
  2021-09-17  8:33   ` Xinglu Chen
@ 2021-09-17 10:48     ` Kyle Meyer
  0 siblings, 0 replies; 5+ messages in thread
From: Kyle Meyer @ 2021-09-17 10:48 UTC (permalink / raw)
  To: Xinglu Chen; +Cc: 50615

Xinglu Chen writes:

> But once the ‘core-updates-frozen’ branch gets merged (should be
> soon™), phases don’t have to return #t anymore.

Oh, got it.  Thanks for the information.




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

* bug#50615: [PATCH] gnu: grokmirror: Update to 2.0.11.
  2021-09-16  8:47 [bug#50615] [PATCH] gnu: grokmirror: Update to 2.0.11 Xinglu Chen
  2021-09-17  3:06 ` Kyle Meyer
@ 2021-09-30 21:00 ` Ludovic Courtès
  1 sibling, 0 replies; 5+ messages in thread
From: Ludovic Courtès @ 2021-09-30 21:00 UTC (permalink / raw)
  To: Xinglu Chen; +Cc: 50615-done

Xinglu Chen <public@yoctocell.xyz> skribis:

> * gnu/packages/version-control.scm (grokmirror): Update to 2.0.11.
> [arguments]<#:phases>: Don’t return #t.

Applied, thanks!

Ludo’.




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

end of thread, other threads:[~2021-09-30 21:08 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-09-16  8:47 [bug#50615] [PATCH] gnu: grokmirror: Update to 2.0.11 Xinglu Chen
2021-09-17  3:06 ` Kyle Meyer
2021-09-17  8:33   ` Xinglu Chen
2021-09-17 10:48     ` Kyle Meyer
2021-09-30 21:00 ` bug#50615: " Ludovic Courtès

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.