guix_mirror_bot pushed a commit to branch gnome-team
in repository guix.
commit ab3b8e3b8fb6c3cdbec4866e325775ed94f7d1e8
Author: Noé Lopez <[email protected]>
AuthorDate: Thu Dec 18 22:49:07 2025 +0100
gnu: gnome-mahjongg: Move to (gnu packages gnome-circle).
* gnu/packages/gnome-circle.scm (gnome-mahjongg): New variable.
* gnu/packages/gnome.scm (gnome-mahjongg): Replace with deprecated alias.
Change-Id: I41f3630904ceb0d779038a8523c7012bdbe84354
Signed-off-by: Liliana Marie Prikler <[email protected]>
---
gnu/packages/gnome-circle.scm | 37 +++++++++++++++++++++++++++++++++++++
gnu/packages/gnome.scm | 37 ++-----------------------------------
2 files changed, 39 insertions(+), 35 deletions(-)
diff --git a/gnu/packages/gnome-circle.scm b/gnu/packages/gnome-circle.scm
index 48733eaf7a..94ad9c9276 100644
--- a/gnu/packages/gnome-circle.scm
+++ b/gnu/packages/gnome-circle.scm
@@ -1,5 +1,6 @@
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2019-2025 Maxim Cournoyer <[email protected]>
+;;; Copyright © 2019 David Wilson <[email protected]>
;;; Copyright © 2019-2022 Liliana Marie Prikler <[email protected]>
;;; Copyright © 2019, 2020, 2022 Marius Bakke <[email protected]>
;;; Copyright © 2019, 2024, 2025 Giacomo Leidi <[email protected]>
@@ -349,6 +350,42 @@ Aegis (encrypted / plain-text), andOTP, Google
Authenticator
@end itemize")
(license license:gpl3+)))
+(define-public gnome-mahjongg
+ (package
+ (name "gnome-mahjongg")
+ (version "3.40.1")
+ (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
+ "0mc9379lmkcn08gr1wdny8gdwgdadkv11vxmgsiazcdy8bsj5860"))))
+ (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+)))
+
(define-public komikku
(package
(name "komikku")
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index 8129631b77..e2e614a982 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -12381,41 +12381,8 @@ of the FAM (File Alteration Monitor) system. This is
a service provided by a
library which detects when a file or a directory has been modified.")
(license license:gpl2+)))
-(define-public gnome-mahjongg
- (package
- (name "gnome-mahjongg")
- (version "3.40.1")
- (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
- "0mc9379lmkcn08gr1wdny8gdwgdadkv11vxmgsiazcdy8bsj5860"))))
- (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+)))
+(define-deprecated/public-alias gnome-mahjongg
+ (@ (gnu packages gnome-circle) gnome-mahjongg))
(define-public gnome-themes-extra
(package