Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package herbstluftwm for openSUSE:Factory checked in at 2026-03-10 17:58:03 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/herbstluftwm (Old) and /work/SRC/openSUSE:Factory/.herbstluftwm.new.8177 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "herbstluftwm" Tue Mar 10 17:58:03 2026 rev:16 rq:1337969 version:0.9.5 Changes: -------- --- /work/SRC/openSUSE:Factory/herbstluftwm/herbstluftwm.changes 2023-10-12 11:42:38.002167147 +0200 +++ /work/SRC/openSUSE:Factory/.herbstluftwm.new.8177/herbstluftwm.changes 2026-03-10 18:49:43.691146724 +0100 @@ -1,0 +2,6 @@ +Fri Mar 6 15:00:53 UTC 2026 - Marc-Elias Travitzky <[email protected]> + +- Add fix-import.patch + This patch adds a missing import of cstdint + +------------------------------------------------------------------- New: ---- fix-import.patch ----------(New B)---------- New: - Add fix-import.patch This patch adds a missing import of cstdint ----------(New E)---------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ herbstluftwm.spec ++++++ --- /var/tmp/diff_new_pack.2oRkTA/_old 2026-03-10 18:49:45.771232204 +0100 +++ /var/tmp/diff_new_pack.2oRkTA/_new 2026-03-10 18:49:45.783232697 +0100 @@ -1,7 +1,7 @@ # # spec file for package herbstluftwm # -# Copyright (c) 2023 SUSE LLC +# Copyright (c) 2026 SUSE LLC and contributors # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -26,6 +26,7 @@ Source0: https://herbstluftwm.org/tarballs/%{name}-%{version}.tar.gz Source1: https://herbstluftwm.org/tarballs/%{name}-%{version}.tar.gz.sig Source2: %{name}.desktop +Patch1: fix-import.patch BuildRequires: asciidoc BuildRequires: cmake >= 3.1 BuildRequires: freetype2-devel @@ -96,7 +97,7 @@ an idea of what is possible. %prep -%setup -q +%autosetup -p1 # fix errors about improper shebangs due to /usr/bin/env find . -type f -exec sed -i "s/#!\/usr\/bin\/env bash/#!\/usr\/bin\/bash/" {} + ++++++ fix-import.patch ++++++ Index: herbstluftwm-0.9.5/src/xconnection.cpp =================================================================== --- herbstluftwm-0.9.5.orig/src/xconnection.cpp +++ herbstluftwm-0.9.5/src/xconnection.cpp @@ -10,6 +10,7 @@ #include <climits> #include <cstring> #include <iostream> +#include <cstdint> #include "globals.h"
