GNU bug report logs - #63154
Settings schema 'org.gnome.nm-applet.eap' is not installed

Previous Next

Package: guix;

Reported by: Steven Roose <steven <at> roose.io>

Date: Fri, 28 Apr 2023 18:11:01 UTC

Severity: normal

Tags: patch

Done: Maxim Cournoyer <maxim.cournoyer <at> gmail.com>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 63154 in the body.
You can then email your comments to 63154 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to bug-guix <at> gnu.org:
bug#63154; Package guix. (Fri, 28 Apr 2023 18:11:01 GMT) Full text and rfc822 format available.

Acknowledgement sent to Steven Roose <steven <at> roose.io>:
New bug report received and forwarded. Copy sent to bug-guix <at> gnu.org. (Fri, 28 Apr 2023 18:11:02 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Steven Roose <steven <at> roose.io>
To: bug-guix <at> gnu.org
Subject: Settings schema 'org.gnome.nm-applet.eap' is not installed
Date: Fri, 28 Apr 2023 19:10:34 +0100
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.





Information forwarded to bug-guix <at> gnu.org:
bug#63154; Package guix. (Sat, 29 Apr 2023 01:21:02 GMT) Full text and rfc822 format available.

Message #8 received at 63154 <at> debbugs.gnu.org (full text, mbox):

From: Mario Forzanini <mf <at> marioforzanini.com>
To: Steven Roose <steven <at> roose.io>
Cc: 63154 <at> debbugs.gnu.org
Subject: Re: bug#63154: Settings schema 'org.gnome.nm-applet.eap' is not
 installed
Date: Fri, 28 Apr 2023 20:51:47 +0200
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





Information forwarded to bug-guix <at> gnu.org:
bug#63154; Package guix. (Sat, 29 Apr 2023 09:00:01 GMT) Full text and rfc822 format available.

Message #11 received at 63154 <at> debbugs.gnu.org (full text, mbox):

From: Josselin Poiret <dev <at> jpoiret.xyz>
To: Steven Roose <steven <at> roose.io>,
	63154 <at> debbugs.gnu.org
Cc: Josselin Poiret <dev <at> jpoiret.xyz>
Subject: [PATCH 1/2] gnu: libnma: Update to 1.10.6.
Date: Sat, 29 Apr 2023 10:59:07 +0200
From: Josselin Poiret <dev <at> 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





Information forwarded to bug-guix <at> gnu.org:
bug#63154; Package guix. (Sat, 29 Apr 2023 09:00:02 GMT) Full text and rfc822 format available.

Message #14 received at 63154 <at> debbugs.gnu.org (full text, mbox):

From: Josselin Poiret <dev <at> jpoiret.xyz>
To: Steven Roose <steven <at> roose.io>,
	63154 <at> debbugs.gnu.org
Cc: Josselin Poiret <dev <at> jpoiret.xyz>
Subject: [PATCH 0/2] Update network-manager-applet and libnma
Date: Sat, 29 Apr 2023 10:59:06 +0200
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





Information forwarded to bug-guix <at> gnu.org:
bug#63154; Package guix. (Sat, 29 Apr 2023 09:00:02 GMT) Full text and rfc822 format available.

Message #17 received at 63154 <at> debbugs.gnu.org (full text, mbox):

From: Josselin Poiret <dev <at> jpoiret.xyz>
To: Steven Roose <steven <at> roose.io>,
	63154 <at> debbugs.gnu.org
Cc: Josselin Poiret <dev <at> jpoiret.xyz>
Subject: [PATCH 2/2] gnu: network-manager-applet: Update to 1.32.0.
Date: Sat, 29 Apr 2023 10:59:08 +0200
From: Josselin Poiret <dev <at> 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





Added tag(s) patch. Request was from Josselin Poiret <dev <at> jpoiret.xyz> to control <at> debbugs.gnu.org. (Sat, 29 Apr 2023 09:02:02 GMT) Full text and rfc822 format available.

Reply sent to Maxim Cournoyer <maxim.cournoyer <at> gmail.com>:
You have taken responsibility. (Tue, 09 May 2023 02:30:02 GMT) Full text and rfc822 format available.

Notification sent to Steven Roose <steven <at> roose.io>:
bug acknowledged by developer. (Tue, 09 May 2023 02:30:02 GMT) Full text and rfc822 format available.

Message #24 received at 63154-done <at> debbugs.gnu.org (full text, mbox):

From: Maxim Cournoyer <maxim.cournoyer <at> gmail.com>
To: Josselin Poiret <dev <at> jpoiret.xyz>
Cc: Steven Roose <steven <at> roose.io>, 63154-done <at> debbugs.gnu.org
Subject: Re: bug#63154: Settings schema 'org.gnome.nm-applet.eap' is not
 installed
Date: Mon, 08 May 2023 22:29:44 -0400
Hi,

Josselin Poiret <dev <at> jpoiret.xyz> writes:

> From: Josselin Poiret <dev <at> 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




bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Tue, 06 Jun 2023 11:24:08 GMT) Full text and rfc822 format available.

This bug report was last modified 318 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.