This is an automated email from the git hooks/post-receive script.

guix_mirror_bot pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 73db528057 gnu: gpaint: Update to 0.3.4.1.
73db528057 is described below

commit 73db5280571198fe8f4eab3a964c0605f918d07d
Author: Andy Tai <a...@atai.org>
AuthorDate: Fri Jul 25 20:12:01 2025 -0700

    gnu: gpaint: Update to 0.3.4.1.
    
    * gnu/packages/graphics.scm (gpaint): Update to 0.3.4.1.
    [source]: Use git source.
    
    Change-Id: I2d1c2ca4ac230e3341648a1bf654f0298ec51958
    Signed-off-by: Andreas Enge <andr...@enge.fr>
---
 gnu/packages/graphics.scm | 24 +++++++++++++-----------
 1 file changed, 13 insertions(+), 11 deletions(-)

diff --git a/gnu/packages/graphics.scm b/gnu/packages/graphics.scm
index e21a5fc967..7e9fa97e1d 100644
--- a/gnu/packages/graphics.scm
+++ b/gnu/packages/graphics.scm
@@ -3380,19 +3380,21 @@ options.")
 (define-public gpaint
   (package
     (name "gpaint")
-    (version "0.3.4")
-    (source (origin
-              (method url-fetch)
-              (uri (string-append "http://alpha.gnu.org/gnu/";
-                                  name "/"
-                                  name "-2-" version ".tar.gz"))
-              (sha256
-               (base32
-                "13jv0zqbnyxjw7fa9x0yl08rrkqq0mdvki0yzbj6vqifvs393v5h"))))
+    (version "0.3.4.1")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://git.savannah.gnu.org/git/gpaint.git";)
+             (commit (string-append "v"
+                       (string-replace-substring version "." "_")))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "0drsvrihyvkdf5g65w5784ap06d2x9zkas69amp1mb6jmnzp8rir"))))
     (build-system gnu-build-system)
     (inputs (list gtk+-2 libglade))
-    (native-inputs
-     (list gettext-minimal `(,glib "bin") pkg-config))
+    (native-inputs (list gettext-minimal
+                         `(,glib "bin") pkg-config))
     (synopsis "Simple paint program for GNOME")
     (description
      "GNU Paint is a simple, easy-to-use paint program for the GNOME

Reply via email to