Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package os-prober for openSUSE:Factory 
checked in at 2021-07-30 23:21:50
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/os-prober (Old)
 and      /work/SRC/openSUSE:Factory/.os-prober.new.1899 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "os-prober"

Fri Jul 30 23:21:50 2021 rev:56 rq:908824 version:1.79

Changes:
--------
--- /work/SRC/openSUSE:Factory/os-prober/os-prober.changes      2021-04-27 
21:34:22.083954742 +0200
+++ /work/SRC/openSUSE:Factory/.os-prober.new.1899/os-prober.changes    
2021-07-30 23:21:52.227656586 +0200
@@ -1,0 +2,11 @@
+Thu Jul 22 08:17:58 UTC 2021 - Michael Chang <mch...@suse.com>
+
+- Update to 1.79:
+  * Add mount dependency (Closes: #934713)
+- Use download_files source service to download source files which is specified
+  in the spec file
+  * _service
+- Disable debug messages by default (bsc#1101735)
+  * os-prober-disable-debug.patch
+
+-------------------------------------------------------------------

Old:
----
  os-prober-1.78.tar.bz2

New:
----
  _service
  os-prober-1.79.tar.bz2
  os-prober-disable-debug.patch

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

Other differences:
------------------
++++++ os-prober.spec ++++++
--- /var/tmp/diff_new_pack.hWCMNx/_old  2021-07-30 23:21:53.127655597 +0200
+++ /var/tmp/diff_new_pack.hWCMNx/_new  2021-07-30 23:21:53.131655593 +0200
@@ -17,7 +17,7 @@
 
 
 Name:           os-prober
-Version:        1.78
+Version:        1.79
 Release:        0
 Summary:        Probes disks on the system for installed operating systems
 License:        GPL-2.0-or-later
@@ -75,6 +75,8 @@
 Patch28:        os-prober-use-tmp-over-var-lib-for-transient-files.patch
 # PATCH-FIX-OPENSUSE: Two TW selections is shown in GRUB after installing 
system with multi-device Btrfs (bsc#1142858)
 Patch29:        os-prober-btrfs-multiple-device.patch
+# PATCH-FIX-OPENSUSE: 40grub2: debug messages (bsc#1101735)
+Patch30:        os-prober-disable-debug.patch
 Requires:       /bin/grep
 Requires:       /bin/sed
 Requires:       /sbin/modprobe
@@ -121,6 +123,7 @@
 %patch27 -p1
 %patch28 -p1
 %patch29 -p1
+%patch30 -p1
 find . -name \*.orig -delete
 
 %build

++++++ _service ++++++
<services>
  <service name="download_files" mode="localonly">
    <param name="enforceupstream">yes</param>
  </service>
</services>
++++++ os-prober-1.78.tar.bz2 -> os-prober-1.79.tar.bz2 ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/os-prober-1.78/debian/changelog 
new/os-prober-1.79/debian/changelog
--- old/os-prober-1.78/debian/changelog 2021-01-21 01:18:31.000000000 +0100
+++ new/os-prober-1.79/debian/changelog 2021-07-11 00:54:48.000000000 +0200
@@ -1,3 +1,10 @@
+os-prober (1.79) unstable; urgency=medium
+
+  * Team upload
+  * Add mount dependency (Closes: #934713)
+
+ -- Hideki Yamane <henr...@debian.org>  Mon, 28 Jun 2021 22:02:45 +0900
+
 os-prober (1.78) unstable; urgency=medium
 
   * Team upload
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/os-prober-1.78/debian/control 
new/os-prober-1.79/debian/control
--- old/os-prober-1.78/debian/control   2021-01-21 01:18:31.000000000 +0100
+++ new/os-prober-1.79/debian/control   2021-07-11 00:54:48.000000000 +0200
@@ -21,7 +21,7 @@
 Package: os-prober
 Architecture: any
 Section: utils
-Depends: ${shlibs:Depends}, ${misc:Depends}, grub-common [linux-any 
kfreebsd-any]
+Depends: ${shlibs:Depends}, ${misc:Depends}, grub-common [linux-any 
kfreebsd-any], mount
 Description: utility to detect other OSes on a set of drives
  This package detects other OSes available on a system and outputs the
  results in a generic machine-readable format.

++++++ os-prober-disable-debug.patch ++++++
Index: os-prober-1.79/common.sh
===================================================================
--- os-prober-1.79.orig/common.sh
+++ os-prober-1.79/common.sh
@@ -66,7 +66,7 @@ warn() {
 }
 
 debug() {
-  if [ -z "$OS_PROBER_DISABLE_DEBUG" ]; then
+  if [ "x${OS_PROBER_ENABLE_DEBUG}" = xyes ] || [ "x${OS_PROBER_ENABLE_DEBUG}" 
= xy ]; then
     log "debug: $@"
   fi
 }

Reply via email to