unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#66489] [PATCH gnome-team] gnu: gnome-mahjongg: Update to 3.40.0.
@ 2023-10-12  8:21 Liliana Marie Prikler
  2023-10-12 14:32 ` Maxim Cournoyer
  0 siblings, 1 reply; 3+ messages in thread
From: Liliana Marie Prikler @ 2023-10-12  8:21 UTC (permalink / raw)
  To: 66489; +Cc: liliana.prikler, maxim.cournoyer, rg

* gnu/packages/gnome.scm (gnome-mahjongg): Update to 3.40.0.
---
 gnu/packages/gnome.scm | 68 ++++++++++++++++++++----------------------
 1 file changed, 32 insertions(+), 36 deletions(-)

diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index fc815b25ec..2ad7151f27 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -12161,44 +12161,40 @@ (define-public gamin
     (license license:gpl2+)))
 
 (define-public gnome-mahjongg
-  ;; There hasn't been a GNOME Mahjongg release in a long time, and the last
-  ;; release doesn't build with a recent Meson, so use the latest commit.
-  (let ((commit "e9e73e5165e5968ff897e568f8eba10fc1eb207b")
-        (revision "0"))
-    (package
-      (name "gnome-mahjongg")
-      (version (git-version "3.38.3" revision commit))
-      (source (origin
-                (method git-fetch)
-                (uri (git-reference
-                      (url "https://gitlab.gnome.org/GNOME/gnome-mahjongg")
-                      (commit commit)))
-                (file-name (git-file-name name version))
-                (sha256
-                 (base32
-                  "1cj0c076h7qfz77wpz8ypli60inj37fgw0cl9cc39b1kjfqcy3mb"))))
-      (build-system meson-build-system)
-      (arguments (list #:glib-or-gtk? #t))
-      (native-inputs
-       (list appstream-glib
-             gettext-minimal
-             `(,glib "bin")             ;for glib-compile-resources
-             `(,gtk "bin")              ;for gtk-update-icon-cache
-             itstool
-             pkg-config
-             vala))
-      (propagated-inputs
-       (list dconf))
-      (inputs
-       (list glib
-             gtk
-             libadwaita))
-      (synopsis "Mahjongg tile-matching game")
-      (description "GNOME Mahjongg is a game based on the classic Chinese
+  (package
+    (name "gnome-mahjongg")
+    (version "3.40.0")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://gitlab.gnome.org/GNOME/gnome-mahjongg")
+                    (commit version)))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "1yj41lj2vancjzwjcm5cdv48983jq05i6sw8p4nggyqwij3xpllj"))))
+    (build-system meson-build-system)
+    (arguments (list #:glib-or-gtk? #t))
+    (native-inputs
+     (list appstream-glib
+           gettext-minimal
+           `(,glib "bin")             ;for glib-compile-resources
+           `(,gtk "bin")              ;for gtk-update-icon-cache
+           itstool
+           pkg-config
+           vala))
+    (propagated-inputs
+     (list dconf))
+    (inputs
+     (list glib
+           gtk
+           libadwaita))
+    (synopsis "Mahjongg tile-matching game")
+    (description "GNOME Mahjongg is a game based on the classic Chinese
 tile-matching game Mahjongg.  It features multiple board layouts, tile themes,
 and a high score table.")
-      (home-page "https://wiki.gnome.org/Apps/Mahjongg")
-      (license license:gpl2+))))
+    (home-page "https://wiki.gnome.org/Apps/Mahjongg")
+    (license license:gpl2+)))
 
 (define-public gnome-themes-extra
   (package

base-commit: b701a7018d94aebef6a967ec235c72c1f7cdfe5c
prerequisite-patch-id: dfca7d9abc3417513768cc76f3ed499dc255ae93
prerequisite-patch-id: c62b68675eca65ffc5a468d51f722fa849609111
prerequisite-patch-id: fcec6d4aa0e02f9cef07d44e6dbb2ea8664e89b2
prerequisite-patch-id: e4887b794c567c06661fd7aef3a8b2d7c4b4e53c
prerequisite-patch-id: 200a55f018acd42885dcb3cd10ec7b17524d8dd4
prerequisite-patch-id: d373ac5204fd6cdde481dc1749111d41ef82d9fc
prerequisite-patch-id: ada5692119b44b09e922f22286b17d4ad42a3996
prerequisite-patch-id: bc62119939cc96b12beba7b3c63cf28e8c42d9d6
-- 
2.41.0





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

* [bug#66489] [PATCH gnome-team] gnu: gnome-mahjongg: Update to 3.40.0.
  2023-10-12  8:21 [bug#66489] [PATCH gnome-team] gnu: gnome-mahjongg: Update to 3.40.0 Liliana Marie Prikler
@ 2023-10-12 14:32 ` Maxim Cournoyer
  2023-10-13 18:40   ` bug#66489: " Liliana Marie Prikler
  0 siblings, 1 reply; 3+ messages in thread
From: Maxim Cournoyer @ 2023-10-12 14:32 UTC (permalink / raw)
  To: Liliana Marie Prikler; +Cc: rg, 66489

Liliana Marie Prikler <liliana.prikler@gmail.com> writes:

> * gnu/packages/gnome.scm (gnome-mahjongg): Update to 3.40.0.

LGTM!

-- 
Thanks,
Maxim




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

* bug#66489: [PATCH gnome-team] gnu: gnome-mahjongg: Update to 3.40.0.
  2023-10-12 14:32 ` Maxim Cournoyer
@ 2023-10-13 18:40   ` Liliana Marie Prikler
  0 siblings, 0 replies; 3+ messages in thread
From: Liliana Marie Prikler @ 2023-10-13 18:40 UTC (permalink / raw)
  To: Maxim Cournoyer; +Cc: rg, 66489-done

Am Donnerstag, dem 12.10.2023 um 10:32 -0400 schrieb Maxim Cournoyer:
> Liliana Marie Prikler <liliana.prikler@gmail.com> writes:
> 
> > * gnu/packages/gnome.scm (gnome-mahjongg): Update to 3.40.0.
> 
> LGTM!
Pushed.

Thanks




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

end of thread, other threads:[~2023-10-13 18:42 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-10-12  8:21 [bug#66489] [PATCH gnome-team] gnu: gnome-mahjongg: Update to 3.40.0 Liliana Marie Prikler
2023-10-12 14:32 ` Maxim Cournoyer
2023-10-13 18:40   ` bug#66489: " Liliana Marie Prikler

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