Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package doxygen for openSUSE:Factory checked in at 2022-07-07 12:56:23 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/doxygen (Old) and /work/SRC/openSUSE:Factory/.doxygen.new.1523 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "doxygen" Thu Jul 7 12:56:23 2022 rev:87 rq:987157 version:1.9.4 Changes: -------- --- /work/SRC/openSUSE:Factory/doxygen/doxygen.changes 2022-02-17 00:30:00.261438742 +0100 +++ /work/SRC/openSUSE:Factory/.doxygen.new.1523/doxygen.changes 2022-07-07 12:56:36.999256491 +0200 @@ -1,0 +2,21 @@ +Mon Jun 27 11:12:51 UTC 2022 - Christophe Giboudeaux <christo...@krop.fr> + +- Update to 1.9.4. Check https://doxygen.nl/manual/changelog.html + for the complete changelog. + New features: + * Add CINDEX_NO_EXPORTS option when linking against static + libclang + * Introduce CREATE_SUBDIRS_LEVEL + * Add for the xml output also xml to the markdown image + representation. + * Adding Qt6 support + * Update Bulgarian translation + * Better translation for trPackageMembers + * Refer to chapter Grouping with GROUP_GRAPHS + * HTMLHELP warning on using svg as image format for graphs + * mention doxygen debugging flags on the web + * mention how to get additional usage flags +- Add patch to fix build with GCC 12: + * doxygen-gcc12.patch + +------------------------------------------------------------------- Old: ---- doxygen-1.9.3.src.tar.gz New: ---- doxygen-1.9.4.src.tar.gz doxygen-gcc12.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ doxygen.spec ++++++ --- /var/tmp/diff_new_pack.UJQdAd/_old 2022-07-07 12:56:37.711257551 +0200 +++ /var/tmp/diff_new_pack.UJQdAd/_new 2022-07-07 12:56:37.715257557 +0200 @@ -22,7 +22,7 @@ %endif Name: doxygen -Version: 1.9.3 +Version: 1.9.4 Release: 0 Summary: Automated C, C++, and Java Documentation Generator # qtools are used for building and they are GPL-3.0 licensed @@ -34,6 +34,9 @@ Patch0: %{name}-modify_footer.patch # suse specific Patch1: %{name}-no-lowercase-man-names.patch +# PATCH-FIX-UPSTREAM +Patch2: doxygen-gcc12.patch +# The unified libclang-cpp library doesn't exist on older Leap / SLE Patch10: doxygen-no-libclang-cpp.patch BuildRequires: bison BuildRequires: cmake >= 2.8.12 @@ -62,8 +65,10 @@ %prep %setup -q +# Leap 15 and SLE don't accept '%%autopatch -M' %patch0 -p1 %patch1 -p1 +%patch2 -p1 %if %{with libclang} %if 0%{?sle_version} == 150100 || (0%{?sle_version} == 150200 && !0%{?is_opensuse}) %patch10 -p1 ++++++ doxywizard.spec ++++++ --- /var/tmp/diff_new_pack.UJQdAd/_old 2022-07-07 12:56:37.735257587 +0200 +++ /var/tmp/diff_new_pack.UJQdAd/_new 2022-07-07 12:56:37.739257592 +0200 @@ -17,7 +17,7 @@ Name: doxywizard -Version: 1.9.3 +Version: 1.9.4 Release: 0 Summary: Graphical User Interface for Doxygen # qtools are used for building and they are GPL-3.0 licensed @@ -26,6 +26,8 @@ URL: https://www.doxygen.nl/ Source: https://www.doxygen.nl/files/doxygen-%{version}.src.tar.gz Source1: doxywizard.desktop +# PATCH-FIX-UPSTREAM +Patch0: doxygen-gcc12.patch BuildRequires: bison BuildRequires: cmake >= 2.8.12 BuildRequires: flex @@ -55,7 +57,7 @@ configuration files. %prep -%setup -q -n doxygen-%{version} +%autosetup -p1 -n doxygen-%{version} %build %cmake \ ++++++ doxygen-1.9.3.src.tar.gz -> doxygen-1.9.4.src.tar.gz ++++++ ++++ 77773 lines of diff (skipped) ++++++ doxygen-gcc12.patch ++++++ >From 5198966c8d5fec89116d025c74934ac03ea511fa Mon Sep 17 00:00:00 2001 From: Dimitri van Heesch <doxy...@gmail.com> Date: Fri, 6 May 2022 09:55:16 +0200 Subject: [PATCH] issue #9312: Build: cache.h:53:14: error: 'exchange' is not a member of 'std' --- src/cache.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/cache.h b/src/cache.h index 0ff3092ed5..e218eb27d2 100644 --- a/src/cache.h +++ b/src/cache.h @@ -19,6 +19,7 @@ #include <list> #include <unordered_map> #include <mutex> +#include <utility> #include <ctype.h> /*! Fixed size cache for value type V using keys of type K.