Hello community,

here is the log from the commit of package autoyast2 for openSUSE:Factory 
checked in at 2014-03-01 14:38:18
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/autoyast2 (Old)
 and      /work/SRC/openSUSE:Factory/.autoyast2.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "autoyast2"

Changes:
--------
--- /work/SRC/openSUSE:Factory/autoyast2/autoyast2.changes      2014-02-21 
13:48:09.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.autoyast2.new/autoyast2.changes 2014-03-01 
14:38:19.000000000 +0100
@@ -1,0 +2,10 @@
+Wed Feb 26 13:25:45 CET 2014 - [email protected]
+
+- Cloning of software section clones only patterns in state
+  "visible", this is a problem with OES where pattern
+  novell-yast2 is not a visible pattern (bnc#864421), changed so
+  that all patterns are written into cloned patterns list
+- add %{yast_controldir} as directory to package
+- 3.1.18
+
+-------------------------------------------------------------------

Old:
----
  autoyast2-3.1.17.tar.bz2

New:
----
  autoyast2-3.1.18.tar.bz2

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

Other differences:
------------------
++++++ autoyast2.spec ++++++
--- /var/tmp/diff_new_pack.ZOhb6N/_old  2014-03-01 14:38:20.000000000 +0100
+++ /var/tmp/diff_new_pack.ZOhb6N/_new  2014-03-01 14:38:20.000000000 +0100
@@ -17,7 +17,7 @@
 
 
 Name:           autoyast2
-Version:        3.1.17
+Version:        3.1.18
 Release:        0
 
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
@@ -226,6 +226,7 @@
 %{yast_yncludedir}/autoinstall/tree.rb
 %{yast_yncludedir}/autoinstall/types.rb
 
+%dir %{yast_controldir}
 %{yast_controldir}/*.xml
 
 %{yast_moduledir}/AutoInstall.rb

++++++ autoyast2-3.1.17.tar.bz2 -> autoyast2-3.1.18.tar.bz2 ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/autoyast2-3.1.17/package/autoyast2.changes 
new/autoyast2-3.1.18/package/autoyast2.changes
--- old/autoyast2-3.1.17/package/autoyast2.changes      2014-02-19 
14:26:05.000000000 +0100
+++ new/autoyast2-3.1.18/package/autoyast2.changes      2014-02-26 
14:35:43.000000000 +0100
@@ -1,4 +1,14 @@
 -------------------------------------------------------------------
+Wed Feb 26 13:25:45 CET 2014 - [email protected]
+
+- Cloning of software section clones only patterns in state
+  "visible", this is a problem with OES where pattern
+  novell-yast2 is not a visible pattern (bnc#864421), changed so
+  that all patterns are written into cloned patterns list
+- add %{yast_controldir} as directory to package
+- 3.1.18
+
+-------------------------------------------------------------------
 Mon Feb 17 13:37:55 CET 2014 - [email protected]
 
 - Remove call to inst_suseconfig from control_continue_autoyast.xml
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/autoyast2-3.1.17/package/autoyast2.spec 
new/autoyast2-3.1.18/package/autoyast2.spec
--- old/autoyast2-3.1.17/package/autoyast2.spec 2014-02-19 14:26:05.000000000 
+0100
+++ new/autoyast2-3.1.18/package/autoyast2.spec 2014-02-26 14:35:43.000000000 
+0100
@@ -17,7 +17,7 @@
 
 
 Name:           autoyast2
-Version:        3.1.17
+Version:        3.1.18
 Release:        0
 
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
@@ -226,6 +226,7 @@
 %{yast_yncludedir}/autoinstall/tree.rb
 %{yast_yncludedir}/autoinstall/types.rb
 
+%dir %{yast_controldir}
 %{yast_controldir}/*.xml
 
 %{yast_moduledir}/AutoInstall.rb
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/autoyast2-3.1.17/src/modules/AutoinstSoftware.rb 
new/autoyast2-3.1.18/src/modules/AutoinstSoftware.rb
--- old/autoyast2-3.1.17/src/modules/AutoinstSoftware.rb        2014-02-19 
14:26:05.000000000 +0100
+++ new/autoyast2-3.1.18/src/modules/AutoinstSoftware.rb        2014-02-26 
14:35:43.000000000 +0100
@@ -954,7 +954,6 @@
       all_patterns = Pkg.ResolvableProperties("", :pattern, "")
       @all_xpatterns = Pkg.ResolvableDependencies("", :pattern, "")
       patterns = []
-      visible_patterns = []
 
       patternsFullData = Builtins.filter(all_patterns) do |p|
         ret2 = false
@@ -965,12 +964,6 @@
             Ops.get_string(p, "name", "no name")
           )
           ret2 = true
-          if Ops.get_boolean(p, "user_visible", true) == true
-            visible_patterns = Builtins.add(
-              visible_patterns,
-              Ops.get_string(p, "name", "no name")
-            )
-          end
         end
         ret2
       end
@@ -1069,7 +1062,7 @@
           !Builtins.regexpmatch(pkg, "kernel-.*") || pkg == "kernel-uml"
         end)
       )
-      Ops.set(software, "patterns", Builtins.sort(visible_patterns))
+      Ops.set(software, "patterns", Builtins.sort(patterns))
       Ops.set(software, "remove-packages", Builtins.toset(removepackages))
       deep_copy(software)
     end

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

Reply via email to