Hello community,

here is the log from the commit of package yast2 for openSUSE:Factory checked 
in at 2014-07-26 12:19:46
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/yast2 (Old)
 and      /work/SRC/openSUSE:Factory/.yast2.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "yast2"

Changes:
--------
--- /work/SRC/openSUSE:Factory/yast2/yast2.changes      2014-07-23 
22:05:37.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.yast2.new/yast2.changes 2014-07-26 
12:20:04.000000000 +0200
@@ -1,0 +2,7 @@
+Thu Jul 24 12:09:29 CEST 2014 - [email protected]
+
+- Fixed checking for :active state of a systemd unit - it's :active
+  already even if it's just being activated (bnc#884756)
+- 3.1.87
+
+-------------------------------------------------------------------

Old:
----
  yast2-3.1.86.tar.bz2

New:
----
  yast2-3.1.87.tar.bz2

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

Other differences:
------------------
++++++ yast2.spec ++++++
--- /var/tmp/diff_new_pack.fecHRl/_old  2014-07-26 12:20:06.000000000 +0200
+++ /var/tmp/diff_new_pack.fecHRl/_new  2014-07-26 12:20:06.000000000 +0200
@@ -17,7 +17,7 @@
 
 
 Name:           yast2
-Version:        3.1.86
+Version:        3.1.87
 Release:        0
 Url:            https://github.com/yast/yast-yast2
 

++++++ yast2-3.1.86.tar.bz2 -> yast2-3.1.87.tar.bz2 ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-3.1.86/library/network/src/modules/NetworkInterfaces.rb 
new/yast2-3.1.87/library/network/src/modules/NetworkInterfaces.rb
--- old/yast2-3.1.86/library/network/src/modules/NetworkInterfaces.rb   
2014-07-22 14:42:14.000000000 +0200
+++ new/yast2-3.1.87/library/network/src/modules/NetworkInterfaces.rb   
2014-07-25 18:57:09.000000000 +0200
@@ -21,19 +21,13 @@
 # you may find current contact information at www.novell.com
 #
 # ***************************************************************************
-# File:        modules/NetworkInterfaces.ycp
-# Package:     Network configuration
-# Summary:     Interface manipulation (/etc/sysconfig/network/ifcfg-*)
-# Authors:     Michal Svec <[email protected]>
-#
-# $Id: NetworkInterfaces.ycp 43062 2007-12-13 16:12:26Z mzugec $
-#
-# The new sysconfig naming is interface (eg. eth0) vs. device
-# (eg. NE2000 card), but historically yast has called them device
-# vs. module.
+
 require "yast"
 
 module Yast
+  # Reads and writes the ifcfg files (/etc/sysconfig/network/ifcfg-*).
+  # Categorizes the configurations according to type.
+  # Presents them one ifcfg at a time through the {#Current} hash.
   class NetworkInterfacesClass < Module
 
     Yast.import "String"
@@ -47,6 +41,23 @@
     # Supported hotplug types
     HOTPLUG_TYPES = ["pcmcia", "usb"]
 
+    # @attribute Name
+    # @return [String]
+    #
+    # Current device identifier, like eth0, eth1:blah, lo, ...
+    #
+    # {#Add}, {#Edit} and {#Delete} copy the requested device info
+    # (via {#Select}) to {#Name} and {#Current}, {#Commit} puts it back.
+
+    # @attribute Current
+    # @return [Hash<String>]
+    #
+    # Current device information
+    # like { "BOOTPROTO"=>"dhcp", "STARTMODE"=>"auto" }
+    #
+    # {#Add}, {#Edit} and {#Delete} copy the requested device info
+    # (via {#Select}) to {#Name} and {#Current}, {#Commit} puts it back.
+
     def main
       textdomain "base"
 
@@ -58,15 +69,8 @@
       Yast.import "FileUtils"
       Yast.import "IP"
 
-      # Current device identifier
-      # @example eth0, eth1:blah, lo, ...
-      # Add, Edit and Delete copy the requested device info (via Select)
-      # to Name and Current,
-      # Commit puts it back
       @Name = ""
 
-      # Current device information
-      # @example $["BOOTPROTO":"dhcp", "STARTMODE":"auto"]
       @Current = {}
 
       # Interface information:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-3.1.86/library/systemd/src/lib/yast2/systemd_unit.rb 
new/yast2-3.1.87/library/systemd/src/lib/yast2/systemd_unit.rb
--- old/yast2-3.1.86/library/systemd/src/lib/yast2/systemd_unit.rb      
2014-07-22 14:42:14.000000000 +0200
+++ new/yast2-3.1.87/library/systemd/src/lib/yast2/systemd_unit.rb      
2014-07-25 18:57:09.000000000 +0200
@@ -156,7 +156,7 @@
         end
 
         extract_properties
-        self[:active?]    = active_state == "active"
+        self[:active?]    = active_state == "active" || active_state == 
"activating"
         self[:running?]   = sub_state    == "running"
         self[:loaded?]    = load_state   == "loaded"
         self[:not_found?] = load_state   == "not-found"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-3.1.86/package/yast2.changes 
new/yast2-3.1.87/package/yast2.changes
--- old/yast2-3.1.86/package/yast2.changes      2014-07-22 14:42:14.000000000 
+0200
+++ new/yast2-3.1.87/package/yast2.changes      2014-07-25 18:57:09.000000000 
+0200
@@ -1,4 +1,11 @@
 -------------------------------------------------------------------
+Thu Jul 24 12:09:29 CEST 2014 - [email protected]
+
+- Fixed checking for :active state of a systemd unit - it's :active
+  already even if it's just being activated (bnc#884756)
+- 3.1.87
+
+-------------------------------------------------------------------
 Tue Jul 22 13:08:32 CEST 2014 - [email protected]
 
 - Added new ServicesProposal library to hold and export services
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-3.1.86/package/yast2.spec 
new/yast2-3.1.87/package/yast2.spec
--- old/yast2-3.1.86/package/yast2.spec 2014-07-22 14:42:14.000000000 +0200
+++ new/yast2-3.1.87/package/yast2.spec 2014-07-25 18:57:09.000000000 +0200
@@ -17,7 +17,7 @@
 
 
 Name:           yast2
-Version:        3.1.86
+Version:        3.1.87
 Release:        0
 URL:            https://github.com/yast/yast-yast2
 

-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to