[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
63/181: gnu: gnome-initial-setup: Update to 42.2.
From: |
guix-commits |
Subject: |
63/181: gnu: gnome-initial-setup: Update to 42.2. |
Date: |
Tue, 13 Sep 2022 02:25:38 -0400 (EDT) |
apteryx pushed a commit to branch master
in repository guix.
commit 021e9d8102974f44d44dc03df275242d6cc48000
Author: Maxim Cournoyer <maxim.cournoyer@gmail.com>
AuthorDate: Mon Sep 5 01:47:24 2022 -0400
gnu: gnome-initial-setup: Update to 42.2.
* gnu/packages/gnome.scm (gnome-initial-setup): Update to 42.2.
[configure-flags]: Remove "-Dcheese=auto".
[phases]: Use search-input-file.
[native-inputs]: Remove labels. Remove gtk+:bin.
[inputs]: Remove labels. Sort lexicographically. Add cheese. Replace
libgweather with libgweather4-with-libsoup2.
Replace gnome-online-accounts with gnome-online-accounts-3.44.
---
gnu/packages/gnome.scm | 118 ++++++++++++++++++++++++-------------------------
1 file changed, 59 insertions(+), 59 deletions(-)
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index a42d790915..115ca351d2 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -1480,67 +1480,67 @@ extraction, and lookup for applications on the
desktop.")
(define-public gnome-initial-setup
(package
- (name "gnome-initial-setup")
- (version "40.4")
- (source (origin
- (method url-fetch)
- (uri (string-append "mirror://gnome/sources/gnome-initial-setup/"
- (version-major version)
- "/gnome-initial-setup-" version ".tar.xz"))
- (sha256
- (base32
- "06q3p4f8g9zr7a4mw3qr556mi0dg9qzrj8n46ybdz93fxs26aaj1"))))
- (build-system meson-build-system)
- (arguments
- `(#:configure-flags '(;; Enable camera support for user selfie.
- "-Dcheese=auto"
- "-Dsystemd=false")
- #:phases (modify-phases %standard-phases
- (add-after 'unpack 'set-gkbd-file-name
- (lambda* (#:key inputs #:allow-other-keys)
- ;; Allow the "Preview" button in the keyboard layout
- ;; selection dialog to display the layout.
- (let ((libgnomekbd (assoc-ref inputs "libgnomekbd")))
- (substitute*
"gnome-initial-setup/pages/keyboard/cc-input-chooser.c"
- (("\"gkbd-keyboard-display")
- (string-append "\"" libgnomekbd
- "/bin/gkbd-keyboard-display")))
- #t))))))
- (native-inputs
- `(("gettext" ,gettext-minimal)
- ("glib:bin" ,glib "bin")
- ("gobject-introspection" ,gobject-introspection)
- ("gtk+:bin" ,gtk+ "bin")
- ("pkg-config" ,pkg-config)))
- (inputs
- `(("accountsservice" ,accountsservice)
- ;("adwaita-icon-theme" ,adwaita-icon-theme)
- ("elogind" ,elogind)
- ("gdm" ,gdm)
- ("geoclue" ,geoclue)
- ("gnome-desktop" ,gnome-desktop)
- ("gnome-online-accounts" ,gnome-online-accounts)
- ("gstreamer" ,gstreamer)
- ("ibus" ,ibus)
- ("json-glib" ,json-glib)
- ("krb5" ,mit-krb5)
- ("libgweather" ,libgweather)
- ("libnma" ,libnma)
- ("libsecret" ,libsecret)
- ("network-manager" ,network-manager)
- ("packagekit" ,packagekit)
- ("polkit" ,polkit)
- ("pwquality" ,libpwquality)
- ("rest" ,rest)
- ("upower" ,upower)
- ("webkitgtk" ,webkitgtk-with-libsoup2)
- ("libgnomekbd" ,libgnomekbd)))
- (synopsis "Initial setup wizard for GNOME desktop")
- (description "This package provides a set-up wizard when a
+ (name "gnome-initial-setup")
+ (version "42.2")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append "mirror://gnome/sources/gnome-initial-setup/"
+ (version-major version)
+ "/gnome-initial-setup-" version ".tar.xz"))
+ (sha256
+ (base32
+ "0yxy39a7d2whphd0jskvra5q8zy4v7m7lziy5fxibgls4j5xk0sd"))))
+ (build-system meson-build-system)
+ (arguments
+ (list
+ #:configure-flags #~(list "-Dsystemd=false")
+ #:glib-or-gtk? #t
+ #:phases
+ #~(modify-phases %standard-phases
+ (add-after 'unpack 'set-gkbd-file-name
+ (lambda* (#:key inputs #:allow-other-keys)
+ ;; Allow the "Preview" button in the keyboard layout
+ ;; selection dialog to display the layout.
+ (substitute*
"gnome-initial-setup/pages/keyboard/cc-input-chooser.c"
+ (("\"gkbd-keyboard-display")
+ (string-append "\"" (search-input-file
+ inputs
+ "bin/gkbd-keyboard-display")))))))))
+ (native-inputs
+ (list gettext-minimal
+ `(,glib "bin")
+ gobject-introspection
+ pkg-config))
+ (inputs
+ (list accountsservice
+ cheese
+ elogind
+ gdm
+ geoclue
+ gnome-desktop
+ gnome-online-accounts-3.44
+ gstreamer
+ ibus
+ json-glib
+ mit-krb5
+ libgnomekbd
+ libgweather4-with-libsoup2
+ libhandy
+ libnma
+ libpwquality
+ libsecret
+ network-manager
+ packagekit
+ polkit
+ rest
+ upower
+ webkitgtk-with-libsoup2))
+ (synopsis "Initial setup wizard for GNOME desktop")
+ (description "This package provides a set-up wizard when a
user logs into GNOME for the first time. It typically provides a
tour of all gnome components and allows the user to set them up.")
- (home-page "https://gitlab.gnome.org/GNOME/gnome-initial-setup")
- (license license:gpl2)))
+ (home-page "https://gitlab.gnome.org/GNOME/gnome-initial-setup")
+ (license license:gpl2)))
(define-public gnome-user-share
(package
- 41/181: gnu: gdm: Patch dbus-run-session path., (continued)
- 41/181: gnu: gdm: Patch dbus-run-session path., guix-commits, 2022/09/13
- 45/181: gnu: gjs: Remove input labels., guix-commits, 2022/09/13
- 47/181: gnu: mozjs: Update home-page., guix-commits, 2022/09/13
- 50/181: gnu: gtk: Replace librsvg with librsvg-bootstrap., guix-commits, 2022/09/13
- 53/181: gnu: Add rest-next., guix-commits, 2022/09/13
- 51/181: gnu: Add gobject-introspection-next., guix-commits, 2022/09/13
- 56/181: gnu: gnome-shell: Update to 42.4., guix-commits, 2022/09/13
- 57/181: gnu: colord-gtk: Update to 0.3.0., guix-commits, 2022/09/13
- 59/181: gnu: gnome-control-center: Update to 42.3., guix-commits, 2022/09/13
- 62/181: gnu: gnome-calendar: Update to 42.2., guix-commits, 2022/09/13
- 63/181: gnu: gnome-initial-setup: Update to 42.2.,
guix-commits <=
- 71/181: gnu: gnome-contacts: Update to 42.0., guix-commits, 2022/09/13
- 81/181: gnu: tepl: Update to 6.1.2 and enable tests., guix-commits, 2022/09/13
- 82/181: gnu: gedit: Update to 42.2., guix-commits, 2022/09/13
- 78/181: gnu: gnome-terminal: Update to 3.44.1., guix-commits, 2022/09/13
- 89/181: gnu: libgda: Update to 6.0.0., guix-commits, 2022/09/13
- 87/181: gnu: gnome-latex: Update to 3.41.2., guix-commits, 2022/09/13
- 92/181: gnu: gnome-shell-extensions: Update to 42.3., guix-commits, 2022/09/13
- 99/181: gnu: cambalache: Update to 0.10.3., guix-commits, 2022/09/13
- 107/181: gnu: rygel: Update to 0.41.2., guix-commits, 2022/09/13
- 105/181: gnu: gupnp-dlna: Update to 0.12.0., guix-commits, 2022/09/13