Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package gnucash for openSUSE:Factory checked in at 2021-10-04 18:40:12 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/gnucash (Old) and /work/SRC/openSUSE:Factory/.gnucash.new.2443 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "gnucash" Mon Oct 4 18:40:12 2021 rev:93 rq:922761 version:4.8 Changes: -------- --- /work/SRC/openSUSE:Factory/gnucash/gnucash.changes 2021-06-28 15:33:57.835210606 +0200 +++ /work/SRC/openSUSE:Factory/.gnucash.new.2443/gnucash.changes 2021-10-04 18:41:42.602227606 +0200 @@ -1,0 +2,21 @@ +Fri Oct 1 12:48:54 UTC 2021 - Bj??rn Lie <[email protected]> + +- Update to 4.8 + + Compatibility Notice: + In order to allow flatpak users to share preferences with + installations outside of the sandbox we need to change the + preference path from /org/gnucash to /org/gnucash/GnuCash. This + release of GnuCash does that and it will automatically migrate + existing preferences. It does not, however, continue to write + preferences to the old path and it runs the migration only + once. If you go back and forth between GnuCash 4.7 and an older + versions you'll have two sets of preferences, one for GnuCash + 4.7 and later and another for GnuCash 4.6 and earlier. This + includes the file history list and last-opened file. + + Bugfixes + + Updated translations. +- Add 285017793d2c0c9f5a8d52b3db42944480e3f557.patch: Use plain cat + instead of cmake -E cat to join the migratable-prefs. Fixes build + for everything older than current Tumbleweed. + +------------------------------------------------------------------- Old: ---- gnucash-4.6.tar.bz2 New: ---- 285017793d2c0c9f5a8d52b3db42944480e3f557.patch gnucash-4.8.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ gnucash.spec ++++++ --- /var/tmp/diff_new_pack.y9aCuj/_old 2021-10-04 18:41:43.394228893 +0200 +++ /var/tmp/diff_new_pack.y9aCuj/_new 2021-10-04 18:41:43.398228899 +0200 @@ -28,7 +28,7 @@ %endif Name: gnucash -Version: 4.6 +Version: 4.8 Release: 0 Summary: Personal Finance Manager License: SUSE-GPL-2.0-with-openssl-exception OR SUSE-GPL-3.0-with-openssl-exception @@ -43,6 +43,9 @@ Patch1: gnucash-libm.patch Patch2: gnucash-4.1-fix-gtest-path.patch +# PATCH-FIX-UPSTREAM 285017793d2c0c9f5a8d52b3db42944480e3f557.patch -- Use plain cat instead of cmake -E cat to join the migratable-prefs. +Patch3: https://github.com/Gnucash/gnucash/commit/285017793d2c0c9f5a8d52b3db42944480e3f557.patch + BuildRequires: boost-devel >= 1.60.0 BuildRequires: cmake >= 3.5 BuildRequires: doxygen ++++++ 285017793d2c0c9f5a8d52b3db42944480e3f557.patch ++++++ >From 285017793d2c0c9f5a8d52b3db42944480e3f557 Mon Sep 17 00:00:00 2001 From: John Ralls <[email protected]> Date: Wed, 29 Sep 2021 10:35:19 -0700 Subject: [PATCH] Use plain cat instead of cmake -E cat to join the migratable-prefs. Cmake -E's cat is too new. --- gnucash/gschemas/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gnucash/gschemas/CMakeLists.txt b/gnucash/gschemas/CMakeLists.txt index 63da362f47..8b81a01614 100644 --- a/gnucash/gschemas/CMakeLists.txt +++ b/gnucash/gschemas/CMakeLists.txt @@ -29,7 +29,7 @@ set(gschema_migration_files ${local_migration_files} CACHE INTERNAL "gschema mig # Provide gnucash runtime with a list of migratable preferences add_custom_command( OUTPUT ${DATADIR_BUILD}/${PROJECT_NAME}/migratable-prefs.xml - COMMAND ${CMAKE_COMMAND} -E cat ${gschema_migration_files} > ${DATADIR_BUILD}/${PROJECT_NAME}/migratable-prefs.xml + COMMAND cat ${gschema_migration_files} > ${DATADIR_BUILD}/${PROJECT_NAME}/migratable-prefs.xml DEPENDS ${gschema_migration_files} ) ++++++ gnucash-4.6.tar.bz2 -> gnucash-4.8.tar.bz2 ++++++ /work/SRC/openSUSE:Factory/gnucash/gnucash-4.6.tar.bz2 /work/SRC/openSUSE:Factory/.gnucash.new.2443/gnucash-4.8.tar.bz2 differ: char 11, line 1
