Hello community,

here is the log from the commit of package linuxrc for openSUSE:Factory checked 
in at 2015-08-11 08:25:53
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/linuxrc (Old)
 and      /work/SRC/openSUSE:Factory/.linuxrc.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "linuxrc"

Changes:
--------
--- /work/SRC/openSUSE:Factory/linuxrc/linuxrc.changes  2015-08-10 
09:10:54.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.linuxrc.new/linuxrc.changes     2015-08-11 
08:25:55.000000000 +0200
@@ -1,0 +2,7 @@
+Mon Aug 10 11:41:08 CEST 2015 - snw...@suse.com
+
+- adjust git log parser
+- with netsetup=dhcp,all, do network setup at once, else we'll never get it 
done (bsc#932692)
+- 5.0.49
+
+-------------------------------------------------------------------

Old:
----
  linuxrc-5.0.48.tar.xz

New:
----
  linuxrc-5.0.49.tar.xz

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

Other differences:
------------------
++++++ linuxrc.spec ++++++
--- /var/tmp/diff_new_pack.IBg7D0/_old  2015-08-11 08:25:56.000000000 +0200
+++ /var/tmp/diff_new_pack.IBg7D0/_new  2015-08-11 08:25:56.000000000 +0200
@@ -25,7 +25,7 @@
 Summary:        SUSE Installation Program
 License:        GPL-3.0+
 Group:          System/Boot
-Version:        5.0.48
+Version:        5.0.49
 Release:        0
 Source:         %{name}-%{version}.tar.xz
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build

++++++ linuxrc-5.0.48.tar.xz -> linuxrc-5.0.49.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/linuxrc-5.0.48/VERSION new/linuxrc-5.0.49/VERSION
--- old/linuxrc-5.0.48/VERSION  2015-07-28 14:49:39.000000000 +0200
+++ new/linuxrc-5.0.49/VERSION  2015-08-10 11:38:43.000000000 +0200
@@ -1 +1 @@
-5.0.48
+5.0.49
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/linuxrc-5.0.48/changelog new/linuxrc-5.0.49/changelog
--- old/linuxrc-5.0.48/changelog        2015-07-28 14:49:39.000000000 +0200
+++ new/linuxrc-5.0.49/changelog        2015-08-10 11:38:43.000000000 +0200
@@ -1,3 +1,7 @@
+2015-08-06:    5.0.49
+       - adjust git log parser
+       - with netsetup=dhcp,all, do network setup at once, else we'll never 
get it done (bsc #932692)
+
 2015-07-28:    5.0.48
        - add 'sethostname' option to have wicked set the hostname (bsc #934118)
 
@@ -75,8 +79,6 @@
        - activate newly added interfaces (bnc #906817)
        - improve git2log to work in sub-branches
        - gpg 2.1.1 became stricter with the usage of --verify:
-       - program knows about it; either give both filenames on the command
-         line or  use  '-' to specify STDIN.".
 
 2014-12-01:    5.0.29
        - use correct mount command location
@@ -150,9 +152,6 @@
 
 2014-08-07:    5.0.11
        - Enhance linuxrc network code a bit.
-       - set WAIT_FOR_INTERFACES (bnc #890643)
-       - allow global network config options that should go to
-         /etc/sysconfig/network/config to be set in ifcfg option
 
 2014-08-06:    5.0.10
        - add new 'sshd' option to start sshd during install but don't trigger 
a ssh installation
@@ -201,11 +200,6 @@
 
 2014-07-18:    5.0.1
        - continue network code reworking
-       - fix network re-config (bnc #887841)
-       - move network setup into separate menu item
-       - move various net_activate_s390_devs() calls into a single place
-       - unify network config code
-       - remove obsolete code
 
 2014-07-17:    5.0.0
        - fix proxy handling in linuxrc
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/linuxrc-5.0.48/file.c new/linuxrc-5.0.49/file.c
--- old/linuxrc-5.0.48/file.c   2015-07-28 14:49:39.000000000 +0200
+++ new/linuxrc-5.0.49/file.c   2015-08-10 11:38:43.000000000 +0200
@@ -1165,7 +1165,8 @@
          */
         if(do_all && (config.net.setup & NS_DHCP)) {
           ifcfg_append(&config.ifcfg.list, ifcfg_parse("*=dhcp"));
-          net_update_ifcfg(0);
+          config.net.setup = 0;
+          net_update_ifcfg(IFCFG_IFUP);
         }
         if(!config.net.setup) config.net.do_setup = 0;
         if(config.net.now) {
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/linuxrc-5.0.48/git2log new/linuxrc-5.0.49/git2log
--- old/linuxrc-5.0.48/git2log  2015-07-28 14:49:39.000000000 +0200
+++ new/linuxrc-5.0.49/git2log  2015-08-10 11:38:43.000000000 +0200
@@ -155,7 +155,7 @@
     $detail = 1 if /^    $/;
     $detail = 2 if /^    Conflicts:$/;
     $detail = 0 if /^commit /;
-    if(!$detail || !/^    [^\-\s]/) {
+    if(!$detail) {
       push @t2, $_ if $detail < 2;
     }
   }


Reply via email to