Hello community,

here is the log from the commit of package autoyast2 for openSUSE:Factory 
checked in at 2014-07-19 11:05:23
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
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-07-13 
14:06:41.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.autoyast2.new/autoyast2.changes 2014-07-19 
11:05:24.000000000 +0200
@@ -1,0 +2,13 @@
+Wed Jul 16 13:49:24 CEST 2014 - sch...@suse.de
+
+- Filter out tpmfs devices which have no partitions.
+  (bnc#887318)
+- 3.1.45
+
+-------------------------------------------------------------------
+Wed Jul 16 10:13:39 CEST 2014 - sch...@suse.de
+
+- Exporting partition_nr correctly (bnc#886808)
+- 3.1.44
+
+-------------------------------------------------------------------

Old:
----
  autoyast2-3.1.43.tar.bz2

New:
----
  autoyast2-3.1.45.tar.bz2

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

Other differences:
------------------
++++++ autoyast2.spec ++++++
--- /var/tmp/diff_new_pack.XTGlzA/_old  2014-07-19 11:05:25.000000000 +0200
+++ /var/tmp/diff_new_pack.XTGlzA/_new  2014-07-19 11:05:25.000000000 +0200
@@ -17,7 +17,7 @@
 
 
 Name:           autoyast2
-Version:        3.1.43
+Version:        3.1.45
 Release:        0
 
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build

++++++ autoyast2-3.1.43.tar.bz2 -> autoyast2-3.1.45.tar.bz2 ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/autoyast2-3.1.43/package/autoyast2.changes 
new/autoyast2-3.1.45/package/autoyast2.changes
--- old/autoyast2-3.1.43/package/autoyast2.changes      2014-07-10 
10:15:32.000000000 +0200
+++ new/autoyast2-3.1.45/package/autoyast2.changes      2014-07-16 
15:14:52.000000000 +0200
@@ -1,4 +1,17 @@
 -------------------------------------------------------------------
+Wed Jul 16 13:49:24 CEST 2014 - sch...@suse.de
+
+- Filter out tpmfs devices which have no partitions.
+  (bnc#887318)
+- 3.1.45
+
+-------------------------------------------------------------------
+Wed Jul 16 10:13:39 CEST 2014 - sch...@suse.de
+
+- Exporting partition_nr correctly (bnc#886808)
+- 3.1.44
+
+-------------------------------------------------------------------
 Thu Jul 10 09:54:24 CEST 2014 - sch...@suse.de
 
 - Writing pattern selection to /root/autoinst.xml correctly after
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/autoyast2-3.1.43/package/autoyast2.spec 
new/autoyast2-3.1.45/package/autoyast2.spec
--- old/autoyast2-3.1.43/package/autoyast2.spec 2014-07-10 10:15:32.000000000 
+0200
+++ new/autoyast2-3.1.45/package/autoyast2.spec 2014-07-16 15:14:52.000000000 
+0200
@@ -17,7 +17,7 @@
 
 
 Name:           autoyast2
-Version:        3.1.43
+Version:        3.1.45
 Release:        0
 
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/autoyast2-3.1.43/src/modules/AutoinstPartPlan.rb 
new/autoyast2-3.1.45/src/modules/AutoinstPartPlan.rb
--- old/autoyast2-3.1.43/src/modules/AutoinstPartPlan.rb        2014-07-10 
10:15:33.000000000 +0200
+++ new/autoyast2-3.1.45/src/modules/AutoinstPartPlan.rb        2014-07-16 
15:14:52.000000000 +0200
@@ -721,6 +721,14 @@
         end
       end
 
+      # It makes no sense to have tmpfs dummy containers which have no 
partitions.
+      # E.g. the partitions have been filtered because they have not been 
defined
+      # by the user.
+      # (bnc#887318)
+      settings.delete_if { |device|
+        device["type"] == :CT_TMPFS && (!device["partitions"] || 
device["partitions"].empty? )
+      }
+
       @AutoPartPlan = []
       _IgnoreTypes = [:CT_BTRFS]
       Builtins.foreach(settings) do |drive|
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/autoyast2-3.1.43/src/modules/AutoinstPartition.rb 
new/autoyast2-3.1.45/src/modules/AutoinstPartition.rb
--- old/autoyast2-3.1.43/src/modules/AutoinstPartition.rb       2014-07-10 
10:15:33.000000000 +0200
+++ new/autoyast2-3.1.45/src/modules/AutoinstPartition.rb       2014-07-16 
15:14:52.000000000 +0200
@@ -296,6 +296,8 @@
       newPart = set(newPart, "lv_name", Ops.get_string(part, "lv_name", ""))
       newPart = set(newPart, "lvm_group", Ops.get_string(part, "lvm_group", 
""))
       newPart = set(newPart, "stripes", Ops.get_integer(part, "stripes", 1))
+      # Set partition_nr too (if available) bnc#886808
+      newPart["partition_nr"] = part["partition_nr"] if part["partition_nr"]
       newPart = set(
         newPart,
         "stripesize",

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org

Reply via email to