[2/2] gnu: network-manager-applet: Update to 1.4.2.

Message ID 20161014170649.25121-3-ng0@we.make.ritual.n0.is
State New
Headers

Commit Message

non such Oct. 14, 2016, 5:06 p.m. UTC
  * gnu/packages/gnome.scm (network-manager-applet): Update to 1.4.2.
---
 gnu/packages/gnome.scm | 12 ++++++++----
 1 file changed, 8 insertions(+), 4 deletions(-)
  

Comments

Ludovic Courtès Oct. 20, 2016, 8:21 p.m. UTC | #1
ng0 <ng0@we.make.ritual.n0.is> skribis:

> * gnu/packages/gnome.scm (network-manager-applet): Update to 1.4.2.

Applied to core-updates, thanks!

Ludo’.
  
Kei Yamashita Oct. 20, 2016, 9:22 p.m. UTC | #2
ludo@gnu.org (Ludovic Courtès) writes:

> ng0 <ng0@we.make.ritual.n0.is> skribis:
>
>> * gnu/packages/gnome.scm (network-manager-applet): Update to 1.4.2.
>
> Applied to core-updates, thanks!
>
> Ludo’.

I have a question. The network-manager service doesn't seem to work in
my VM, i.e. network-manager-applet gives the message "NetworkManager is
not running". Is this the case with the current network-manager service?
  

Patch

diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index db34d38..7ce7cc2 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -4472,7 +4472,7 @@  services.")
 (define-public network-manager-applet
   (package
     (name "network-manager-applet")
-    (version "1.2.0")
+    (version "1.4.2")
     (source (origin
               (method url-fetch)
               (uri (string-append "mirror://gnome/sources/" name "/"
@@ -4480,9 +4480,12 @@  services.")
                                   name "-" version ".tar.xz"))
               (sha256
                (base32
-                "0dhvk3dvy6djn6blpkv46dn6yfh28wsh6mpl0v53qxfip97j8kwk"))))
+                "16a43sl9aijmvxbb08hbjqyjnlshj8dckycbgi9nm333fr47n6s3"))))
     (build-system glib-or-gtk-build-system)
-    (arguments '(#:configure-flags '("--disable-migration")))
+    ;; TODO: WWAN support supposedly requires an update of glibmm which in turn
+    ;; requires an update of the its dependencies (glib and others).
+    (arguments '(#:configure-flags '("--disable-migration"
+                                     "--without-wwan")))
     (native-inputs
      `(("intltool" ,intltool)
        ("gobject-introspection" ,gobject-introspection)
@@ -4496,7 +4499,8 @@  services.")
      `(("iso-codes" ,iso-codes)
        ("libgudev" ,libgudev)
        ("libnotify" ,libnotify)
-       ("libsecret" ,libsecret)))
+       ("libsecret" ,libsecret)
+       ("jansson" ,jansson))) ; For team support
     (synopsis "Applet for managing network connections")
     (home-page "http://www.gnome.org/projects/NetworkManager/")
     (description