Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package gerbera for openSUSE:Factory checked in at 2022-10-15 16:38:19 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/gerbera (Old) and /work/SRC/openSUSE:Factory/.gerbera.new.2275 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "gerbera" Sat Oct 15 16:38:19 2022 rev:8 rq:1011100 version:1.11.0 Changes: -------- --- /work/SRC/openSUSE:Factory/gerbera/gerbera.changes 2022-05-25 20:35:52.728337874 +0200 +++ /work/SRC/openSUSE:Factory/.gerbera.new.2275/gerbera.changes 2022-10-15 16:40:57.146657342 +0200 @@ -1,0 +2,5 @@ +Sat Oct 15 09:52:05 UTC 2022 - Paolo Stivanin <[email protected]> + +- Add fix-fmt9.patch + +------------------------------------------------------------------- New: ---- fix-fmt9.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ gerbera.spec ++++++ --- /var/tmp/diff_new_pack.JZKKvg/_old 2022-10-15 16:40:57.658658572 +0200 +++ /var/tmp/diff_new_pack.JZKKvg/_new 2022-10-15 16:40:57.666658591 +0200 @@ -29,6 +29,8 @@ Patch0: harden_gerbera.service.patch #PATCH-FIX-UPSTREAM https://github.com/gerbera/gerbera/pull/2635 Patch1: 2635.patch +#PATCH-FIX-UPSTREAM https://github.com/gerbera/gerbera/issues/2681 +Patch2: fix-fmt9.patch BuildRequires: ccache BuildRequires: cmake >= 3.13 BuildRequires: fdupes ++++++ fix-fmt9.patch ++++++ >From d7b8fafbc94405c20753fed569abd8878cccde89 Mon Sep 17 00:00:00 2001 From: Felix Yan <[email protected]> Date: Fri, 19 Aug 2022 15:22:10 +0300 Subject: [PATCH] Fix build with fmt 9.0 Fixes #2681 --- src/database/sql_format.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/database/sql_format.h b/src/database/sql_format.h index 32dc00efa..e4e1909a8 100644 --- a/src/database/sql_format.h +++ b/src/database/sql_format.h @@ -42,7 +42,7 @@ struct SQLIdentifier { template <> struct fmt::formatter<SQLIdentifier> : formatter<std::string_view> { template <typename FormatContext> - auto format(const SQLIdentifier& tn, FormatContext& ctx) -> decltype(ctx.out()) + auto format(const SQLIdentifier& tn, FormatContext& ctx) const -> decltype(ctx.out()) { return format_to(ctx.out(), "{}{}{}", tn.quote_begin, tn.name, tn.quote_end); } @@ -61,7 +61,7 @@ struct ColumnUpdate { template <> struct fmt::formatter<ColumnUpdate> : formatter<std::string_view> { template <typename FormatContext> - auto format(const ColumnUpdate& a, FormatContext& ctx) -> decltype(ctx.out()) + auto format(const ColumnUpdate& a, FormatContext& ctx) const -> decltype(ctx.out()) { return format_to(ctx.out(), "{} = {}", a.column, a.value); }
