Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package gromox for openSUSE:Factory checked in at 2026-02-23 16:12:36 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/gromox (Old) and /work/SRC/openSUSE:Factory/.gromox.new.1977 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "gromox" Mon Feb 23 16:12:36 2026 rev:56 rq:1334380 version:3.4 Changes: -------- --- /work/SRC/openSUSE:Factory/gromox/gromox.changes 2026-02-02 15:11:37.328337203 +0100 +++ /work/SRC/openSUSE:Factory/.gromox.new.1977/gromox.changes 2026-02-23 16:14:23.093875237 +0100 @@ -1,0 +2,5 @@ +Sun Feb 22 08:53:51 UTC 2026 - Jan Engelhardt <[email protected]> + +- Add gcc16.patch [boo#1258491] + +------------------------------------------------------------------- New: ---- gcc16.patch ----------(New B)---------- New: - Add gcc16.patch [boo#1258491] ----------(New E)---------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ gromox.spec ++++++ --- /var/tmp/diff_new_pack.zcdPfJ/_old 2026-02-23 16:14:23.965911141 +0100 +++ /var/tmp/diff_new_pack.zcdPfJ/_new 2026-02-23 16:14:23.969911306 +0100 @@ -28,6 +28,7 @@ Source: https://github.com/grommunio/gromox/releases/download/%name-%version/%name-%version.tar.zst Source2: https://github.com/grommunio/gromox/releases/download/%name-%version/%name-%version.tar.asc Source8: %name.keyring +Patch1: gcc16.patch BuildRequires: fdupes %if 0%{?suse_version} && 0%{?suse_version} < 1600 BuildRequires: gcc12-c++ ++++++ _scmsync.obsinfo ++++++ --- /var/tmp/diff_new_pack.zcdPfJ/_old 2026-02-23 16:14:23.997912459 +0100 +++ /var/tmp/diff_new_pack.zcdPfJ/_new 2026-02-23 16:14:24.001912623 +0100 @@ -1,5 +1,5 @@ -mtime: 1770032275 -commit: c64dea774741112473a3c34b73521e334b82d74a052125290d352cea4adaa104 +mtime: 1771799780 +commit: 4d6459304745a45e5338fc16260c68d5c63e80237b40218e5c909d91e782d661 url: https://src.opensuse.org/jengelh/gromox revision: master ++++++ build.specials.obscpio ++++++ ++++++ build.specials.obscpio ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/.gitignore new/.gitignore --- old/.gitignore 1970-01-01 01:00:00.000000000 +0100 +++ new/.gitignore 2026-02-22 23:36:30.000000000 +0100 @@ -0,0 +1 @@ +.osc ++++++ gcc16.patch ++++++ >From 110a4c51726c8b2fed18077e40cdbc7c6ba6606a Mon Sep 17 00:00:00 2001 From: Jan Engelhardt <[email protected]> Date: Sun, 22 Feb 2026 09:34:23 +0100 Subject: [PATCH] build: resolve compiler errors with gcc-16 <climits> was implicitly included via <atomic>, which changed in gcc-16 and is no longer the case. --- mda/lda.cpp | 1 + tests/exrpctest.cpp | 1 + 2 files changed, 2 insertions(+) Index: gromox-3.4/mda/lda.cpp =================================================================== --- gromox-3.4.orig/mda/lda.cpp +++ gromox-3.4/mda/lda.cpp @@ -1,6 +1,7 @@ // SPDX-License-Identifier: AGPL-3.0-or-later // SPDX-FileCopyrightText: 2025–2026 grommunio GmbH // This file is part of Gromox. +#include <climits> #include <cstdio> #include <cstdlib> #include <cstring> Index: gromox-3.4/tests/exrpctest.cpp =================================================================== --- gromox-3.4.orig/tests/exrpctest.cpp +++ gromox-3.4/tests/exrpctest.cpp @@ -1,6 +1,7 @@ // SPDX-License-Identifier: AGPL-3.0-or-later // SPDX-FileCopyrightText: 2024–2025 grommunio GmbH // This file is part of Gromox. +#include <climits> #include <cstdint> #include <cstdlib> #include <vector>
