Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package pdfmixtool for openSUSE:Factory checked in at 2023-03-02 23:03:38 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/pdfmixtool (Old) and /work/SRC/openSUSE:Factory/.pdfmixtool.new.31432 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "pdfmixtool" Thu Mar 2 23:03:38 2023 rev:6 rq:1068532 version:1.1.1 Changes: -------- --- /work/SRC/openSUSE:Factory/pdfmixtool/pdfmixtool.changes 2022-10-12 18:27:14.074025746 +0200 +++ /work/SRC/openSUSE:Factory/.pdfmixtool.new.31432/pdfmixtool.changes 2023-03-02 23:04:10.572055562 +0100 @@ -1,0 +2,7 @@ +Wed Mar 1 13:42:10 UTC 2023 - Adam Majer <adam.ma...@suse.de> + +- stop_using_obsolete_standards.patch: stop clamping to obsolete + standards like C++11 while build depenedencies now require C++17 + or later. Use compiler defaults instead. + +------------------------------------------------------------------- New: ---- stop_using_obsolete_standards.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ pdfmixtool.spec ++++++ --- /var/tmp/diff_new_pack.pwIm6c/_old 2023-03-02 23:04:11.088058140 +0100 +++ /var/tmp/diff_new_pack.pwIm6c/_new 2023-03-02 23:04:11.092058160 +0100 @@ -1,7 +1,7 @@ # # spec file for package pdfmixtool # -# Copyright (c) 2022 SUSE LLC +# Copyright (c) 2023 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,7 @@ Group: Productivity/Publishing/PDF URL: https://gitlab.com/scarpetta/pdfmixtool/ Source0: https://gitlab.com/scarpetta/pdfmixtool/-/archive/v%{version}/%{name}-v%{version}.tar.bz2 +Patch1: stop_using_obsolete_standards.patch BuildRequires: cmake BuildRequires: hicolor-icon-theme BuildRequires: pkgconfig @@ -41,7 +42,7 @@ An application to split, merge, rotate, mix and create multipage PDF files. %prep -%setup -q -n %{name}-v%{version} +%autosetup -p1 -n %{name}-v%{version} %build %cmake ++++++ stop_using_obsolete_standards.patch ++++++ Index: pdfmixtool-v1.1.1/CMakeLists.txt =================================================================== --- pdfmixtool-v1.1.1.orig/CMakeLists.txt +++ pdfmixtool-v1.1.1/CMakeLists.txt @@ -5,7 +5,6 @@ project (PDFMixTool VERSION 1.1.1) include(GNUInstallDirs) include(FindPkgConfig) -set(CMAKE_CXX_STANDARD 11) set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin) set(CMAKE_AUTOMOC ON) set(CMAKE_AUTORCC ON)