Hello community,

here is the log from the commit of package NetworkManager-gnome for 
openSUSE:Factory checked in at 2015-08-21 07:38:38
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/NetworkManager-gnome (Old)
 and      /work/SRC/openSUSE:Factory/.NetworkManager-gnome.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "NetworkManager-gnome"

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/NetworkManager-gnome/NetworkManager-gnome.changes    
    2015-07-05 17:59:14.000000000 +0200
+++ 
/work/SRC/openSUSE:Factory/.NetworkManager-gnome.new/NetworkManager-gnome.changes
   2015-08-21 07:38:39.000000000 +0200
@@ -1,0 +2,30 @@
+Wed Aug 19 19:52:54 UTC 2015 - [email protected]
+
+- Toggle with_cacert_patch to 1: the patch has been rebased.
+
+-------------------------------------------------------------------
+Wed Jul 15 11:45:35 UTC 2015 - [email protected]
+
+- Update to version 1.0.4:
+  + Setting MTU for a bond device is now supported.
+  + Connecting to a wireless network from the NetworkManager applet
+    no longer results in an attempt to create system-wide
+    connections. This fixes the ability to connect to a wireless
+    network for non-privileged user.
+  + The master interface name is used instead of master connection
+    UUID for slave connections created with nm-connection-editor.
+    This fixes compatibility of the ifcfg configuration files with
+    the legacy network service.
+  + It is now possible to specify an interface name instead of a
+    MAC address when editing a connection using
+    nm-connection-editor.
+  + The WWAN connections now have IPv6 enabled by default.
+  + libnm-gtk includes functions for password storage selection,
+    which eases implementation of password GUI for VPN plugins and
+    other users.
+- Rebase nm-applet-probe-radius-server-cert.patch and
+  nm-applet-probe-radius-server-cert.patch.
+- Toggle with_cacert_patch to 0: the cacert patch is currently
+  disabled in NetworkManager (boo#938198).
+
+-------------------------------------------------------------------

Old:
----
  network-manager-applet-1.0.2.tar.xz

New:
----
  network-manager-applet-1.0.4.tar.xz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ NetworkManager-gnome.spec ++++++
--- /var/tmp/diff_new_pack.4lobi0/_old  2015-08-21 07:38:40.000000000 +0200
+++ /var/tmp/diff_new_pack.4lobi0/_new  2015-08-21 07:38:40.000000000 +0200
@@ -20,7 +20,7 @@
 
 Name:           NetworkManager-gnome
 Url:            http://www.gnome.org/projects/NetworkManager/
-Version:        1.0.2
+Version:        1.0.4
 Release:        0
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  dbus-1-devel

++++++ network-manager-applet-1.0.2.tar.xz -> 
network-manager-applet-1.0.4.tar.xz ++++++
++++ 14814 lines of diff (skipped)

++++++ nm-applet-private-connection.patch ++++++
--- /var/tmp/diff_new_pack.4lobi0/_old  2015-08-21 07:38:41.000000000 +0200
+++ /var/tmp/diff_new_pack.4lobi0/_new  2015-08-21 07:38:41.000000000 +0200
@@ -24,10 +24,10 @@
  src/utils/utils.h                   |  2 ++
  12 files changed, 189 insertions(+), 1 deletion(-)
 
-Index: network-manager-applet-0.9.10.0/configure.ac
+Index: network-manager-applet-1.0.4/configure.ac
 ===================================================================
---- network-manager-applet-0.9.10.0.orig/configure.ac
-+++ network-manager-applet-0.9.10.0/configure.ac
+--- network-manager-applet-1.0.4.orig/configure.ac
++++ network-manager-applet-1.0.4/configure.ac
 @@ -82,6 +82,10 @@ PKG_CHECK_MODULES(NMA,
  
  NMA_CFLAGS="$NMA_CFLAGS -DGLIB_VERSION_MIN_REQUIRED=GLIB_VERSION_2_32"
@@ -39,10 +39,10 @@
  AC_MSG_CHECKING([whether to build nm-applet-migration-tool])
  AC_ARG_ENABLE([migration],
              [AS_HELP_STRING([--disable-migration], [Don't build migration 
tool for NM <= 0.8 settings])],
-Index: network-manager-applet-0.9.10.0/src/applet-device-ethernet.c
+Index: network-manager-applet-1.0.4/src/applet-device-ethernet.c
 ===================================================================
---- network-manager-applet-0.9.10.0.orig/src/applet-device-ethernet.c
-+++ network-manager-applet-0.9.10.0/src/applet-device-ethernet.c
+--- network-manager-applet-1.0.4.orig/src/applet-device-ethernet.c
++++ network-manager-applet-1.0.4/src/applet-device-ethernet.c
 @@ -40,6 +40,7 @@
  #include "applet-device-ethernet.h"
  #include "ethernet-dialog.h"
@@ -64,11 +64,11 @@
  
        nm_connection_add_setting (connection, NM_SETTING (s_con));
  
-Index: network-manager-applet-0.9.10.0/src/applet-device-wifi.c
+Index: network-manager-applet-1.0.4/src/applet-device-wifi.c
 ===================================================================
---- network-manager-applet-0.9.10.0.orig/src/applet-device-wifi.c
-+++ network-manager-applet-0.9.10.0/src/applet-device-wifi.c
-@@ -442,6 +442,18 @@ _do_new_auto_connection (NMApplet *apple
+--- network-manager-applet-1.0.4.orig/src/applet-device-wifi.c
++++ network-manager-applet-1.0.4/src/applet-device-wifi.c
+@@ -445,6 +445,18 @@ _do_new_auto_connection (NMApplet *apple
                nm_connection_add_setting (connection, NM_SETTING (s_8021x));
        }
  
@@ -87,10 +87,10 @@
        /* If it's an 802.1x connection, we need more information, so pop up the
         * Dialog Of Doom.
         */
-Index: network-manager-applet-0.9.10.0/src/applet-device-wimax.c
+Index: network-manager-applet-1.0.4/src/applet-device-wimax.c
 ===================================================================
---- network-manager-applet-0.9.10.0.orig/src/applet-device-wimax.c
-+++ network-manager-applet-0.9.10.0/src/applet-device-wimax.c
+--- network-manager-applet-1.0.4.orig/src/applet-device-wimax.c
++++ network-manager-applet-1.0.4/src/applet-device-wimax.c
 @@ -39,6 +39,7 @@
  #include "nma-marshal.h"
  #include "mb-menu-item.h"
@@ -112,11 +112,11 @@
  
        nm_connection_add_setting (connection, NM_SETTING (s_con));
  
-Index: network-manager-applet-0.9.10.0/src/connection-editor/Makefile.am
+Index: network-manager-applet-1.0.4/src/connection-editor/Makefile.am
 ===================================================================
---- network-manager-applet-0.9.10.0.orig/src/connection-editor/Makefile.am
-+++ network-manager-applet-0.9.10.0/src/connection-editor/Makefile.am
-@@ -12,6 +12,7 @@ nm_connection_editor_CPPFLAGS = \
+--- network-manager-applet-1.0.4.orig/src/connection-editor/Makefile.am
++++ network-manager-applet-1.0.4/src/connection-editor/Makefile.am
+@@ -13,6 +13,7 @@ nm_connection_editor_CPPFLAGS = \
        -DDATADIR=\""$(datadir)"\" \
        -DNMALOCALEDIR=\"$(datadir)/locale\" \
        $(DBUS_CFLAGS) \
@@ -124,7 +124,7 @@
        $(DISABLE_DEPRECATED) \
        -I${top_srcdir}/src/utils \
        -I${top_srcdir}/src/wireless-security \
-@@ -91,6 +92,7 @@ nm_connection_editor_LDADD = \
+@@ -94,6 +95,7 @@ nm_connection_editor_LDADD = \
        ${top_builddir}/src/libnm-gtk/libnm-gtk.la \
        $(GTK_LIBS) \
        $(NMA_LIBS) \
@@ -132,10 +132,10 @@
        -lm
  
  uidir = $(datadir)/nm-applet
-Index: network-manager-applet-0.9.10.0/src/connection-editor/ce-page.c
+Index: network-manager-applet-1.0.4/src/connection-editor/ce-page.c
 ===================================================================
---- network-manager-applet-0.9.10.0.orig/src/connection-editor/ce-page.c
-+++ network-manager-applet-0.9.10.0/src/connection-editor/ce-page.c
+--- network-manager-applet-1.0.4.orig/src/connection-editor/ce-page.c
++++ network-manager-applet-1.0.4/src/connection-editor/ce-page.c
 @@ -29,6 +29,8 @@
  
  #include <glib/gi18n.h>
@@ -145,7 +145,7 @@
  #include <nm-setting-connection.h>
  #include <nm-utils.h>
  
-@@ -531,6 +533,44 @@ ce_page_class_init (CEPageClass *page_cl
+@@ -798,6 +800,44 @@ ce_page_class_init (CEPageClass *page_cl
                              G_TYPE_NONE, 1, G_TYPE_POINTER);
  }
  
@@ -190,7 +190,7 @@
  
  NMConnection *
  ce_page_new_connection (const char *format,
-@@ -565,6 +605,13 @@ ce_page_new_connection (const char *form
+@@ -832,6 +872,13 @@ ce_page_new_connection (const char *form
        g_free (uuid);
        g_free (id);
  
@@ -204,11 +204,11 @@
        return connection;
  }
  
-Index: network-manager-applet-0.9.10.0/src/gnome-bluetooth/Makefile.am
+Index: network-manager-applet-1.0.4/src/gnome-bluetooth/Makefile.am
 ===================================================================
---- network-manager-applet-0.9.10.0.orig/src/gnome-bluetooth/Makefile.am
-+++ network-manager-applet-0.9.10.0/src/gnome-bluetooth/Makefile.am
-@@ -7,6 +7,7 @@ INCLUDES = \
+--- network-manager-applet-1.0.4.orig/src/gnome-bluetooth/Makefile.am
++++ network-manager-applet-1.0.4/src/gnome-bluetooth/Makefile.am
+@@ -7,6 +7,7 @@ AM_CPPFLAGS = \
        -I${top_srcdir}/src/utils \
        -I${top_srcdir}/src/libnm-gtk \
        $(GNOME_BLUETOOTH_CFLAGS) \
@@ -216,7 +216,7 @@
        $(DISABLE_DEPRECATED) \
        $(WARN_CFLAGS)
  
-@@ -32,6 +33,7 @@ libnma_la_LIBADD = \
+@@ -34,6 +35,7 @@ libnma_la_LIBADD = \
        $(top_builddir)/src/marshallers/libmarshallers.la \
        $(top_builddir)/src/utils/libutils.la \
        $(top_builddir)/src/libnm-gtk/libnm-gtk.la \
@@ -224,10 +224,10 @@
        $(GNOME_BLUETOOTH_LIBS)
  
  if WITH_MODEM_MANAGER_1
-Index: network-manager-applet-0.9.10.0/src/gnome-bluetooth/nma-bt-device.c
+Index: network-manager-applet-1.0.4/src/gnome-bluetooth/nma-bt-device.c
 ===================================================================
---- network-manager-applet-0.9.10.0.orig/src/gnome-bluetooth/nma-bt-device.c
-+++ network-manager-applet-0.9.10.0/src/gnome-bluetooth/nma-bt-device.c
+--- network-manager-applet-1.0.4.orig/src/gnome-bluetooth/nma-bt-device.c
++++ network-manager-applet-1.0.4/src/gnome-bluetooth/nma-bt-device.c
 @@ -34,6 +34,8 @@
  #include <glib.h>
  #include <glib/gi18n-lib.h>
@@ -308,7 +308,7 @@
        nm_connection_add_setting (connection, setting);
  
        return connection;
-@@ -983,6 +1035,12 @@ add_pan_connection (NmaBtDevice *self)
+@@ -978,6 +1030,12 @@ add_pan_connection (NmaBtDevice *self)
                      NULL);
        g_free (id);
        g_free (uuid);
@@ -321,12 +321,12 @@
        nm_connection_add_setting (connection, setting);
  
        /* The Bluetooth settings */
-Index: network-manager-applet-0.9.10.0/src/mobile-helpers.c
+Index: network-manager-applet-1.0.4/src/mobile-helpers.c
 ===================================================================
---- network-manager-applet-0.9.10.0.orig/src/mobile-helpers.c
-+++ network-manager-applet-0.9.10.0/src/mobile-helpers.c
-@@ -210,6 +210,12 @@ mobile_wizard_done (NMAMobileWizard *wiz
-                             NULL);
+--- network-manager-applet-1.0.4.orig/src/mobile-helpers.c
++++ network-manager-applet-1.0.4/src/mobile-helpers.c
+@@ -219,6 +219,12 @@ mobile_wizard_done (NMAMobileWizard *wiz
+                                                     "user", g_get_user_name 
(), NULL);
                g_free (uuid);
                g_free (id);
 +              if (!utils_system_connection_authorized ()) {
@@ -338,10 +338,10 @@
                nm_connection_add_setting (connection, setting);
        }
  
-Index: network-manager-applet-0.9.10.0/src/utils/Makefile.am
+Index: network-manager-applet-1.0.4/src/utils/Makefile.am
 ===================================================================
---- network-manager-applet-0.9.10.0.orig/src/utils/Makefile.am
-+++ network-manager-applet-0.9.10.0/src/utils/Makefile.am
+--- network-manager-applet-1.0.4.orig/src/utils/Makefile.am
++++ network-manager-applet-1.0.4/src/utils/Makefile.am
 @@ -10,7 +10,8 @@ libutils_la_SOURCES = \
  libutils_la_CPPFLAGS = \
        $(GTK_CFLAGS) \
@@ -352,10 +352,10 @@
  
 -libutils_la_LIBADD = $(GTK_LIBS) $(NMA_LIBS)
 +libutils_la_LIBADD = $(GTK_LIBS) $(NMA_LIBS) $(POLKIT_LIBS)
-Index: network-manager-applet-0.9.10.0/src/utils/utils.c
+Index: network-manager-applet-1.0.4/src/utils/utils.c
 ===================================================================
---- network-manager-applet-0.9.10.0.orig/src/utils/utils.c
-+++ network-manager-applet-0.9.10.0/src/utils/utils.c
+--- network-manager-applet-1.0.4.orig/src/utils/utils.c
++++ network-manager-applet-1.0.4/src/utils/utils.c
 @@ -27,6 +27,8 @@
  #include <glib/gi18n.h>
  #include <gtk/gtk.h>
@@ -365,8 +365,8 @@
  #include <nm-setting-connection.h>
  #include <nm-utils.h>
  
-@@ -470,3 +472,41 @@ utils_update_password_storage (NMSetting
-       }
+@@ -286,3 +288,41 @@ utils_filter_editable_on_insert_text (Gt
+       return count > 0;
  }
  
 +gboolean
@@ -407,13 +407,13 @@
 +
 +      return is_authorized;
 +}
-Index: network-manager-applet-0.9.10.0/src/utils/utils.h
+Index: network-manager-applet-1.0.4/src/utils/utils.h
 ===================================================================
---- network-manager-applet-0.9.10.0.orig/src/utils/utils.h
-+++ network-manager-applet-0.9.10.0/src/utils/utils.h
-@@ -84,5 +84,7 @@ void utils_update_password_storage (NMSe
-                                     GtkWidget *passwd_entry,
-                                     const char *password_flags_name);
+--- network-manager-applet-1.0.4.orig/src/utils/utils.h
++++ network-manager-applet-1.0.4/src/utils/utils.h
+@@ -107,5 +107,7 @@ gboolean utils_filter_editable_on_insert
+                                                UtilsFilterGtkEditableFunc 
validate_character,
+                                                gpointer block_func);
  
 +gboolean utils_system_connection_authorized (void);
 +

++++++ nm-applet-probe-radius-server-cert.patch ++++++
++++ 800 lines (skipped)
++++ between 
/work/SRC/openSUSE:Factory/NetworkManager-gnome/nm-applet-probe-radius-server-cert.patch
++++ and 
/work/SRC/openSUSE:Factory/.NetworkManager-gnome.new/nm-applet-probe-radius-server-cert.patch


Reply via email to