Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package lxqt-build-tools for openSUSE:Factory checked in at 2023-02-14 16:47:40 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/lxqt-build-tools (Old) and /work/SRC/openSUSE:Factory/.lxqt-build-tools.new.27156 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "lxqt-build-tools" Tue Feb 14 16:47:40 2023 rev:14 rq:1065746 version:0.12.0 Changes: -------- --- /work/SRC/openSUSE:Factory/lxqt-build-tools/lxqt-build-tools.changes 2022-11-06 12:43:22.281800655 +0100 +++ /work/SRC/openSUSE:Factory/.lxqt-build-tools.new.27156/lxqt-build-tools.changes 2023-02-14 16:48:19.191469127 +0100 @@ -1,0 +2,7 @@ +Tue Feb 14 12:41:31 UTC 2023 - Michael Vetter <mvet...@suse.com> + +- boo#1208217: Bump required C++ version + See also: gh/lxqt/lxqt-config#903 + Add lxqt-build-tools-0.12.0-cpp17.patch + +------------------------------------------------------------------- New: ---- lxqt-build-tools-0.12.0-cpp17.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ lxqt-build-tools.spec ++++++ --- /var/tmp/diff_new_pack.kAZovO/_old 2023-02-14 16:48:19.723472267 +0100 +++ /var/tmp/diff_new_pack.kAZovO/_new 2023-02-14 16:48:19.723472267 +0100 @@ -1,7 +1,7 @@ # # spec file for package lxqt-build-tools # -# 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 @@ -25,6 +25,7 @@ URL: http://www.lxqt.org Source: https://github.com/lxqt/%{name}/releases/download/%{version}/%{name}-%{version}.tar.xz Source1: https://github.com/lxqt/%{name}/releases/download/%{version}/%{name}-%{version}.tar.xz.asc +Patch0: https://github.com/lxqt/lxqt-build-tools/commit/4a3a7038b1927dc43942a930db103023efdcbe2c.patch#/lxqt-build-tools-0.12.0-cpp17.patch BuildRequires: cmake >= 3.1.0 BuildRequires: pkgconfig BuildRequires: pkgconfig(Qt5Core) >= 5.15 @@ -47,6 +48,7 @@ %prep %setup -q +%patch0 -p1 %build %cmake -DPULL_TRANSLATIONS=No ++++++ lxqt-build-tools-0.12.0-cpp17.patch ++++++ >From 4a3a7038b1927dc43942a930db103023efdcbe2c Mon Sep 17 00:00:00 2001 From: Simon Quigley <si...@tsimonq2.net> Date: Wed, 25 Jan 2023 09:39:41 -0600 Subject: [PATCH] Bump the minimum compatibility level to C++17. --- cmake/modules/LXQtCompilerSettings.cmake | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmake/modules/LXQtCompilerSettings.cmake b/cmake/modules/LXQtCompilerSettings.cmake index a8cb16d..acba891 100644 --- a/cmake/modules/LXQtCompilerSettings.cmake +++ b/cmake/modules/LXQtCompilerSettings.cmake @@ -181,11 +181,11 @@ endif() #----------------------------------------------------------------------------- -# CXX14 requirements - no checks, we just set it +# CXX17 requirements - no checks, we just set it #----------------------------------------------------------------------------- set(CMAKE_CXX_STANDARD_REQUIRED True) set(CMAKE_CXX_EXTENSIONS OFF) -set(CMAKE_CXX_STANDARD 14 CACHE STRING "C++ ISO Standard") +set(CMAKE_CXX_STANDARD 17 CACHE STRING "C++ ISO Standard") #-----------------------------------------------------------------------------