Hello community,

here is the log from the commit of package yast2 for openSUSE:Factory checked 
in at 2017-08-04 11:57:39
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/yast2 (Old)
 and      /work/SRC/openSUSE:Factory/.yast2.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "yast2"

Fri Aug  4 11:57:39 2017 rev:410 rq:514183 version:3.3.7

Changes:
--------
--- /work/SRC/openSUSE:Factory/yast2/yast2.changes      2017-08-02 
11:26:53.544999628 +0200
+++ /work/SRC/openSUSE:Factory/.yast2.new/yast2.changes 2017-08-04 
11:57:40.810023718 +0200
@@ -1,0 +2,12 @@
+Thu Aug  3 07:39:49 UTC 2017 - lsle...@suse.cz
+
+- run_ifconfig.scr - make "inet" section optional, handle
+  additional whitespace characters (bsc#811760)
+- 3.3.7
+
+-------------------------------------------------------------------
+Wed Aug  2 15:39:25 UTC 2017 - jlo...@suse.com
+
+- More robust systemctl test to avoid possible timeout error
+
+-------------------------------------------------------------------

Old:
----
  yast2-3.3.6.tar.bz2

New:
----
  yast2-3.3.7.tar.bz2

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

Other differences:
------------------
++++++ yast2.spec ++++++
--- /var/tmp/diff_new_pack.cEmDaz/_old  2017-08-04 11:57:43.537638727 +0200
+++ /var/tmp/diff_new_pack.cEmDaz/_new  2017-08-04 11:57:43.581632517 +0200
@@ -17,7 +17,7 @@
 
 
 Name:           yast2
-Version:        3.3.6
+Version:        3.3.7
 Release:        0
 Summary:        YaST2 - Main Package
 License:        GPL-2.0

++++++ yast2-3.3.6.tar.bz2 -> yast2-3.3.7.tar.bz2 ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-3.3.6/library/general/src/scrconf/run_ifconfig.scr 
new/yast2-3.3.7/library/general/src/scrconf/run_ifconfig.scr
--- old/yast2-3.3.6/library/general/src/scrconf/run_ifconfig.scr        
2017-07-31 11:06:26.200824981 +0200
+++ new/yast2-3.3.7/library/general/src/scrconf/run_ifconfig.scr        
2017-08-03 10:29:13.579219746 +0200
@@ -15,7 +15,7 @@
  *   Read(.run.ifconfig)
  *   ([$["name":"eth0",
  *       "value":$["flags":["UP", "BROADCAST", "RUNNING", "MULTICAST",
- *                          " MTU:1500", " Metric:1"],
+ *                          "MTU:1500", "Metric:1"],
  *                 "inet":$["addr":168427678,
  *                          "bcast":168493055,
  *                          "mask":4294901760],
@@ -24,7 +24,7 @@
  *     ],
  *     $["name":"lo",
  *       "value":$["flags":["UP", "LOOPBACK", "RUNNING",
- *                          " MTU:3924", " Metric:1"],
+ *                          "MTU:3924", "Metric:1"],
  *                 "inet":$["addr":2130706433,
  *                          "mask":4278190080],
  *                 "link":"Link encap:Local Loopback  "]
@@ -53,8 +53,8 @@
            `Tuple(
                `name(`String("^\t ")),
                `value(`Tuple(
-                   `Whitespace(), `link(`String("^\n")), "\n",
-                   `Whitespace(), "inet", `inet(
+                   `Whitespace(), `link(`String("^\n", " ")), "\n",
+                   `Optional(`Sequence(`Whitespace(), "inet", `inet(
                        `Tuple (
                            `Optional (`Whitespace ()),
                            `Choice (
@@ -80,9 +80,10 @@
                                    ]
                                ),
                            `Continue (`Whitespace ())
-                           )
-                       ), "\n",
-                   `Whitespace(), 
`flags(`List(`Sequence(`Optional(`Whitespace()), `String("^ \n")), " ")), "\n",
+                           )),
+                       "\n")),
+
+                   `Whitespace(), 
`flags(`List(`Sequence(`Optional(`Whitespace()), `String("^ \n")), 
`Separator("\t "))), "\n",
                    // the rest is not important
                    `List(
                        `Sequence(`Whitespace(), `String("^\n")),
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-3.3.6/library/systemd/test/systemctl_test.rb 
new/yast2-3.3.7/library/systemd/test/systemctl_test.rb
--- old/yast2-3.3.6/library/systemd/test/systemctl_test.rb      2017-07-31 
11:06:26.272824981 +0200
+++ new/yast2-3.3.7/library/systemd/test/systemctl_test.rb      2017-08-03 
10:29:13.791219746 +0200
@@ -22,7 +22,7 @@
 
       it "raises exception if the execution has timed out" do
         stub_const("Yast::Systemctl::TIMEOUT", 1)
-        allow(SCR).to receive(:Execute) { sleep 1.1 }
+        allow(SCR).to receive(:Execute) { sleep 5 }
         expect(SCR).to receive(:Execute)
         expect { Systemctl.execute("disable cups.service") }.to 
raise_error(SystemctlError)
       end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-3.3.6/package/yast2.changes 
new/yast2-3.3.7/package/yast2.changes
--- old/yast2-3.3.6/package/yast2.changes       2017-07-31 11:06:26.308824981 
+0200
+++ new/yast2-3.3.7/package/yast2.changes       2017-08-03 10:29:13.839219746 
+0200
@@ -1,4 +1,16 @@
 -------------------------------------------------------------------
+Thu Aug  3 07:39:49 UTC 2017 - lsle...@suse.cz
+
+- run_ifconfig.scr - make "inet" section optional, handle
+  additional whitespace characters (bsc#811760)
+- 3.3.7
+
+-------------------------------------------------------------------
+Wed Aug  2 15:39:25 UTC 2017 - jlo...@suse.com
+
+- More robust systemctl test to avoid possible timeout error
+
+-------------------------------------------------------------------
 Mon Jul 31 08:23:57 UTC 2017 - jreidin...@suse.com
 
 - WorkflowManager: allow to extend workflow from rpm package
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-3.3.6/package/yast2.spec 
new/yast2-3.3.7/package/yast2.spec
--- old/yast2-3.3.6/package/yast2.spec  2017-07-31 11:06:26.308824981 +0200
+++ new/yast2-3.3.7/package/yast2.spec  2017-08-03 10:29:13.839219746 +0200
@@ -17,7 +17,7 @@
 
 
 Name:           yast2
-Version:        3.3.6
+Version:        3.3.7
 Release:        0
 Summary:        YaST2 - Main Package
 License:        GPL-2.0


Reply via email to