Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package commandergenius for openSUSE:Factory
checked in at 2023-03-28 17:51:24
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/commandergenius (Old)
and /work/SRC/openSUSE:Factory/.commandergenius.new.31432 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "commandergenius"
Tue Mar 28 17:51:24 2023 rev:32 rq:1074937 version:3.2.0
Changes:
--------
--- /work/SRC/openSUSE:Factory/commandergenius/commandergenius.changes
2022-12-11 17:17:05.394032771 +0100
+++
/work/SRC/openSUSE:Factory/.commandergenius.new.31432/commandergenius.changes
2023-03-28 17:51:29.479590325 +0200
@@ -1,0 +2,5 @@
+Tue Mar 28 09:18:57 UTC 2023 - Jan Engelhardt <[email protected]>
+
+- Add 0001-build-resolve-compile-error-with-gcc-13.patch
+
+-------------------------------------------------------------------
New:
----
0001-build-resolve-compile-error-with-gcc-13.patch
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ commandergenius.spec ++++++
--- /var/tmp/diff_new_pack.IHKqLn/_old 2023-03-28 17:51:30.895597157 +0200
+++ /var/tmp/diff_new_pack.IHKqLn/_new 2023-03-28 17:51:30.903597196 +0200
@@ -1,7 +1,7 @@
#
# spec file for package commandergenius
#
-# 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,7 +25,8 @@
URL: http://clonekeenplus.sf.net/
#Git-Clone: https://gitlab.com/Dringgstein/Commander-Genius
Source:
https://gitlab.com/Dringgstein/Commander-Genius/-/archive/v%version/Commander-Genius-v%version.tar.bz2
-Patch0: fix-icons.patch
+Patch1: fix-icons.patch
+Patch2: 0001-build-resolve-compile-error-with-gcc-13.patch
BuildRequires: boost-devel
BuildRequires: cmake >= 2.8
BuildRequires: fdupes
++++++ 0001-build-resolve-compile-error-with-gcc-13.patch ++++++
>From f9fb2808acfca598fe6e6963c84fe9afe5bcd89e Mon Sep 17 00:00:00 2001
From: Jan Engelhardt <[email protected]>
Date: Tue, 28 Mar 2023 10:56:06 +0200
Subject: [PATCH] build: resolve compile error with gcc-13
GsKit/base/utils/Unicode.h:16:9: error: 'uint32_t' does not name a type
GsKit/base/utils/Unicode.h:17:27: error: 'UnicodeChar' was not declared in this
scope
GsKit/base/utils/Unicode.h:17:38: error: template argument 1 is invalid
...
---
GsKit/base/utils/Unicode.h | 1 +
1 file changed, 1 insertion(+)
diff --git a/GsKit/base/utils/Unicode.h b/GsKit/base/utils/Unicode.h
index 35516a7d7..cf56b9bff 100644
--- a/GsKit/base/utils/Unicode.h
+++ b/GsKit/base/utils/Unicode.h
@@ -11,6 +11,7 @@
#ifndef __UNICODE_H__
#define __UNICODE_H__
+#include <cstdint>
#include <string>
typedef uint32_t UnicodeChar;
--
2.40.0