Hello community, here is the log from the commit of package wicked for openSUSE:Factory checked in at 2018-11-08 09:39:15 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/wicked (Old) and /work/SRC/openSUSE:Factory/.wicked.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "wicked" Thu Nov 8 09:39:15 2018 rev:72 rq:644846 version:0.6.51 Changes: -------- --- /work/SRC/openSUSE:Factory/wicked/wicked.changes 2018-10-11 11:44:48.450836009 +0200 +++ /work/SRC/openSUSE:Factory/.wicked.new/wicked.changes 2018-11-08 09:39:18.457742117 +0100 @@ -1,0 +2,7 @@ +Fri Oct 26 12:36:25 UTC 2018 - [email protected] + +- version 0.6.51 +- wireless: fix eap peap auth mapping for wpa-supplicant (bsc#1026807) +- vxlan: fix to convert dst_port to network byte order + +------------------------------------------------------------------- Old: ---- wicked-0.6.50.tar.bz2 New: ---- wicked-0.6.51.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ wicked.spec ++++++ --- /var/tmp/diff_new_pack.7a2GGV/_old 2018-11-08 09:39:18.973741522 +0100 +++ /var/tmp/diff_new_pack.7a2GGV/_new 2018-11-08 09:39:18.973741522 +0100 @@ -18,10 +18,10 @@ %define release_prefix %{?snapshot:%{snapshot}}%{!?snapshot:0} Name: wicked -Version: 0.6.50 +Version: 0.6.51 Release: %{release_prefix}.0.0 Summary: Network configuration infrastructure -License: GPL-2.0 +License: GPL-2.0-only Group: System/Management Url: https://github.com/openSUSE/wicked Source0: %{name}-%{version}.tar.bz2 ++++++ wicked-0.6.50.tar.bz2 -> wicked-0.6.51.tar.bz2 ++++++ ++++ 5341 lines of diff (skipped) ++++ retrying with extended exclude list diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/wicked-0.6.50/ChangeLog new/wicked-0.6.51/ChangeLog --- old/wicked-0.6.50/ChangeLog 2018-10-04 14:29:17.000000000 +0200 +++ new/wicked-0.6.51/ChangeLog 2018-10-26 14:40:39.000000000 +0200 @@ -1,3 +1,27 @@ +commit e8c1ac65b2e2bb5452640d74b518f00669d1809e +Author: Marius Tomaschewski <[email protected]> +Date: Fri Oct 26 14:31:10 2018 +0200 + + version 0.6.51 + +commit 9d731464945d2dd2c93a631608c63ae5a98332b2 +Author: Marius Tomaschewski <[email protected]> +Date: Wed Oct 24 13:49:07 2018 +0200 + + compat: assume mschapv2/gtc for PEAPv0/v1 in suse ifcfg + +commit 3cbe5c652419342fbcdbdda7a207baa13d839ac1 +Author: Marius Tomaschewski <[email protected]> +Date: Tue Oct 23 13:35:33 2018 +0200 + + wpa: use correct function to map phase2 auth type + +commit ba4a7b765ba7c92d7c95ce9f0762fcdff91f2ed7 +Author: James Oakley <[email protected]> +Date: Sun Oct 14 16:11:51 2018 -0700 + + Convert dst_port to network byte order during VXLAN setup + commit e6e00395dfe3c6b789dd8ab22088e76ad9d99f6d Author: Rubén Torrero Marijnissen <[email protected]> Date: Thu Oct 4 13:23:54 2018 +0100 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/wicked-0.6.50/VERSION new/wicked-0.6.51/VERSION --- old/wicked-0.6.50/VERSION 2018-10-04 14:23:47.000000000 +0200 +++ new/wicked-0.6.51/VERSION 2018-10-26 14:39:36.000000000 +0200 @@ -1 +1 @@ -0.6.50 +0.6.51 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/wicked-0.6.50/client/suse/compat-suse.c new/wicked-0.6.51/client/suse/compat-suse.c --- old/wicked-0.6.50/client/suse/compat-suse.c 2018-09-13 17:22:04.000000000 +0200 +++ new/wicked-0.6.51/client/suse/compat-suse.c 2018-10-26 12:55:25.000000000 +0200 @@ -4080,6 +4080,16 @@ goto eap_failure; } } + + if (net->wpa_eap.phase2.method == NI_WIRELESS_EAP_NONE) { + if (net->wpa_eap.phase1.peapver == 1) + net->wpa_eap.phase2.method = NI_WIRELESS_EAP_GTC; + else + net->wpa_eap.phase2.method = NI_WIRELESS_EAP_MSCHAPV2; + + ni_warn("ifcfg-%s: assuming WIRELESS_EAP_AUTH%s='%s'", dev_name, suffix, + ni_wireless_eap_method_to_name(net->wpa_eap.phase2.method)); + } } return TRUE; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/wicked-0.6.50/compile new/wicked-0.6.51/compile --- old/wicked-0.6.50/compile 2018-10-04 14:28:56.000000000 +0200 +++ new/wicked-0.6.51/compile 2018-10-26 14:40:32.000000000 +0200 @@ -1,9 +1,9 @@ #! /bin/sh # Wrapper for compilers which do not understand '-c -o'. -scriptversion=2018-03-07.03; # UTC +scriptversion=2016-01-11.22; # UTC -# Copyright (C) 1999-2018 Free Software Foundation, Inc. +# Copyright (C) 1999-2017 Free Software Foundation, Inc. # Written by Tom Tromey <[email protected]>. # # This program is free software; you can redistribute it and/or modify @@ -17,7 +17,7 @@ # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License -# along with this program. If not, see <https://www.gnu.org/licenses/>. +# along with this program. If not, see <http://www.gnu.org/licenses/>. # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a @@ -340,7 +340,7 @@ # Local Variables: # mode: shell-script # sh-indentation: 2 -# eval: (add-hook 'before-save-hook 'time-stamp) +# eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC0" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/wicked-0.6.50/missing new/wicked-0.6.51/missing --- old/wicked-0.6.50/missing 2018-10-04 14:28:56.000000000 +0200 +++ new/wicked-0.6.51/missing 2018-10-26 14:40:32.000000000 +0200 @@ -1,9 +1,9 @@ #! /bin/sh # Common wrapper for a few potentially missing GNU programs. -scriptversion=2018-03-07.03; # UTC +scriptversion=2016-01-11.22; # UTC -# Copyright (C) 1996-2018 Free Software Foundation, Inc. +# Copyright (C) 1996-2017 Free Software Foundation, Inc. # Originally written by Fran,cois Pinard <[email protected]>, 1996. # This program is free software; you can redistribute it and/or modify @@ -17,7 +17,7 @@ # GNU General Public License for more details. # You should have received a copy of the GNU General Public License -# along with this program. If not, see <https://www.gnu.org/licenses/>. +# along with this program. If not, see <http://www.gnu.org/licenses/>. # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a @@ -101,9 +101,9 @@ exit $st fi -perl_URL=https://www.perl.org/ -flex_URL=https://github.com/westes/flex -gnu_software_URL=https://www.gnu.org/software +perl_URL=http://www.perl.org/ +flex_URL=http://flex.sourceforge.net/ +gnu_software_URL=http://www.gnu.org/software program_details () { @@ -207,7 +207,7 @@ exit $st # Local variables: -# eval: (add-hook 'before-save-hook 'time-stamp) +# eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC0" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/wicked-0.6.50/src/ifconfig.c new/wicked-0.6.51/src/ifconfig.c --- old/wicked-0.6.50/src/ifconfig.c 2018-09-21 14:58:22.000000000 +0200 +++ new/wicked-0.6.51/src/ifconfig.c 2018-10-24 15:16:35.000000000 +0200 @@ -3382,7 +3382,7 @@ case IFLA_VXLAN_PORT: /* omit if port is 0 (IANA: 4789, kernel default: 8472) */ if (conf->dst_port && conf->dst_port != vxlan->dst_port) { - NLA_PUT_U16(msg, attr, conf->dst_port); + NLA_PUT_U16(msg, attr, htons(conf->dst_port)); ret = 0; } val = conf->dst_port; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/wicked-0.6.50/src/wpa-supplicant.c new/wicked-0.6.51/src/wpa-supplicant.c --- old/wicked-0.6.50/src/wpa-supplicant.c 2018-07-23 14:54:57.000000000 +0200 +++ new/wicked-0.6.51/src/wpa-supplicant.c 2018-10-26 12:55:25.000000000 +0200 @@ -1647,7 +1647,7 @@ if (NI_WIRELESS_EAP_NONE == net->wpa_eap.phase2.method) eap_name = "any"; else { - eap_name = ni_wireless_eap_method_to_name(net->wpa_eap.phase2.method); + eap_name = ni_wpa_eap_method_as_string(net->wpa_eap.phase2.method, error); if (ni_string_empty(eap_name)) goto not_present; } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/wicked-0.6.50/wicked.spec new/wicked-0.6.51/wicked.spec --- old/wicked-0.6.50/wicked.spec 2018-10-04 14:29:04.000000000 +0200 +++ new/wicked-0.6.51/wicked.spec 2018-10-26 14:40:38.000000000 +0200 @@ -18,7 +18,7 @@ %define release_prefix %{?snapshot:%{snapshot}}%{!?snapshot:0} Name: wicked -Version: 0.6.50 +Version: 0.6.51 Release: %{release_prefix}.0.0 Summary: Network configuration infrastructure License: GPL-2.0
