Hello community,

here is the log from the commit of package yast2 for openSUSE:Factory checked 
in at 2016-03-18 21:38:28
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
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      2016-03-09 
15:16:45.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.yast2.new/yast2.changes 2016-03-18 
21:38:30.000000000 +0100
@@ -1,0 +2,13 @@
+Wed Mar 16 17:10:37 UTC 2016 - knut.anders...@suse.com
+
+- Added cfg_mail.scr from yast-mail to avoid circular dependencies
+  with yast2-security, yast2-users and yast2-mail (FATE#319711)
+- 3.1.179
+
+-------------------------------------------------------------------
+Thu Mar 10 10:15:13 UTC 2016 - dval...@suse.com
+
+- Introduce PowerNV platform (boo#970582)
+- 3.1.178
+
+-------------------------------------------------------------------

Old:
----
  yast2-3.1.177.tar.bz2

New:
----
  yast2-3.1.179.tar.bz2

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

Other differences:
------------------
++++++ yast2.spec ++++++
--- /var/tmp/diff_new_pack.9JAvxO/_old  2016-03-18 21:38:31.000000000 +0100
+++ /var/tmp/diff_new_pack.9JAvxO/_new  2016-03-18 21:38:31.000000000 +0100
@@ -17,7 +17,7 @@
 
 
 Name:           yast2
-Version:        3.1.177
+Version:        3.1.179
 Release:        0
 Url:            https://github.com/yast/yast-yast2
 
@@ -111,6 +111,9 @@
 # moved ag_content agent 
 Conflicts:      yast2-instserver <= 2.16.3
 
+# moved cfg_mail.scr
+Conflicts:      yast2-mail < 3.1.7
+
 # InstError
 Conflicts:      yast2-installation < 2.18.5
 

++++++ yast2-3.1.177.tar.bz2 -> yast2-3.1.179.tar.bz2 ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-3.1.177/library/Makefile.am 
new/yast2-3.1.179/library/Makefile.am
--- old/yast2-3.1.177/library/Makefile.am       2016-03-08 13:50:39.000000000 
+0100
+++ new/yast2-3.1.179/library/Makefile.am       2016-03-17 12:40:52.000000000 
+0100
@@ -1,3 +1,3 @@
 # Makefile.am for yast2/library
 
-SUBDIRS = types runlevel sequencer xml commandline desktop wizard control cwm 
log system packages cron network gpg general systemd
+SUBDIRS = types runlevel sequencer xml commandline desktop wizard control cwm 
log system packages cron network gpg general systemd mail
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-3.1.177/library/general/src/modules/Arch.rb 
new/yast2-3.1.179/library/general/src/modules/Arch.rb
--- old/yast2-3.1.177/library/general/src/modules/Arch.rb       2016-03-08 
13:50:39.000000000 +0100
+++ new/yast2-3.1.179/library/general/src/modules/Arch.rb       2016-03-17 
12:40:52.000000000 +0100
@@ -200,13 +200,11 @@
         end
         Builtins.y2milestone("_board_compatible '%1' \n", @_board_compatible)
         @_board_compatible = "wintel" if i386 || x86_64
-        # hwinfo expects CHRP/PReP/iSeries/MacRISC* in /proc/cpuinfo
+        # hwinfo expects CHRP/PReP/iSeries/MacRISC*/PowerNV in /proc/cpuinfo
         # there is no standard for the board identification
         # Cell and Maple based boards have no CHRP in /proc/cpuinfo
         # Pegasos and Cell do have CHRP in /proc/cpuinfo, but Pegasos2 should 
no be handled as CHRP
         # Efika is handled like Pegasos for the time being
-        # Treat PowerNV as CHRP. It is harmless for now. Patch for hwinfo is 
sent but it is better to be safe
-        @_board_compatible = "CHRP" if @_board_compatible == "PowerNV"
 
         if ppc && (@_board_compatible.nil? || @_board_compatible == "CHRP")
           device_type = Convert.to_map(
@@ -229,20 +227,10 @@
             model,
             device_type
           )
-          compatible = Convert.to_map(
-            SCR.Execute(
-              path(".target.bash_output"),
-              "echo -n `cat /proc/device-tree/compatible`",
-              {}
-            )
-          )
           # catch remaining IBM boards
           if Builtins.issubstring(
             Ops.get_string(device_type, "stdout", ""),
             "chrp"
-       ) || Builtins.issubstring(
-         Ops.get_string(compatible, "stdout", ""),
-         "ibm,powernv"
        )
             @_board_compatible = "CHRP"
           end
@@ -301,6 +289,12 @@
       ppc && board_compatible == "CHRP"
     end
 
+    # true for all baremetal Power8 systems
+    # https://github.com/open-power/docs
+    def board_powernv
+      ppc && board_compatible == "PowerNV"
+    end
+
     # true for all "iSeries" ppc boards
     def board_iseries
       ppc && board_compatible == "iSeries"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-3.1.177/library/mail/Makefile.am 
new/yast2-3.1.179/library/mail/Makefile.am
--- old/yast2-3.1.177/library/mail/Makefile.am  1970-01-01 01:00:00.000000000 
+0100
+++ new/yast2-3.1.179/library/mail/Makefile.am  2016-03-17 12:40:52.000000000 
+0100
@@ -0,0 +1,3 @@
+#
+# Makefile.am for yast2/mail
+SUBDIRS = src
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-3.1.177/library/mail/src/Makefile.am 
new/yast2-3.1.179/library/mail/src/Makefile.am
--- old/yast2-3.1.177/library/mail/src/Makefile.am      1970-01-01 
01:00:00.000000000 +0100
+++ new/yast2-3.1.179/library/mail/src/Makefile.am      2016-03-17 
12:40:52.000000000 +0100
@@ -0,0 +1,8 @@
+# Sources for yast2
+
+scrconf_DATA = \
+  scrconf/cfg_mail.scr
+
+EXTRA_DIST = $(scrconf_DATA)
+
+include $(top_srcdir)/Makefile.am.common
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-3.1.177/library/mail/src/scrconf/cfg_mail.scr 
new/yast2-3.1.179/library/mail/src/scrconf/cfg_mail.scr
--- old/yast2-3.1.177/library/mail/src/scrconf/cfg_mail.scr     1970-01-01 
01:00:00.000000000 +0100
+++ new/yast2-3.1.179/library/mail/src/scrconf/cfg_mail.scr     2016-03-17 
12:40:52.000000000 +0100
@@ -0,0 +1,30 @@
+/**
+ * File:
+ *   cfg_mail.scr
+ * Summary:
+ *   SCR Agent for reading/writing /etc/sysconfig/mail
+ *   using the ini-agent
+ * Access:
+ *   read/write
+ * Authors:
+ *   Martin Vidner <mvid...@suse.cz>
+ * See:
+ *   yast2-agent-ini/ini.html
+ *   libscr
+ * Example:
+ *   Read(.sysconfig.mail.FROM_HEADER)
+ *   ("mycompany.com")
+ **
+ *   Write(.sysconfig.mail.FROM_HEADER, "MyCompany.com")
+ *   (true)
+ *
+ * $Id$
+ *
+ * Read/Sets the values defined in <tt>/etc/sysconfig/mail</tt>
+ * in an easy manner.
+ */
+.sysconfig.mail
+
+`ag_ini(
+  `SysConfigFile("/etc/sysconfig/mail")
+)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-3.1.177/package/yast2.changes 
new/yast2-3.1.179/package/yast2.changes
--- old/yast2-3.1.177/package/yast2.changes     2016-03-08 13:50:39.000000000 
+0100
+++ new/yast2-3.1.179/package/yast2.changes     2016-03-17 12:40:52.000000000 
+0100
@@ -1,4 +1,17 @@
 -------------------------------------------------------------------
+Wed Mar 16 17:10:37 UTC 2016 - knut.anders...@suse.com
+
+- Added cfg_mail.scr from yast-mail to avoid circular dependencies
+  with yast2-security, yast2-users and yast2-mail (FATE#319711)
+- 3.1.179
+
+-------------------------------------------------------------------
+Thu Mar 10 10:15:13 UTC 2016 - dval...@suse.com
+
+- Introduce PowerNV platform (boo#970582)
+- 3.1.178
+
+-------------------------------------------------------------------
 Fri Mar  4 10:54:48 UTC 2016 - mvid...@suse.com
 
 - Added ProductFeatures.SetOverlay,ClearOverlay for System Roles
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-3.1.177/package/yast2.spec 
new/yast2-3.1.179/package/yast2.spec
--- old/yast2-3.1.177/package/yast2.spec        2016-03-08 13:50:39.000000000 
+0100
+++ new/yast2-3.1.179/package/yast2.spec        2016-03-17 12:40:52.000000000 
+0100
@@ -17,7 +17,7 @@
 
 
 Name:           yast2
-Version:        3.1.177
+Version:        3.1.179
 Release:        0
 Url:            https://github.com/yast/yast-yast2
 
@@ -111,6 +111,9 @@
 # moved ag_content agent 
 Conflicts:      yast2-instserver <= 2.16.3
 
+# moved cfg_mail.scr
+Conflicts:      yast2-mail < 3.1.7
+
 # InstError
 Conflicts:      yast2-installation < 2.18.5
 


Reply via email to