Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package installation-images for openSUSE:Factory checked in at 2021-08-05 20:47:55 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/installation-images (Old) and /work/SRC/openSUSE:Factory/.installation-images.new.1899 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "installation-images" Thu Aug 5 20:47:55 2021 rev:140 rq:910093 version:17.11 Changes: -------- --- /work/SRC/openSUSE:Factory/installation-images/installation-images.changes 2021-08-02 12:04:55.565657868 +0200 +++ /work/SRC/openSUSE:Factory/.installation-images.new.1899/installation-images.changes 2021-08-05 20:48:18.503918211 +0200 @@ -1,0 +2,7 @@ +Wed Aug 4 08:07:08 UTC 2021 - wfe...@opensuse.org + +- merge gh#openSUSE/installation-images#517 +- fix getting the kernel file name +- 17.11 + +-------------------------------------------------------------------- Old: ---- installation-images-17.10.tar.xz New: ---- installation-images-17.11.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ installation-images.spec ++++++ --- /var/tmp/diff_new_pack.SbHE9G/_old 2021-08-05 20:48:19.107917534 +0200 +++ /var/tmp/diff_new_pack.SbHE9G/_new 2021-08-05 20:48:19.111917529 +0200 @@ -674,7 +674,7 @@ Summary: Installation Image Files for %theme License: GPL-2.0-or-later Group: Metapackages -Version: 17.10 +Version: 17.11 Release: 0 Provides: installation-images = %version-%release Conflicts: otherproviders(installation-images) ++++++ installation-images-17.10.tar.xz -> installation-images-17.11.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/installation-images-17.10/VERSION new/installation-images-17.11/VERSION --- old/installation-images-17.10/VERSION 2021-07-30 17:42:47.000000000 +0200 +++ new/installation-images-17.11/VERSION 2021-08-04 10:07:08.000000000 +0200 @@ -1 +1 @@ -17.10 +17.11 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/installation-images-17.10/changelog new/installation-images-17.11/changelog --- old/installation-images-17.10/changelog 2021-07-30 17:42:47.000000000 +0200 +++ new/installation-images-17.11/changelog 2021-08-04 10:07:08.000000000 +0200 @@ -1,3 +1,7 @@ +2021-08-04: 17.11 + - merge gh#openSUSE/installation-images#517 + - fix getting the kernel file name + 2021-07-30: 17.10 - merge gh#openSUSE/installation-images#516 - adobe-sourcesanspro-fonts have their font names changed diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/installation-images-17.10/etc/config new/installation-images-17.11/etc/config --- old/installation-images-17.10/etc/config 2021-07-30 17:42:47.000000000 +0200 +++ new/installation-images-17.11/etc/config 2021-08-04 10:07:08.000000000 +0200 @@ -14,7 +14,7 @@ ; *** These are actually perl regexps! *** ; [KernelImage] -default = vmlinuz- +default = vmlinuz alpha = vmlinuz ppc = vmlinux ppc64 = vmlinux diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/installation-images-17.10/lib/ReadConfig.pm new/installation-images-17.11/lib/ReadConfig.pm --- old/installation-images-17.10/lib/ReadConfig.pm 2021-07-30 17:42:47.000000000 +0200 +++ new/installation-images-17.11/lib/ReadConfig.pm 2021-08-04 10:07:08.000000000 +0200 @@ -566,7 +566,9 @@ next unless s#.*/boot/##; next if /autoconf|config|shipped|version/; # skip obvious garbage my ($f, $l) = split(/ /); - if($f =~ m#^$ConfigData{kernel_img}#) { + # Explicitly require the kernel file to have a version number attached + # with a '-', like NAME-VERSION-VARIANT. + if($f =~ m#^$ConfigData{kernel_img}\-#) { $l =~ s#.*/## if ($l); push @k_images, $l?$l:$f; }