* bug#63154: Settings schema 'org.gnome.nm-applet.eap' is not installed
@ 2023-04-28 18:10 Steven Roose
2023-04-28 18:51 ` Mario Forzanini via Bug reports for GNU Guix
2023-04-29 8:59 ` bug#63154: [PATCH 0/2] Update network-manager-applet and libnma Josselin Poiret via Bug reports for GNU Guix
0 siblings, 2 replies; 6+ messages in thread
From: Steven Roose @ 2023-04-28 18:10 UTC (permalink / raw)
To: 63154
Recently did a system upgrade and getting that error now when entering
password for a new wifi network. It also kills the networkmanager applet.
Full error:
(nm-applet:2051): GLib-GIO-ERROR **: 19:06:02.763: Settings schema
'org.gnome.nm-applet.eap' is not installed
Seems related to https://issues.guix.gnu.org/41651 from two years ago.
^ permalink raw reply [flat|nested] 6+ messages in thread
* bug#63154: Settings schema 'org.gnome.nm-applet.eap' is not installed
2023-04-28 18:10 bug#63154: Settings schema 'org.gnome.nm-applet.eap' is not installed Steven Roose
@ 2023-04-28 18:51 ` Mario Forzanini via Bug reports for GNU Guix
2023-04-29 8:59 ` bug#63154: [PATCH 0/2] Update network-manager-applet and libnma Josselin Poiret via Bug reports for GNU Guix
1 sibling, 0 replies; 6+ messages in thread
From: Mario Forzanini via Bug reports for GNU Guix @ 2023-04-28 18:51 UTC (permalink / raw)
To: Steven Roose; +Cc: 63154
On 4/28/23 8:10 PM, Steven Roose wrote:
> Recently did a system upgrade and getting that error now when entering
> password for a new wifi network. It also kills the networkmanager applet.
I experienced a similar issue a month or so ago when trying to connect
to my university's wifi network, installing libnma solved it.
This recent issue might be related
https://issues.guix.gnu.org/62496
I hope this helps
--
Mario
^ permalink raw reply [flat|nested] 6+ messages in thread
* bug#63154: [PATCH 0/2] Update network-manager-applet and libnma
2023-04-28 18:10 bug#63154: Settings schema 'org.gnome.nm-applet.eap' is not installed Steven Roose
2023-04-28 18:51 ` Mario Forzanini via Bug reports for GNU Guix
@ 2023-04-29 8:59 ` Josselin Poiret via Bug reports for GNU Guix
2023-04-29 8:59 ` bug#63154: [PATCH 1/2] gnu: libnma: Update to 1.10.6 Josselin Poiret via Bug reports for GNU Guix
2023-04-29 8:59 ` bug#63154: [PATCH 2/2] gnu: network-manager-applet: Update to 1.32.0 Josselin Poiret via Bug reports for GNU Guix
1 sibling, 2 replies; 6+ messages in thread
From: Josselin Poiret via Bug reports for GNU Guix @ 2023-04-29 8:59 UTC (permalink / raw)
To: Steven Roose, 63154; +Cc: Josselin Poiret
Hi Steven,
These updates should resolve the schema situation, because the last update
didn't update libnma along with network-manager-applet.
Best,
Josselin Poiret (2):
gnu: libnma: Update to 1.10.6.
gnu: network-manager-applet: Update to 1.32.0.
gnu/packages/gnome.scm | 26 +++++++++++++++++++-------
1 file changed, 19 insertions(+), 7 deletions(-)
--
2.39.2
^ permalink raw reply [flat|nested] 6+ messages in thread
* bug#63154: [PATCH 1/2] gnu: libnma: Update to 1.10.6.
2023-04-29 8:59 ` bug#63154: [PATCH 0/2] Update network-manager-applet and libnma Josselin Poiret via Bug reports for GNU Guix
@ 2023-04-29 8:59 ` Josselin Poiret via Bug reports for GNU Guix
2023-04-29 8:59 ` bug#63154: [PATCH 2/2] gnu: network-manager-applet: Update to 1.32.0 Josselin Poiret via Bug reports for GNU Guix
1 sibling, 0 replies; 6+ messages in thread
From: Josselin Poiret via Bug reports for GNU Guix @ 2023-04-29 8:59 UTC (permalink / raw)
To: Steven Roose, 63154; +Cc: Josselin Poiret
From: Josselin Poiret <dev@jpoiret.xyz>
* gnu/packages/gnome.scm (libnma): Update to 1.10.6. Also remove general
schema that belongs to network-manager-applet.
---
gnu/packages/gnome.scm | 22 +++++++++++++++++-----
1 file changed, 17 insertions(+), 5 deletions(-)
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index 7aa7180f5e..a98f2fbe5a 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -1735,7 +1735,7 @@ (define-public rygel
(define-public libnma
(package
(name "libnma")
- (version "1.10.2")
+ (version "1.10.6")
(source (origin
(method url-fetch)
(uri (string-append "mirror://gnome/sources/" name "/"
@@ -1743,14 +1743,26 @@ (define-public libnma
name "-" version ".tar.xz"))
(sha256
(base32
- "0h095a26w3sgbspsf7wzz8ddg62j3jb9ckrrv41k7cdp0k2dkhsg"))))
+ "1avdsw1l61gwr29lzvlr4dh3qz6ypsc3xvfahrcprlqa34mzp9jk"))))
(build-system meson-build-system)
(arguments
;; GTK 4.x depends on Rust (indirectly) so pull it only on platforms
;; where it is supported.
- (list #:configure-flags (if (supported-package? gtk)
- #~(list "-Dlibnma_gtk4=true")
- #~(list "-Dlibnma_gtk4=false"))))
+ (list
+ #:configure-flags
+ (if (supported-package? gtk)
+ #~(list "-Dlibnma_gtk4=true")
+ #~(list "-Dlibnma_gtk4=false"))
+ #:phases
+ #~(modify-phases %standard-phases
+ ;; We follow upstream's recommendation at
+ ;; https://gitlab.gnome.org/GNOME/libnma/-/commit/9166164387b0367becbe3400af696f925fef0ab1
+ (add-after 'install 'delete-org.gnome.nm-applet.gschema
+ (lambda _
+ (delete-file
+ (string-append
+ #$output
+ "/share/glib-2.0/schemas/org.gnome.nm-applet.gschema.xml")))))))
(native-inputs
(list docbook-xml-4.3
gettext-minimal
--
2.39.2
^ permalink raw reply related [flat|nested] 6+ messages in thread
* bug#63154: [PATCH 2/2] gnu: network-manager-applet: Update to 1.32.0.
2023-04-29 8:59 ` bug#63154: [PATCH 0/2] Update network-manager-applet and libnma Josselin Poiret via Bug reports for GNU Guix
2023-04-29 8:59 ` bug#63154: [PATCH 1/2] gnu: libnma: Update to 1.10.6 Josselin Poiret via Bug reports for GNU Guix
@ 2023-04-29 8:59 ` Josselin Poiret via Bug reports for GNU Guix
2023-05-09 2:29 ` bug#63154: Settings schema 'org.gnome.nm-applet.eap' is not installed Maxim Cournoyer
1 sibling, 1 reply; 6+ messages in thread
From: Josselin Poiret via Bug reports for GNU Guix @ 2023-04-29 8:59 UTC (permalink / raw)
To: Steven Roose, 63154; +Cc: Josselin Poiret
From: Josselin Poiret <dev@jpoiret.xyz>
* gnu/packages/gnome.scm (network-manager-applet): Update to 1.32.0.
---
gnu/packages/gnome.scm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index a98f2fbe5a..02186bae96 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -8633,7 +8633,7 @@ (define-public mobile-broadband-provider-info
(define-public network-manager-applet
(package
(name "network-manager-applet")
- (version "1.30.0")
+ (version "1.32.0")
(source (origin
(method url-fetch)
(uri (string-append "mirror://gnome/sources/network-manager-applet/"
@@ -8641,7 +8641,7 @@ (define-public network-manager-applet
"network-manager-applet-" version ".tar.xz"))
(sha256
(base32
- "1lswxfxjfbiknspwli8d65i0bnyfazzcnrqckaw0s44zkm7bh5lm"))))
+ "0f5sxxi9rywg8mhglcyk3sqmgv5wwl4vxzar56847b852pxazdd2"))))
(build-system meson-build-system)
(arguments
`(#:glib-or-gtk? #t
--
2.39.2
^ permalink raw reply related [flat|nested] 6+ messages in thread
* bug#63154: Settings schema 'org.gnome.nm-applet.eap' is not installed
2023-04-29 8:59 ` bug#63154: [PATCH 2/2] gnu: network-manager-applet: Update to 1.32.0 Josselin Poiret via Bug reports for GNU Guix
@ 2023-05-09 2:29 ` Maxim Cournoyer
0 siblings, 0 replies; 6+ messages in thread
From: Maxim Cournoyer @ 2023-05-09 2:29 UTC (permalink / raw)
To: Josselin Poiret; +Cc: Steven Roose, 63154-done
Hi,
Josselin Poiret <dev@jpoiret.xyz> writes:
> From: Josselin Poiret <dev@jpoiret.xyz>
>
> * gnu/packages/gnome.scm (network-manager-applet): Update to 1.32.0.
> ---
> gnu/packages/gnome.scm | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
> index a98f2fbe5a..02186bae96 100644
> --- a/gnu/packages/gnome.scm
> +++ b/gnu/packages/gnome.scm
> @@ -8633,7 +8633,7 @@ (define-public mobile-broadband-provider-info
> (define-public network-manager-applet
> (package
> (name "network-manager-applet")
> - (version "1.30.0")
> + (version "1.32.0")
> (source (origin
> (method url-fetch)
> (uri (string-append "mirror://gnome/sources/network-manager-applet/"
> @@ -8641,7 +8641,7 @@ (define-public network-manager-applet
> "network-manager-applet-" version ".tar.xz"))
> (sha256
> (base32
> - "1lswxfxjfbiknspwli8d65i0bnyfazzcnrqckaw0s44zkm7bh5lm"))))
> + "0f5sxxi9rywg8mhglcyk3sqmgv5wwl4vxzar56847b852pxazdd2"))))
> (build-system meson-build-system)
> (arguments
> `(#:glib-or-gtk? #t
The fixes proposed here have been installed. Thanks!
--
Maxim
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2023-05-09 2:30 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-04-28 18:10 bug#63154: Settings schema 'org.gnome.nm-applet.eap' is not installed Steven Roose
2023-04-28 18:51 ` Mario Forzanini via Bug reports for GNU Guix
2023-04-29 8:59 ` bug#63154: [PATCH 0/2] Update network-manager-applet and libnma Josselin Poiret via Bug reports for GNU Guix
2023-04-29 8:59 ` bug#63154: [PATCH 1/2] gnu: libnma: Update to 1.10.6 Josselin Poiret via Bug reports for GNU Guix
2023-04-29 8:59 ` bug#63154: [PATCH 2/2] gnu: network-manager-applet: Update to 1.32.0 Josselin Poiret via Bug reports for GNU Guix
2023-05-09 2:29 ` bug#63154: Settings schema 'org.gnome.nm-applet.eap' is not installed Maxim Cournoyer
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).