Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package perl-Bootloader for openSUSE:Factory
checked in at 2021-02-15 23:12:10
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/perl-Bootloader (Old)
and /work/SRC/openSUSE:Factory/.perl-Bootloader.new.28504 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "perl-Bootloader"
Mon Feb 15 23:12:10 2021 rev:193 rq:871253 version:0.933
Changes:
--------
--- /work/SRC/openSUSE:Factory/perl-Bootloader/perl-Bootloader.changes
2020-10-22 14:23:09.322797275 +0200
+++
/work/SRC/openSUSE:Factory/.perl-Bootloader.new.28504/perl-Bootloader.changes
2021-02-15 23:13:27.523141161 +0100
@@ -1,0 +2,7 @@
+Thu Feb 11 14:16:58 UTC 2021 - [email protected]
+
+- merge gh#openSUSE/perl-bootloader#133
+- use shim on aarch64 (jsc#SLE-15823, jsc#SLE-15020)
+- 0.933
+
+--------------------------------------------------------------------
Old:
----
perl-Bootloader-0.932.tar.xz
New:
----
perl-Bootloader-0.933.tar.xz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ perl-Bootloader.spec ++++++
--- /var/tmp/diff_new_pack.zrs1zV/_old 2021-02-15 23:13:28.047141943 +0100
+++ /var/tmp/diff_new_pack.zrs1zV/_new 2021-02-15 23:13:28.051141949 +0100
@@ -1,7 +1,7 @@
#
# spec file for package perl-Bootloader
#
-# Copyright (c) 2020 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2021 SUSE LINUX GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
Name: perl-Bootloader
-Version: 0.932
+Version: 0.933
Release: 0
Requires: coreutils
Requires: perl-base = %{perl_version}
++++++ perl-Bootloader-0.932.tar.xz -> perl-Bootloader-0.933.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/perl-Bootloader-0.932/VERSION
new/perl-Bootloader-0.933/VERSION
--- old/perl-Bootloader-0.932/VERSION 2020-10-19 12:26:56.000000000 +0200
+++ new/perl-Bootloader-0.933/VERSION 2021-02-11 15:16:58.000000000 +0100
@@ -1 +1 @@
-0.932
+0.933
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/perl-Bootloader-0.932/changelog
new/perl-Bootloader-0.933/changelog
--- old/perl-Bootloader-0.932/changelog 2020-10-19 12:26:56.000000000 +0200
+++ new/perl-Bootloader-0.933/changelog 2021-02-11 15:16:58.000000000 +0100
@@ -1,3 +1,7 @@
+2021-02-11: 0.933
+ - merge gh#openSUSE/perl-bootloader#133
+ - use shim on aarch64 (jsc#SLE-15823, jsc#SLE-15020)
+
2020-10-19: 0.932
- merge gh#openSUSE/perl-bootloader#131
- grub2 install: honor UPDATE_NVRAM in /etc/sysconfig/bootloader
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/perl-Bootloader-0.932/grub2-efi/install
new/perl-Bootloader-0.933/grub2-efi/install
--- old/perl-Bootloader-0.932/grub2-efi/install 2020-10-19 12:26:56.000000000
+0200
+++ new/perl-Bootloader-0.933/grub2-efi/install 2021-02-11 15:16:58.000000000
+0100
@@ -64,17 +64,17 @@
append="$append --no-nvram"
fi
-if [ "$SYS__BOOTLOADER__SECURE_BOOT" = "yes" -a "$target" != "arm64-efi" ] ;
then
- if [ -x /usr/sbin/shim-install ] ; then
- ( set -x ; /usr/sbin/shim-install --config-file=/boot/grub2/grub.cfg
$append )
- else
- echo "shim-install: command not found"
- exit 1
- fi
+if [ "$SYS__BOOTLOADER__SECURE_BOOT" = "yes" -a -x /usr/sbin/shim-install ] ;
then
+ ( set -x ; /usr/sbin/shim-install --config-file=/boot/grub2/grub.cfg $append
)
elif [ -x /usr/sbin/grub2-install ] ; then
- # Use '--suse-force-signed' when shim is not used (aarch64 case)
if [ "$SYS__BOOTLOADER__SECURE_BOOT" = "yes" ] ; then
- append="$append --suse-force-signed"
+ # Use '--suse-force-signed' when shim is not used (aarch64 case)
+ if [ "$target" = "arm64-efi" ] ; then
+ append="$append --suse-force-signed"
+ else
+ echo "shim-install: command not found"
+ exit 1
+ fi
fi
if [ "$has_nvram" = 1 -a "$target" = "arm64-efi" ] ; then
# some arm firmwares need the fallback even though they have nvram vars
(bsc#1167015)