Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package gource for openSUSE:Factory checked in at 2024-05-27 11:55:08 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/gource (Old) and /work/SRC/openSUSE:Factory/.gource.new.24587 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "gource" Mon May 27 11:55:08 2024 rev:18 rq:1176862 version:0.54 Changes: -------- --- /work/SRC/openSUSE:Factory/gource/gource.changes 2023-03-14 18:17:08.455890959 +0100 +++ /work/SRC/openSUSE:Factory/.gource.new.24587/gource.changes 2024-05-27 12:03:03.261758740 +0200 @@ -1,0 +2,6 @@ +Thu May 23 16:23:59 UTC 2024 - Christophe Marin <[email protected]> + +- Add upstream change to fix build failures with recent boost: + * 0001-Fix-build-with-Boost-1.85.0.patch + +------------------------------------------------------------------- New: ---- 0001-Fix-build-with-Boost-1.85.0.patch BETA DEBUG BEGIN: New:- Add upstream change to fix build failures with recent boost: * 0001-Fix-build-with-Boost-1.85.0.patch BETA DEBUG END: ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ gource.spec ++++++ --- /var/tmp/diff_new_pack.HHJ9h1/_old 2024-05-27 12:03:03.677774013 +0200 +++ /var/tmp/diff_new_pack.HHJ9h1/_new 2024-05-27 12:03:03.677774013 +0200 @@ -1,7 +1,7 @@ # # spec file for package gource # -# Copyright (c) 2023 SUSE LLC +# Copyright (c) 2024 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -24,6 +24,8 @@ Group: Productivity/Graphics/Visualization/Graph URL: https://gource.io/ Source: https://github.com/acaudwell/Gource/releases/download/%{name}-%{version}/%{name}-%{version}.tar.gz +# PATCH-FIX-UPSTREAM +Patch0: 0001-Fix-build-with-Boost-1.85.0.patch BuildRequires: gcc-c++ BuildRequires: glew-devel BuildRequires: glm-devel >= 0.9.3 @@ -50,7 +52,7 @@ and third party (using additional steps) for CVS and SVN. %prep -%setup -q +%autosetup -p1 %build %configure \ ++++++ 0001-Fix-build-with-Boost-1.85.0.patch ++++++ >From d3b55348c152665374140280f52e429451265426 Mon Sep 17 00:00:00 2001 From: Michael Cho <[email protected]> Date: Thu, 25 Apr 2024 12:38:56 -0400 Subject: [PATCH] Fix build with Boost 1.85.0 Signed-off-by: Michael Cho <[email protected]> --- src/gource_settings.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gource_settings.cpp b/src/gource_settings.cpp index 2714259..e1ab42d 100644 --- a/src/gource_settings.cpp +++ b/src/gource_settings.cpp @@ -833,7 +833,7 @@ void GourceSettings::importGourceSettings(ConfFile& conffile, ConfSection* gourc #else dirfile = p.filename().string(); #endif - std::string file_ext = extension(p); + std::string file_ext = p.extension().string(); boost::algorithm::to_lower(file_ext); if(file_ext != ".jpg" && file_ext != ".jpeg" && file_ext != ".png") continue; -- 2.45.1
