Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package product-builder for openSUSE:Factory 
checked in at 2021-02-11 12:46:01
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/product-builder (Old)
 and      /work/SRC/openSUSE:Factory/.product-builder.new.28504 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "product-builder"

Thu Feb 11 12:46:01 2021 rev:34 rq:870315 version:1.3.2

Changes:
--------
--- /work/SRC/openSUSE:Factory/product-builder/product-builder.changes  
2020-09-23 18:37:26.321161894 +0200
+++ 
/work/SRC/openSUSE:Factory/.product-builder.new.28504/product-builder.changes   
    2021-02-11 12:46:19.681396334 +0100
@@ -1,0 +2,6 @@
+Mon Feb  8 15:57:54 UTC 2021 - Adrian Schr??ter <adr...@suse.de>
+
+- 1.3.2
+  * RISC-V support
+
+-------------------------------------------------------------------

Old:
----
  product-builder-1.3.1.obscpio

New:
----
  product-builder-1.3.2.obscpio

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

Other differences:
------------------
++++++ product-builder.spec ++++++
--- /var/tmp/diff_new_pack.aFtP17/_old  2021-02-11 12:46:20.329397277 +0100
+++ /var/tmp/diff_new_pack.aFtP17/_new  2021-02-11 12:46:20.333397283 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package product-builder
 #
-# Copyright (c) 2020 SUSE LLC
+# Copyright (c) 2021 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -23,7 +23,7 @@
 Name:           product-builder
 Conflicts:      kiwi
 Conflicts:      kiwi-instsource
-Version:        1.3.1
+Version:        1.3.2
 Release:        0
 Provides:       kiwi-schema = 6.2
 Source:         product-builder-%version.tar.xz

++++++ _service ++++++
--- /var/tmp/diff_new_pack.aFtP17/_old  2021-02-11 12:46:20.361397324 +0100
+++ /var/tmp/diff_new_pack.aFtP17/_new  2021-02-11 12:46:20.365397329 +0100
@@ -1,12 +1,12 @@
 <services>
-  <service name="obs_scm" mode="disabled">
+  <service name="obs_scm" mode="manual">
     <param name="url">https://github.com/openSUSE/product-builder.git</param>
-    <param name="revision">1.3.1</param>
-    <param name="version">1.3.1</param>
+    <param name="revision">1.3.2</param>
+    <param name="version">1.3.2</param>
     <param name="scm">git</param>
     <param name="extract">rpm/product-builder.spec</param>
   </service>
-  <service mode="disabled" name="set_version"/>
+  <service mode="manual" name="set_version"/>
   <service mode="buildtime" name="tar" />
   <service mode="buildtime" name="recompress">
     <param name="file">*.tar</param>

++++++ product-builder-1.3.1.obscpio -> product-builder-1.3.2.obscpio ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/product-builder-1.3.1/modules/KIWIIsoLinux.pm 
new/product-builder-1.3.2/modules/KIWIIsoLinux.pm
--- old/product-builder-1.3.1/modules/KIWIIsoLinux.pm   2020-09-14 
11:44:20.000000000 +0200
+++ new/product-builder-1.3.2/modules/KIWIIsoLinux.pm   2021-02-08 
16:54:51.000000000 +0100
@@ -147,6 +147,10 @@
     $base{aarch64}{boot}    = "boot/aarch64";
     $base{aarch64}{loader}  = "undef";
     $base{aarch64}{efi}     = "boot/aarch64/efi";
+    # riscv64
+    $base{riscv64}{boot}    = "boot/riscv64";
+    $base{riscv64}{loader}  = "undef";
+    $base{riscv64}{efi}     = "boot/riscv64/efi";
     #=======================================
     # 1) search for legacy boot
     #---------------------------------------
@@ -201,6 +205,9 @@
             if ($arch eq "aarch64") {
                 push (@catalog, "aarch64_efi");
             }
+            if ($arch eq "riscv64") {
+                push (@catalog, "riscv64_efi");
+            }
         }
     }
     #==========================================
@@ -486,6 +493,35 @@
 }
 
 #==========================================
+# riscv64_efi
+#------------------------------------------
+sub riscv64_efi {
+    my $this  = shift;
+    my $arch  = shift;
+    my %base  = %{$this->{base}};
+    my $para  = $this -> {params};
+    my $magicID= $this -> {magicID};
+    my $boot  = $base{$arch}{boot};
+    my $loader= $base{$arch}{efi};
+    my $sort  = $this -> createLegacySortFile ("riscv64");
+    my $src   = $this -> {source};
+    KIWIQX::qxx ("echo $src/boot/$arch/efi 1000001 >> $sort");
+    #==========================================
+    # add end-of-header marker
+    #------------------------------------------
+    KIWIQX::qxx ("echo $magicID > ".$this->{tmpdir}."/glump");
+    KIWIQX::qxx ("echo ".$this->{tmpdir}."/glump 1000000 >> $sort") if $sort;
+    $para.= " -sort $sort" if $sort;
+    $para.= " -no-emul-boot";
+    # do not add -boot-load-size 1 here
+    $para.= " -b $loader";
+    $para.= " -c $boot/boot.catalog";
+    $para.= " -hide $boot/boot.catalog -hide-joliet $boot/boot.catalog";
+    $this -> {params} = $para;
+    return $this;
+}
+
+#==========================================
 # callBootMethods
 #------------------------------------------
 sub callBootMethods {
@@ -534,7 +570,7 @@
         $this -> cleanISO();
         return;
     }
-    if ($arch ne "aarch64") {
+    if ($arch ne "aarch64" && $arch ne "riscv64") {
         find ({wanted => $wref,follow => 0 
},$src."/".$base{$arch}{boot}."/loader");
     }
     print $FD "$ldir/".$base{$arch}{boot}."/boot.catalog 3"."\n";

++++++ product-builder.obsinfo ++++++
--- /var/tmp/diff_new_pack.aFtP17/_old  2021-02-11 12:46:20.561397615 +0100
+++ /var/tmp/diff_new_pack.aFtP17/_new  2021-02-11 12:46:20.565397621 +0100
@@ -1,5 +1,5 @@
 name: product-builder
-version: 1.3.1
-mtime: 1600076660
-commit: df266e68b3e36293bd3bf0b2e26a1790feb19ddd
+version: 1.3.2
+mtime: 1612799691
+commit: 91ccd6db15efcab3020bb1e9b90ed63a01a8d164
 

Reply via email to