Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package unetbootin for openSUSE:Factory checked in at 2021-02-19 23:49:55 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/unetbootin (Old) and /work/SRC/openSUSE:Factory/.unetbootin.new.28504 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "unetbootin" Fri Feb 19 23:49:55 2021 rev:12 rq:873913 version:0.0.702 Changes: -------- --- /work/SRC/openSUSE:Factory/unetbootin/unetbootin.changes 2021-01-25 18:25:40.256607493 +0100 +++ /work/SRC/openSUSE:Factory/.unetbootin.new.28504/unetbootin.changes 2021-02-19 23:49:56.603638573 +0100 @@ -1,0 +2,6 @@ +Fri Feb 12 00:21:07 UTC 2021 - Dirk M??ller <dmuel...@suse.com> + +- update to 702: + * Fix compatibility issue on macOS big sur + +------------------------------------------------------------------- Old: ---- unetbootin-source-700.tar.gz New: ---- unetbootin-source-702.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ unetbootin.spec ++++++ --- /var/tmp/diff_new_pack.4e5Cje/_old 2021-02-19 23:49:57.159639118 +0100 +++ /var/tmp/diff_new_pack.4e5Cje/_new 2021-02-19 23:49:57.163639123 +0100 @@ -16,7 +16,7 @@ # -%define rev 700 +%define rev 702 Name: unetbootin Version: 0.0.%{rev} Release: 0 ++++++ unetbootin-source-700.tar.gz -> unetbootin-source-702.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/README.TXT new/README.TXT --- old/README.TXT 2020-11-09 08:01:42.000000000 +0100 +++ new/README.TXT 2021-02-04 10:30:22.000000000 +0100 @@ -1,16 +1,16 @@ -UNetbootin Source Revision 700 +UNetbootin Source Revision 702 Copyright Geza Kovacs Homepage at http://unetbootin.sourceforge.net Licensed under the GNU GPL v2 and above, components from other projects are licensed under their respective licenses -Build generated on 2020???11??? 8??? ????????? 23???01???42??? PST +Build generated on 2021??? 2??? 4??? ????????? 01???30???22??? PST Download using git: git clone https://github.com/gkovacs/unetbootin.git cd unetbootin -git checkout 741e8048f908017335a622d5afe26c9212883488 +git checkout e2eb0fe57aad24d02a0e535745bd4f33a30edb75 Download using bzr: -bzr branch http://bazaar.launchpad.net/~vcs-imports/unetbootin/trunk -r700 +bzr branch http://bazaar.launchpad.net/~vcs-imports/unetbootin/trunk -r702 Build instructions at http://sourceforge.net/apps/trac/unetbootin/wiki/compile diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/main.cpp new/main.cpp --- old/main.cpp 2020-11-09 01:35:15.000000000 +0100 +++ new/main.cpp 2021-02-04 10:18:21.000000000 +0100 @@ -369,7 +369,7 @@ process.waitForFinished(-1); // will wait forever until finished QString stdout = QString(process.readAllStandardOutput()).trimmed(); bool is_mojave_or_above = false; - if (stdout.count('.') == 2) { + if (stdout.count('.') >= 1) { QStringList version_parts = stdout.split('.'); int major_version = version_parts[0].toInt(); int sub_version = version_parts[1].toInt();