Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package wxsvg for openSUSE:Factory checked in at 2023-04-01 19:32:26 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/wxsvg (Old) and /work/SRC/openSUSE:Factory/.wxsvg.new.9019 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "wxsvg" Sat Apr 1 19:32:26 2023 rev:11 rq:1076591 version:1.5.23 Changes: -------- --- /work/SRC/openSUSE:Factory/wxsvg/wxsvg.changes 2022-08-01 21:34:16.174322739 +0200 +++ /work/SRC/openSUSE:Factory/.wxsvg.new.9019/wxsvg.changes 2023-04-01 19:32:40.581484252 +0200 @@ -1,0 +2,6 @@ +Thu Mar 30 07:26:50 UTC 2023 - Bjørn Lie <[email protected]> + +- Add wxsvg-fix-missing-include.patch: Add a missing include. +- Modernize spec, use make_build and ldconfig_scriptlets macros. + +------------------------------------------------------------------- New: ---- wxsvg-fix-missing-include.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ wxsvg.spec ++++++ --- /var/tmp/diff_new_pack.5AGtjz/_old 2023-04-01 19:32:41.089486919 +0200 +++ /var/tmp/diff_new_pack.5AGtjz/_new 2023-04-01 19:32:41.097486961 +0200 @@ -1,7 +1,7 @@ # # spec file for package wxsvg # -# Copyright (c) 2022 SUSE LLC +# Copyright (c) 2023 SUSE LLC # Copyright (c) 2012-2019 Mariusz Fik <[email protected]> # Copyright (c) 2012 Stefan Seyfried <[email protected]> # @@ -27,6 +27,7 @@ URL: http://wxsvg.sourceforge.net/ Source: https://prdownloads.sourceforge.net/wxsvg/%{name}-%{version}.tar.bz2 Patch: ffmpeg5.patch +Patch1: wxsvg-fix-missing-include.patch BuildRequires: gcc-c++ BuildRequires: pkgconfig BuildRequires: wxGTK3-3_2-devel @@ -61,19 +62,17 @@ Include files for developing programs based on %{name}. %prep -%setup -q -%patch -p1 +%autosetup -p1 %build %configure --disable-static -make %{?_smp_mflags} +%make_build %install %make_install find %{buildroot} -type f -name "*.la" -delete -print -%post -n lib%{name}%{sover} -p /sbin/ldconfig -%postun -n lib%{name}%{sover} -p /sbin/ldconfig +%ldconfig_scriptlets -n lib%{name}%{sover} %files %doc AUTHORS ChangeLog TODO ++++++ wxsvg-fix-missing-include.patch ++++++ diff -Nur wxsvg-1.5.23-orig/src/cairo/SVGCanvasCairo.cpp wxsvg-1.5.23/src/cairo/SVGCanvasCairo.cpp --- wxsvg-1.5.23-orig/src/cairo/SVGCanvasCairo.cpp 2021-11-02 17:31:39.000000000 +0100 +++ wxsvg-1.5.23/src/cairo/SVGCanvasCairo.cpp 2023-03-30 09:22:25.077402046 +0200 @@ -14,6 +14,7 @@ #include "SVGCanvasImageCairo.h" #include <wx/log.h> #include <wx/file.h> +#include <cstdint> wxSVGCanvasCairo::~wxSVGCanvasCairo() { Destroy();
