Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package wt for openSUSE:Factory checked in at 2021-06-16 20:34:41 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/wt (Old) and /work/SRC/openSUSE:Factory/.wt.new.32437 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "wt" Wed Jun 16 20:34:41 2021 rev:40 rq:900199 version:4.5.0 Changes: -------- --- /work/SRC/openSUSE:Factory/wt/wt.changes 2020-12-11 20:17:00.244666807 +0100 +++ /work/SRC/openSUSE:Factory/.wt.new.32437/wt.changes 2021-06-16 20:36:30.527290950 +0200 @@ -1,0 +2,11 @@ +Tue Jun 15 15:31:02 UTC 2021 - Christophe Giboudeaux <christo...@krop.fr> + +- Update to 4.5.0. Notable changes: + * Wt now targets C++14 + * Wt::Dbo: the Firebird backend has been marked as unmaintained + See https://webtoolkit.eu/wt/doc/reference/html/Releasenotes.html + for other changes. +- Add upstream patch: + * 0001-WT-8467-add-limits-header-for-gcc-11.patch + +------------------------------------------------------------------- Old: ---- 4.4.0.tar.gz New: ---- 0001-WT-8467-add-limits-header-for-gcc-11.patch wt-4.5.0.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ wt.spec ++++++ --- /var/tmp/diff_new_pack.9sIaVo/_old 2021-06-16 20:36:30.959291688 +0200 +++ /var/tmp/diff_new_pack.9sIaVo/_new 2021-06-16 20:36:30.963291694 +0200 @@ -1,7 +1,7 @@ # # spec file for package wt # -# Copyright (c) 2020 SUSE LLC +# Copyright (c) 2021 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -18,17 +18,17 @@ %define WTSRVDIR /srv/wt %define WTRUNDIR %{WTSRVDIR}/run -%define so_version 4_4_0 +%define so_version 4_5_0 Name: wt -Version: 4.4.0 +Version: 4.5.0 Release: 0 -# -# Summary: Web Toolkit License: GPL-2.0-only Group: Development/Libraries/C and C++ URL: https://www.webtoolkit.eu/wt/ -Source0: https://github.com/kdeforche/wt/archive/%{version}.tar.gz +Source0: https://github.com/emweb/wt/archive/refs/tags/%{version}.tar.gz#/%{name}-%{version}.tar.gz +# PATCH-FIX-UPSTREAM +Patch0: 0001-WT-8467-add-limits-header-for-gcc-11.patch BuildRequires: FastCGI-devel BuildRequires: GraphicsMagick-devel BuildRequires: Mesa-devel @@ -125,13 +125,12 @@ code. %prep -%setup -q +%autosetup -p1 %build %cmake \ -DENABLE_FIREBIRD=OFF \ -DENABLE_QT4=OFF \ - -DUSE_SYSTEM_IBPP=ON \ -DSHARED_LIBS=ON \ -DMULTI_THREADED=ON \ -DUSE_SYSTEM_SQLITE3=ON \ @@ -142,25 +141,24 @@ -DWEBGROUP="%{apache_group}" -DWEBUSER="%{apache_user}" \ -DRUNDIR="%{WTRUNDIR}" \ -DBUILD_EXAMPLES=ON \ - -DENABLE_GM=ON \ -DWT_WRASTERIMAGE_IMPLEMENTATION=GraphicsMagick \ -DENABLE_POSTGRES=ON \ -DWT_WITH_SSL=ON \ -DHTTP_WITH_ZLIB=ON -make V=1 %{?_smp_mflags} +%cmake_build %install %cmake_install -mkdir -p %{buildroot}/%{_docdir}/%{name} -mkdir -p %{buildroot}/%{WTSRVDIR} -mkdir -p %{buildroot}/%{WTRUNDIR} -mkdir %{buildroot}/%{_docdir}/%{name}-devel/ -cp -rv doc/* %{buildroot}/%{_docdir}/%{name}-devel/ -mv -v %{buildroot}/%{_datadir}/Wt %{buildroot}/%{_datadir}/wt +mkdir -p %{buildroot}%{_docdir}/%{name} +mkdir -p %{buildroot}%{WTSRVDIR} +mkdir -p %{buildroot}%{WTRUNDIR} +mkdir %{buildroot}%{_docdir}/%{name}-devel/ +cp -rv doc/* %{buildroot}%{_docdir}/%{name}-devel/ +mv -v %{buildroot}%{_datadir}/Wt %{buildroot}%{_datadir}/wt # Remove shell scripts used for generating some images. -rm %{buildroot}/%{_datadir}/wt/resources/themes/*/*/generate.sh +rm %{buildroot}%{_datadir}/wt/resources/themes/*/*/generate.sh %fdupes %{buildroot}/%{_docdir} %fdupes %{buildroot}/%{_datadir} ++++++ 0001-WT-8467-add-limits-header-for-gcc-11.patch ++++++ >From 1c0868851e523970d660473b858cbb3a8f637d13 Mon Sep 17 00:00:00 2001 From: Korneel Dumon <korn...@emweb.be> Date: Thu, 6 May 2021 13:32:51 +0200 Subject: [PATCH] WT-8467: add limits-header for gcc 11 --- src/Wt/Render/WTextRenderer.C | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Wt/Render/WTextRenderer.C b/src/Wt/Render/WTextRenderer.C index 98f5085..ce930db 100644 --- a/src/Wt/Render/WTextRenderer.C +++ b/src/Wt/Render/WTextRenderer.C @@ -14,6 +14,7 @@ #include "Block.h" #include <fstream> +#include <limits> #include <string> namespace { -- 2.32.0