all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [PATCH] Update networkmanager+nm-applet
@ 2016-10-14 17:06 ng0
  2016-10-14 17:06 ` [PATCH 1/2] gnu: network-manager: Update to 1.4.2 ng0
                   ` (3 more replies)
  0 siblings, 4 replies; 9+ messages in thread
From: ng0 @ 2016-10-14 17:06 UTC (permalink / raw)
  To: guix-devel

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

Update to 1.4.2 for both, nm-applet is build without WWAN support until we have glib updated to 2.50,
which should be done in core-updates if it isn't already being worked on.

^ permalink raw reply	[flat|nested] 9+ messages in thread

* [PATCH 1/2] gnu: network-manager: Update to 1.4.2.
  2016-10-14 17:06 [PATCH] Update networkmanager+nm-applet ng0
@ 2016-10-14 17:06 ` ng0
  2016-10-20 20:21   ` Ludovic Courtès
  2016-10-14 17:06 ` [PATCH 2/2] gnu: network-manager-applet: " ng0
                   ` (2 subsequent siblings)
  3 siblings, 1 reply; 9+ messages in thread
From: ng0 @ 2016-10-14 17:06 UTC (permalink / raw)
  To: guix-devel

* gnu/packages/gnome.scm (network-manager): Update to 1.4.2.
---
 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 2b75781..db34d38 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -4354,7 +4354,7 @@ users.")
 (define-public network-manager
   (package
     (name "network-manager")
-    (version "1.2.0")
+    (version "1.4.2")
     (source (origin
               (method url-fetch)
               (uri (string-append "mirror://gnome/sources/NetworkManager/"
@@ -4362,7 +4362,7 @@ users.")
                                   "NetworkManager-" version ".tar.xz"))
               (sha256
                (base32
-                "101axwk3bc1pm9m98vwrnxyjna6w0qgzaskgivldq69xz8qcyiz9"))))
+                "016jc21mwjxvnfiblp5lji55sr8aq6w8a08fsjmqvnpnvm3y6r58"))))
     (build-system gnu-build-system)
     (outputs '("out"
                "doc")) ; 8 MiB of gtk-doc HTML
-- 
2.10.1

^ permalink raw reply related	[flat|nested] 9+ messages in thread

* [PATCH 2/2] gnu: network-manager-applet: Update to 1.4.2.
  2016-10-14 17:06 [PATCH] Update networkmanager+nm-applet ng0
  2016-10-14 17:06 ` [PATCH 1/2] gnu: network-manager: Update to 1.4.2 ng0
@ 2016-10-14 17:06 ` ng0
  2016-10-20 20:21   ` Ludovic Courtès
  2016-10-14 17:14 ` [PATCH] Update networkmanager+nm-applet ng0
  2016-10-17 20:05 ` Kei Kebreau
  3 siblings, 1 reply; 9+ messages in thread
From: ng0 @ 2016-10-14 17:06 UTC (permalink / raw)
  To: guix-devel

* gnu/packages/gnome.scm (network-manager-applet): Update to 1.4.2.
---
 gnu/packages/gnome.scm | 12 ++++++++----
 1 file changed, 8 insertions(+), 4 deletions(-)

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
-- 
2.10.1

^ permalink raw reply related	[flat|nested] 9+ messages in thread

* Re: [PATCH] Update networkmanager+nm-applet
  2016-10-14 17:06 [PATCH] Update networkmanager+nm-applet ng0
  2016-10-14 17:06 ` [PATCH 1/2] gnu: network-manager: Update to 1.4.2 ng0
  2016-10-14 17:06 ` [PATCH 2/2] gnu: network-manager-applet: " ng0
@ 2016-10-14 17:14 ` ng0
  2016-10-17 20:05 ` Kei Kebreau
  3 siblings, 0 replies; 9+ messages in thread
From: ng0 @ 2016-10-14 17:14 UTC (permalink / raw)
  To: guix-devel

ng0 <ng0@we.make.ritual.n0.is> writes:

>  [PATCH 1/2] gnu: network-manager: Update to 1.4.2.
>  [PATCH 2/2] gnu: network-manager-applet: Update to 1.4.2.
>
> Update to 1.4.2 for both, nm-applet is build without WWAN support until we have glib updated to 2.50,
> which should be done in core-updates if it isn't already being worked on.
>
>

After updating the nm pair, someone could try the service and see if
there was improvement over the 1.2.x state.

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [PATCH] Update networkmanager+nm-applet
  2016-10-14 17:06 [PATCH] Update networkmanager+nm-applet ng0
                   ` (2 preceding siblings ...)
  2016-10-14 17:14 ` [PATCH] Update networkmanager+nm-applet ng0
@ 2016-10-17 20:05 ` Kei Kebreau
  2016-10-18 12:31   ` Ludovic Courtès
  3 siblings, 1 reply; 9+ messages in thread
From: Kei Kebreau @ 2016-10-17 20:05 UTC (permalink / raw)
  To: ng0; +Cc: guix-devel

[-- Attachment #1: Type: text/plain, Size: 437 bytes --]

ng0 <ng0@we.make.ritual.n0.is> writes:

>  [PATCH 1/2] gnu: network-manager: Update to 1.4.2.
>  [PATCH 2/2] gnu: network-manager-applet: Update to 1.4.2.
>
> Update to 1.4.2 for both, nm-applet is build without WWAN support
> until we have glib updated to 2.50,
> which should be done in core-updates if it isn't already being worked on.

The patches look good, but I don't know how to test the service from
within my Guix source tree.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 818 bytes --]

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [PATCH] Update networkmanager+nm-applet
  2016-10-17 20:05 ` Kei Kebreau
@ 2016-10-18 12:31   ` Ludovic Courtès
  0 siblings, 0 replies; 9+ messages in thread
From: Ludovic Courtès @ 2016-10-18 12:31 UTC (permalink / raw)
  To: Kei Kebreau; +Cc: guix-devel

Kei Kebreau <kei@openmailbox.org> skribis:

> ng0 <ng0@we.make.ritual.n0.is> writes:
>
>>  [PATCH 1/2] gnu: network-manager: Update to 1.4.2.
>>  [PATCH 2/2] gnu: network-manager-applet: Update to 1.4.2.
>>
>> Update to 1.4.2 for both, nm-applet is build without WWAN support
>> until we have glib updated to 2.50,
>> which should be done in core-updates if it isn't already being worked on.
>
> The patches look good, but I don't know how to test the service from
> within my Guix source tree.

You could come up with an OS config that uses network manager instead of
Wicd, and then test that with ‘guix system vm’.

It won’t tell you if NM would work “in reality”, but it would catch
basic issues.

Ludo’.

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [PATCH 1/2] gnu: network-manager: Update to 1.4.2.
  2016-10-14 17:06 ` [PATCH 1/2] gnu: network-manager: Update to 1.4.2 ng0
@ 2016-10-20 20:21   ` Ludovic Courtès
  0 siblings, 0 replies; 9+ messages in thread
From: Ludovic Courtès @ 2016-10-20 20:21 UTC (permalink / raw)
  To: ng0; +Cc: guix-devel

ng0 <ng0@we.make.ritual.n0.is> skribis:

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

Applied to core-updates.

Ludo’.

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [PATCH 2/2] gnu: network-manager-applet: Update to 1.4.2.
  2016-10-14 17:06 ` [PATCH 2/2] gnu: network-manager-applet: " ng0
@ 2016-10-20 20:21   ` Ludovic Courtès
  2016-10-20 21:22     ` Kei Kebreau
  0 siblings, 1 reply; 9+ messages in thread
From: Ludovic Courtès @ 2016-10-20 20:21 UTC (permalink / raw)
  To: ng0; +Cc: guix-devel

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’.

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [PATCH 2/2] gnu: network-manager-applet: Update to 1.4.2.
  2016-10-20 20:21   ` Ludovic Courtès
@ 2016-10-20 21:22     ` Kei Kebreau
  0 siblings, 0 replies; 9+ messages in thread
From: Kei Kebreau @ 2016-10-20 21:22 UTC (permalink / raw)
  To: Ludovic Courtès; +Cc: guix-devel

[-- Attachment #1: Type: text/plain, Size: 436 bytes --]

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?

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 818 bytes --]

^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2016-10-20 21:22 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-10-14 17:06 [PATCH] Update networkmanager+nm-applet ng0
2016-10-14 17:06 ` [PATCH 1/2] gnu: network-manager: Update to 1.4.2 ng0
2016-10-20 20:21   ` Ludovic Courtès
2016-10-14 17:06 ` [PATCH 2/2] gnu: network-manager-applet: " ng0
2016-10-20 20:21   ` Ludovic Courtès
2016-10-20 21:22     ` Kei Kebreau
2016-10-14 17:14 ` [PATCH] Update networkmanager+nm-applet ng0
2016-10-17 20:05 ` Kei Kebreau
2016-10-18 12:31   ` Ludovic Courtès

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.