Hello community,

here is the log from the commit of package kiwi for openSUSE:Factory checked in 
at 2011-10-27 14:24:52
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kiwi (Old)
 and      /work/SRC/openSUSE:Factory/.kiwi.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "kiwi", Maintainer is "[email protected]"

Changes:
--------
--- /work/SRC/openSUSE:Factory/kiwi/kiwi.changes        2011-10-27 
11:14:46.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.kiwi.new/kiwi.changes   2011-10-27 
14:27:27.000000000 +0200
@@ -1,0 +2,43 @@
+Thu Oct 27 12:38:58 CEST 2011 - [email protected]
+  
+- v4.98.9 released
+  
+-------------------------------------------------------------------
+Thu Oct 27 12:38:14 CEST 2011 - [email protected]
+  
+- arch check in __checkNameValid is too restrictive
+  
+-------------------------------------------------------------------
+Thu Oct 27 12:15:40 CEST 2011 - [email protected]
+  
+- v4.98.8 released
+  
+-------------------------------------------------------------------
+Thu Oct 27 12:07:41 CEST 2011 - [email protected]
+  
+- fixed quoting of parameters in config.isoclient
+  
+-------------------------------------------------------------------
+Thu Oct 27 11:47:49 CEST 2011 - [email protected]
+  
+- DB: update documentation
+  
+  Date:   Thu Oct 27 05:19:20 2011 -0400
+  
+  change URL in spec file to point to the new homw of the source, github vs. 
berlios
+  
+  Date:   Thu Oct 27 05:13:15 2011 -0400
+  
+  generated html doc
+  
+-------------------------------------------------------------------
+Thu Oct 27 10:59:10 CEST 2011 - [email protected]
+  
+- reverted commit 620e4e65d05b257e4fc8c6017908e6ba9f75e28e
+  this was a parted bug which is now fixed
+  
+  Date:   Wed Oct 26 16:28:46 2011 -0400
+  
+  add section about cross platform build, expand the introductory section of 
chapter 4
+  
+-------------------------------------------------------------------

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

Other differences:
------------------
++++++ kiwi.spec ++++++
--- /var/tmp/diff_new_pack.ljzF6D/_old  2011-10-27 14:27:29.000000000 +0200
+++ /var/tmp/diff_new_pack.ljzF6D/_new  2011-10-27 14:27:29.000000000 +0200
@@ -17,7 +17,7 @@
 
 # needsrootforbuild
 
-Url:            http://kiwi.berlios.de
+Url:            http://github.com/openSUSE/kiwi
 
 Name:           kiwi
 BuildRequires:  perl-Config-IniFiles perl-XML-LibXML perl-libwww-perl
@@ -69,7 +69,7 @@
 %endif
 %endif
 Summary:        OpenSuSE - KIWI Image System
-Version:        4.98.7
+Version:        4.98.9
 Release:        1
 Group:          System/Management
 License:        GPLv2

++++++ kiwi-docu.tar.bz2 ++++++
/work/SRC/openSUSE:Factory/kiwi/kiwi-docu.tar.bz2 
/work/SRC/openSUSE:Factory/.kiwi.new/kiwi-docu.tar.bz2 differ: char 11, line 1

++++++ kiwi.tar.bz2 ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kiwi/.revision new/kiwi/.revision
--- old/kiwi/.revision  2011-10-26 14:47:33.000000000 +0200
+++ new/kiwi/.revision  2011-10-26 14:47:33.000000000 +0200
@@ -1 +1 @@
-4e00fb56f08a5d6f4d1f719418149a02ce9c3705
+a51e9ba7f4de49d0f01a3828470de48234ad38f5
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kiwi/modules/KIWIBoot.pm new/kiwi/modules/KIWIBoot.pm
--- old/kiwi/modules/KIWIBoot.pm        2011-10-26 15:57:49.000000000 +0200
+++ new/kiwi/modules/KIWIBoot.pm        2011-10-27 12:16:41.000000000 +0200
@@ -921,7 +921,7 @@
                        $kiwi -> failed ();
                        return undef;
                }
-               print FD "IMAGE=$namecd\n";
+               print FD "IMAGE='".$namecd."'\n";
                close FD;
                $kiwi -> info ("Importing system image: $system");
                $status = qxx ("mv $system $tmpdir 2>&1");
@@ -1489,7 +1489,7 @@
                        $this -> cleanLoop ();
                        return undef;
                }
-               print FD "IMAGE=$nameusb\n";
+               print FD "IMAGE='".$nameusb."'\n";
                close FD;
                $main::global -> umount();
                $kiwi -> done();
@@ -2572,7 +2572,7 @@
                        qxx ("rm -rf $irddir");
                        return undef;
                }
-               print FD "IMAGE=$namecd\n";
+               print FD "IMAGE='".$namecd."'\n";
                close FD;
        }
        #==========================================
@@ -4220,7 +4220,7 @@
        chomp $status;
        $this->{pDiskCylinderSize} = $status;
        $status = qxx (
-               "$parted | head -n 2 | tail -n 1 | cut -f2 -d: | tr -d cyl"
+               "$parted | head -n 3 | tail -n 1 | cut -f1 -d:"
        );
        $result = $? >> 8;
        if ($result != 0) {
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kiwi/modules/KIWIGlobals.pm 
new/kiwi/modules/KIWIGlobals.pm
--- old/kiwi/modules/KIWIGlobals.pm     2011-10-26 21:59:23.000000000 +0200
+++ new/kiwi/modules/KIWIGlobals.pm     2011-10-27 12:39:26.000000000 +0200
@@ -40,7 +40,7 @@
        # Globals (generic)
        #------------------------------------------
        my %data;
-       $data{Version}         = "4.98.7";
+       $data{Version}         = "4.98.9";
        $data{Publisher}       = "SUSE LINUX Products GmbH";
        $data{Preparer}        = "KIWI - http://kiwi.berlios.de";;
        $data{ConfigName}      = "config.xml";
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kiwi/modules/KIWIImage.pm 
new/kiwi/modules/KIWIImage.pm
--- old/kiwi/modules/KIWIImage.pm       2011-10-25 15:40:01.000000000 +0200
+++ new/kiwi/modules/KIWIImage.pm       2011-10-27 12:16:41.000000000 +0200
@@ -1931,15 +1931,15 @@
                return undef;
        }
        if ((! defined $gzip) || ($gzip =~ /^(unified|clic)/)) {
-               print FD "IMAGE=/dev/ram1;$namecd\n";
+               print FD "IMAGE='/dev/ram1;$namecd'\n";
        } else {
-               print FD "IMAGE=/dev/loop1;$namecd\n";
+               print FD "IMAGE='/dev/loop1;$namecd'\n";
        }
        if (defined $gzip) {
                if ($gzip =~ /^unified/) {
-                       print FD "UNIONFS_CONFIG=/dev/ram1,/dev/loop1,aufs\n";
+                       print FD "UNIONFS_CONFIG='/dev/ram1,/dev/loop1,aufs'\n";
                } elsif ($gzip =~ /^clic/) {
-                       print FD "UNIONFS_CONFIG=/dev/ram1,/dev/loop1,clicfs\n";
+                       print FD 
"UNIONFS_CONFIG='/dev/ram1,/dev/loop1,clicfs'\n";
                } else {
                        print FD "COMBINED_IMAGE=yes\n";
                }
@@ -2885,8 +2885,8 @@
                # IMAGE information
                #------------------------------------------
                if (($type{compressed}) && ($type{compressed} eq 'true')) {
-                       print FD "IMAGE=${device}${targetPartition};";
-                       print FD "$namecd;$server;$blocks;compressed";
+                       print FD "IMAGE='${device}${targetPartition};";
+                       print FD "$namecd;$server;$blocks;compressed'";
                        if ("$type{type}" eq "split" && defined 
$this->{imageTreeRW}) {
                                print FD ",${device}${targetPartitionNext}";
                                print FD 
";$namerw;$server;$blocks;compressed\n";
@@ -2894,8 +2894,8 @@
                                print FD "\n";
                        }
                } else {
-                       print FD "IMAGE=${device}${targetPartition};";
-                       print FD "$namecd;$server;$blocks";
+                       print FD "IMAGE='${device}${targetPartition};";
+                       print FD "$namecd;$server;$blocks'";
                        if ("$type{type}" eq "split" && defined 
$this->{imageTreeRW}) {
                                print FD ",${device}${targetPartitionNext}";
                                print FD ";$namerw;$server;$blocks\n";
@@ -2935,7 +2935,7 @@
                                $valid = 1;
                        }
                        if ($valid) {
-                               print FD "UNIONFS_CONFIG=$value\n";
+                               print FD "UNIONFS_CONFIG='".$value."'\n";
                        }
                }
                #==========================================
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kiwi/modules/KIWIXMLValidator.pm 
new/kiwi/modules/KIWIXMLValidator.pm
--- old/kiwi/modules/KIWIXMLValidator.pm        2011-10-26 21:59:23.000000000 
+0200
+++ new/kiwi/modules/KIWIXMLValidator.pm        2011-10-27 12:39:26.000000000 
+0200
@@ -275,7 +275,7 @@
        my @imgNodes = $this->{systemTree} -> getElementsByTagName('image');
        # There is only one image node, it is the root node
        my $name = $imgNodes[0] -> getAttribute('name');
-       if (($name) && ($name =~ /i.*86|x86_64|ppc|ppc64|s390|s390x/)) {
+       if (($name) && ($name =~ /i586|i686|x86_64|ppc|ppc64|s390|s390x/)) {
                my $kiwi = $this->{kiwi};
                my $msg = 'Found arch string provided in name. '
             . 'No arch string permitted';

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

Reply via email to