GNU bug report logs - #76139
[PATCH] gnu: guile-g-golf: Update to 0.8.0.

Previous Next

Package: guix-patches;

Reported by: Andy Tai <atai <at> atai.org>

Date: Sat, 8 Feb 2025 07:04:02 UTC

Severity: normal

Tags: patch

Done: 宋文武 <iyzsong <at> envs.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 76139 in the body.
You can then email your comments to 76139 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#76139; Package guix-patches. (Sat, 08 Feb 2025 07:04:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to Andy Tai <atai <at> atai.org>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Sat, 08 Feb 2025 07:04:02 GMT) Full text and rfc822 format available.

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

From: Andy Tai <atai <at> atai.org>
To: guix-patches <at> gnu.org
Cc: Andy Tai <atai <at> atai.org>
Subject: [PATCH] gnu: guile-g-golf: Update to 0.8.0.
Date: Fri,  7 Feb 2025 23:03:26 -0800
* gnu/packages/guile-xyz.scm (guile-g-golf): Update to 0.8.0.

Change-Id: I625528c7c59c085f1eb6250cae472643501822e0
---
 gnu/packages/guile-xyz.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/guile-xyz.scm b/gnu/packages/guile-xyz.scm
index 6d12ab9688..3175da0e93 100644
--- a/gnu/packages/guile-xyz.scm
+++ b/gnu/packages/guile-xyz.scm
@@ -2524,7 +2524,7 @@ (define-public guile-sly
 (define-public guile-g-golf
   (package
     (name "guile-g-golf")
-    (version "0.8.0-rc9")
+    (version "0.8.0")
     (source
      (origin
        (method git-fetch)
@@ -2533,7 +2533,7 @@ (define-public guile-g-golf
              (commit (string-append "v" version))))
        (file-name (git-file-name name version))
        (sha256
-        (base32 "1x340xr2ki1y3w1cg37fhjsfw27268vlsyc8hby9lmv13l349l8b"))))
+        (base32 "14b6pjchra0axqifpm90m7jbxla2sarhd7bfhzqbn7d14b74sv2d"))))
     (build-system gnu-build-system)
     (arguments
      (list

base-commit: 5674adeb7579bdcfdb7342e6552f4735cd8f2afc
-- 
2.34.1





Information forwarded to guix-patches <at> gnu.org:
bug#76139; Package guix-patches. (Sun, 09 Feb 2025 00:10:02 GMT) Full text and rfc822 format available.

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

From: "pelzflorian (Florian Pelz)" <pelzflorian <at> pelzflorian.de>
To: Andy Tai <atai <at> atai.org>
Cc: 76139 <at> debbugs.gnu.org
Subject: Re: [bug#76139] [PATCH] gnu: guile-g-golf: Update to 0.8.0.
Date: Sun, 09 Feb 2025 01:08:54 +0100
Andy Tai <atai <at> atai.org> writes:
> * gnu/packages/guile-xyz.scm (guile-g-golf): Update to 0.8.0.

Thank you for the patch!

LGTM, except the clutter input is no longer required for tests.  Could
you remove it?

I currently do not have a trusted machine at hand and cannot push your
patch for a few days.  Could someone else push Andy’s patch when the
clutter input is removed?

This is the only relevant difference to the previous version 0.8.0-rc9
that I found from looking at the diff.

Most G-Golf examples shipped with $(guix build --source guile-g-golf)
work fine with your patch, except layout-manager-2 (which also did not
work before at 0.8.0-rc9), and the Adwaita demo example needs some
modifications to paths, but since you do not package the examples, I
don’t think there is a fault at your package.  If someone wants to run
G-Golf’s examples:

Running the GTK examples is hindered by bug
<https://bugs.gnu.org/75157> since December 2024.

To work around it in development environments, use
`guix shell --no-grafts`.

E.g. to run the examples,

guix shell --no-grafts guile-g-golf gtk graphene libadwaita guile-cairo --development guile-g-golf

The animated-paintable, simple-paintable examples cannot be run, because
as described in the example source code, they need instead a guile-cairo
that is newer than the latest release.

(define-public guile-cairo-next
  (package
    (inherit guile-cairo)
    (source (origin
             (method git-fetch)
             (uri (git-reference
                   (url "git://git.savannah.nongnu.org/guile-cairo.git")
                   (commit "30da459d7a4380174ff243b1560d5512a4bca86e")))
             (sha256
              (base32
               "0dslfldzgxis8g0g3xaffcqnd1njzz23fjy0v3lc0r2694ra4ny4"))
             (file-name (string-append "guile-cairo-next"))))
    (inputs
     (list guile-lib expat guile-3.0 gettext-minimal))
    (native-inputs
     (list autoconf-2.71 automake libtool pkg-config texinfo))))



(When security updates are desired for use in production environments,
instead of --no-grafts, set GI_TYPELIB_PATH to ungraft like guix.git’s
etc/manifests/ungraft.scm as described at bug#75157 above, but that
takes days to build.)

Regards,
Florian




Information forwarded to guix-patches <at> gnu.org:
bug#76139; Package guix-patches. (Sun, 09 Feb 2025 04:52:01 GMT) Full text and rfc822 format available.

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

From: Andy Tai <atai <at> atai.org>
To: 76139 <at> debbugs.gnu.org
Cc: Andy Tai <atai <at> atai.org>
Subject: [PATCH v2] gnu: guile-g-golf: Update to 0.8.0.
Date: Sat,  8 Feb 2025 20:51:13 -0800
* gnu/packages/guile-xyz.scm (guile-g-golf): Update to 0.8.0.
[native-inputa]: Remove clutter.

Change-Id: I625528c7c59c085f1eb6250cae472643501822e0
---
 gnu/packages/guile-xyz.scm | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/guile-xyz.scm b/gnu/packages/guile-xyz.scm
index 6d12ab9688..060446715e 100644
--- a/gnu/packages/guile-xyz.scm
+++ b/gnu/packages/guile-xyz.scm
@@ -2524,7 +2524,7 @@ (define-public guile-sly
 (define-public guile-g-golf
   (package
     (name "guile-g-golf")
-    (version "0.8.0-rc9")
+    (version "0.8.0")
     (source
      (origin
        (method git-fetch)
@@ -2533,7 +2533,7 @@ (define-public guile-g-golf
              (commit (string-append "v" version))))
        (file-name (git-file-name name version))
        (sha256
-        (base32 "1x340xr2ki1y3w1cg37fhjsfw27268vlsyc8hby9lmv13l349l8b"))))
+        (base32 "14b6pjchra0axqifpm90m7jbxla2sarhd7bfhzqbn7d14b74sv2d"))))
     (build-system gnu-build-system)
     (arguments
      (list
@@ -2593,7 +2593,6 @@ (define-public guile-g-golf
            pkg-config
            ;; required for tests
            gtk+
-           clutter
            xorg-server-for-tests))
     (propagated-inputs
      (list gobject-introspection))

base-commit: 5674adeb7579bdcfdb7342e6552f4735cd8f2afc
-- 
2.34.1





Reply sent to 宋文武 <iyzsong <at> envs.net>:
You have taken responsibility. (Tue, 11 Feb 2025 12:41:03 GMT) Full text and rfc822 format available.

Notification sent to Andy Tai <atai <at> atai.org>:
bug acknowledged by developer. (Tue, 11 Feb 2025 12:41:03 GMT) Full text and rfc822 format available.

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

From: 宋文武 <iyzsong <at> envs.net>
To: Andy Tai <atai <at> atai.org>
Cc: 76139-done <at> debbugs.gnu.org
Subject: Re: [bug#76139] [PATCH v2] gnu: guile-g-golf: Update to 0.8.0.
Date: Tue, 11 Feb 2025 20:43:58 +0800
> * gnu/packages/guile-xyz.scm (guile-g-golf): Update to 0.8.0.
> [native-inputs]: Remove clutter.

Pushed to master now, thanks.




bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Wed, 12 Mar 2025 11:24:20 GMT) Full text and rfc822 format available.

This bug report was last modified 101 days ago.

Previous Next


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