GNU bug report logs - #43459
[PATCH] gnu: guile-wisp: Update to 1.0.3

Previous Next

Package: guix-patches;

Reported by: Arne Babenhauserheide <arne_bab <at> web.de>

Date: Wed, 16 Sep 2020 22:00:02 UTC

Severity: normal

Tags: patch

Done: Ricardo Wurmus <rekado <at> elephly.net>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 43459 in the body.
You can then email your comments to 43459 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to guix-patches <at> gnu.org:
bug#43459; Package guix-patches. (Wed, 16 Sep 2020 22:00:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to Arne Babenhauserheide <arne_bab <at> web.de>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Wed, 16 Sep 2020 22:00:03 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Arne Babenhauserheide <arne_bab <at> web.de>
To: guix-patches <at> gnu.org
Subject: [PATCH] gnu: guile-wisp: Update to 1.0.3
Date: Wed, 16 Sep 2020 23:59:49 +0200
[Message part 1 (text/plain, inline)]
From 06ca3245ff88bc51c0c7f929b02d0c9e22dc800d Mon Sep 17 00:00:00 2001

    * gnu/packages/guile-xyz.scm (guile-wisp): Update to 1.0.3
    [source]: Access via hg and change from bitbucket to hg.sr.ht
    [phases] call autoreconf before 'configure,
    [phases] remove Guile 3 patch because Guile 3 is supported in 1.0.3
    [native-inputs]: add autoconf and automake
---
 gnu/packages/guile-xyz.scm | 23 ++++++++++++-----------
 1 file changed, 12 insertions(+), 11 deletions(-)

diff --git a/gnu/packages/guile-xyz.scm b/gnu/packages/guile-xyz.scm
index 3090c6078b..2851766c3f 100644
--- a/gnu/packages/guile-xyz.scm
+++ b/gnu/packages/guile-xyz.scm
@@ -1621,15 +1621,16 @@ The library is shipped with documentation in Info format and usage examples.")
 (define-public guile-wisp
   (package
     (name "guile-wisp")
-    (version "1.0.2")
+    (version "1.0.3")
     (source (origin
-              (method url-fetch)
-              (uri (string-append "https://bitbucket.org/ArneBab/"
-                                  "wisp/downloads/wisp-"
-                                  version ".tar.gz"))
+              (method hg-fetch)
+              (uri (hg-reference
+                    (url "https://hg.sr.ht/~arnebab/wisp")
+                    (changeset (string-append "v" version))))
+              (file-name (git-file-name name version))
               (sha256
                (base32
-                "03pz7pj9jyallynhflp5s7qax8dj1fs8la434wrfgz7g1kgjnvf6"))))
+                "10g97jz3ahpb5mg933ajsc3pa9jxlg14f42yf01qwx0dwq1b06d5"))))
     (build-system gnu-build-system)
     (arguments
      `(#:modules ((guix build gnu-build-system)
@@ -1643,11 +1644,9 @@ The library is shipped with documentation in Info format and usage examples.")
                            (guix build emacs-utils))
        #:phases
        (modify-phases %standard-phases
-         (add-after 'unpack 'support-guile-3.0
+         (add-before 'configure 'autoreconf
            (lambda _
-             (substitute* "configure"
-               (("_guile_versions_to_search=\"2.2")
-                "_guile_versions_to_search=\"3.0 2.2"))
+             (invoke "autoreconf" "-vif")
              #t))
          (add-before 'configure 'patch-/usr/bin/env
            (lambda _
@@ -1689,7 +1688,9 @@ The library is shipped with documentation in Info format and usage examples.")
     (inputs
      `(("guile" ,guile-3.0)))
     (native-inputs
-     `(("emacs" ,emacs-minimal)
+     `(("autoconf" ,autoconf)
+       ("automake" ,automake)
+       ("emacs" ,emacs-minimal)
        ("python" ,python)
        ("pkg-config" ,pkg-config)))
     (synopsis "Whitespace to lisp syntax for Guile")
-- 
2.28.0

[signature.asc (application/pgp-signature, inline)]

Reply sent to Ricardo Wurmus <rekado <at> elephly.net>:
You have taken responsibility. (Thu, 17 Sep 2020 11:47:01 GMT) Full text and rfc822 format available.

Notification sent to Arne Babenhauserheide <arne_bab <at> web.de>:
bug acknowledged by developer. (Thu, 17 Sep 2020 11:47:01 GMT) Full text and rfc822 format available.

Message #10 received at 43459-done <at> debbugs.gnu.org (full text, mbox):

From: Ricardo Wurmus <rekado <at> elephly.net>
To: Arne Babenhauserheide <arne_bab <at> web.de>
Cc: 43459-done <at> debbugs.gnu.org
Subject: Re: [bug#43459] [PATCH] gnu: guile-wisp: Update to 1.0.3
Date: Thu, 17 Sep 2020 13:47:39 +0200
Hi Arne,

> From 06ca3245ff88bc51c0c7f929b02d0c9e22dc800d Mon Sep 17 00:00:00 2001
>
>     * gnu/packages/guile-xyz.scm (guile-wisp): Update to 1.0.3
>     [source]: Access via hg and change from bitbucket to hg.sr.ht
>     [phases] call autoreconf before 'configure,
>     [phases] remove Guile 3 patch because Guile 3 is supported in 1.0.3
>     [native-inputs]: add autoconf and automake

I modified the commit message to better match our conventions and
replaced the existing 'bootstrap phase instead of adding a new phase
before 'configure (the effect is the same).

Pushed it to the “master” branch with commit 8b030edf02.

Thank you!

-- 
Ricardo




Information forwarded to guix-patches <at> gnu.org:
bug#43459; Package guix-patches. (Thu, 17 Sep 2020 22:56:02 GMT) Full text and rfc822 format available.

Message #13 received at 43459-done <at> debbugs.gnu.org (full text, mbox):

From: "Dr. Arne Babenhauserheide" <arne_bab <at> web.de>
To: Ricardo Wurmus <rekado <at> elephly.net>
Cc: 43459-done <at> debbugs.gnu.org
Subject: Re: [bug#43459] [PATCH] gnu: guile-wisp: Update to 1.0.3
Date: Fri, 18 Sep 2020 00:55:10 +0200
[Message part 1 (text/plain, inline)]
Hi Ricardo,

Ricardo Wurmus <rekado <at> elephly.net> writes:

> I modified the commit message to better match our conventions and
> replaced the existing 'bootstrap phase instead of adding a new phase
> before 'configure (the effect is the same).
>
> Pushed it to the “master” branch with commit 8b030edf02.
>
> Thank you!

Thank you! :-)

Best wishes,
Arne
-- 
Unpolitisch sein
heißt politisch sein
ohne es zu merken
[signature.asc (application/pgp-signature, inline)]

bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Fri, 16 Oct 2020 11:24:07 GMT) Full text and rfc822 format available.

Changed bug title to 'installer: uuid->string failure backtrace (again)' from '[PATCH] gnu: guile-wisp: Update to 1.0.3' Request was from Maxime Devos <maximedevos <at> telenet.be> to control <at> debbugs.gnu.org. (Sun, 23 Jan 2022 17:52:01 GMT) Full text and rfc822 format available.

This bug report was last modified 2 years and 94 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.