Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package bstone for openSUSE:Factory checked 
in at 2023-04-12 12:51:27
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/bstone (Old)
 and      /work/SRC/openSUSE:Factory/.bstone.new.19717 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "bstone"

Wed Apr 12 12:51:27 2023 rev:14 rq:1078502 version:1.2.12

Changes:
--------
--- /work/SRC/openSUSE:Factory/bstone/bstone.changes    2022-09-22 
18:21:15.537846578 +0200
+++ /work/SRC/openSUSE:Factory/.bstone.new.19717/bstone.changes 2023-04-12 
12:51:28.304886882 +0200
@@ -1,0 +2,6 @@
+Sun Apr  9 14:58:34 UTC 2023 - Martin Hauke <mar...@gmx.de>
+
+- Add patch:
+  * bstone-fix-build-with-gcc13.patch
+
+-------------------------------------------------------------------

New:
----
  bstone-fix-build-with-gcc13.patch

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ bstone.spec ++++++
--- /var/tmp/diff_new_pack.wztvet/_old  2023-04-12 12:51:28.828889944 +0200
+++ /var/tmp/diff_new_pack.wztvet/_new  2023-04-12 12:51:28.836889990 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package bstone
 #
-# Copyright (c) 2022 SUSE LLC
+# Copyright (c) 2023 SUSE LLC
 # Copyright (c) 2019-2022, Martin Hauke <mar...@gmx.de>
 #
 # All modifications and additions to the file contributed by third parties
@@ -26,6 +26,7 @@
 Group:          Amusements/Games/3D/Shoot
 URL:            https://bibendovsky.github.io/bstone/
 Source:         
https://github.com/bibendovsky/bstone/archive/v%{version}.tar.gz#/%{name}-%{version}.tar.gz
+Patch0:         bstone-fix-build-with-gcc13.patch
 BuildRequires:  cmake
 BuildRequires:  gcc-c++
 BuildRequires:  pkgconfig
@@ -49,6 +50,7 @@
 
 %prep
 %setup -q
+%patch0 -p1
 
 %build
 %cmake

++++++ bstone-fix-build-with-gcc13.patch ++++++
diff --git a/src/bstone_binary_reader.cpp b/src/bstone_binary_reader.cpp
index a144997..870ea7d 100644
--- a/src/bstone_binary_reader.cpp
+++ b/src/bstone_binary_reader.cpp
@@ -5,6 +5,7 @@ Copyright (c) 2013-2022 Boris I. Bendovsky 
(bibendov...@hotmail.com)
 SPDX-License-Identifier: GPL-2.0-or-later
 */
 
+#include <cstdint>
 #include <utility>
 #include "bstone_binary_reader.h"
 #include "bstone_endian.h"
diff --git a/src/bstone_binary_writer.h b/src/bstone_binary_writer.h
index f72f98c..5b24493 100644
--- a/src/bstone_binary_writer.h
+++ b/src/bstone_binary_writer.h
@@ -8,6 +8,7 @@ SPDX-License-Identifier: GPL-2.0-or-later
 #ifndef BSTONE_BINARY_WRITER_INCLUDED
 #define BSTONE_BINARY_WRITER_INCLUDED
 
+#include <cstdint>
 #include "bstone_stream.h"
 
 namespace bstone
diff --git a/src/bstone_cl_args.cpp b/src/bstone_cl_args.cpp
index 4002a23..c8f9600 100644
--- a/src/bstone_cl_args.cpp
+++ b/src/bstone_cl_args.cpp
@@ -10,6 +10,7 @@ SPDX-License-Identifier: GPL-2.0-or-later
 
 #include "bstone_string_helper.h"
 
+#include <cstdint>
 
 namespace bstone
 {
diff --git a/src/bstone_memory_stream.h b/src/bstone_memory_stream.h
index 11b7205..90440d9 100644
--- a/src/bstone_memory_stream.h
+++ b/src/bstone_memory_stream.h
@@ -12,6 +12,7 @@ SPDX-License-Identifier: GPL-2.0-or-later
 #ifndef BSTONE_MEMORY_STREAM_INCLUDED
 #define BSTONE_MEMORY_STREAM_INCLUDED
 
+#include <cstdint>
 #include <vector>
 #include "bstone_stream.h"
 #include "bstone_un_value.h"
diff --git a/src/bstone_ren_3d_shader_var.h b/src/bstone_ren_3d_shader_var.h
index ce2c38b..dd486d9 100644
--- a/src/bstone_ren_3d_shader_var.h
+++ b/src/bstone_ren_3d_shader_var.h
@@ -14,7 +14,7 @@ SPDX-License-Identifier: GPL-2.0-or-later
 #ifndef BSTONE_REN_3D_SHADER_VAR_INCLUDED
 #define BSTONE_REN_3D_SHADER_VAR_INCLUDED
 
-
+#include <cstdint>
 #include <memory>
 #include <string>
 
diff --git a/src/bstone_string_helper.h b/src/bstone_string_helper.h
index d2df6e2..1796c57 100644
--- a/src/bstone_string_helper.h
+++ b/src/bstone_string_helper.h
@@ -11,6 +11,7 @@ SPDX-License-Identifier: GPL-2.0-or-later
 
 
 #include <string>
+#include <cstdint>
 
 
 namespace bstone
diff --git a/src/id_heads.h b/src/id_heads.h
index 1a3dc44..e330cec 100644
--- a/src/id_heads.h
+++ b/src/id_heads.h
@@ -11,6 +11,7 @@ SPDX-License-Identifier: GPL-2.0-or-later
 
 
 #include <array>
+#include <cstdint>
 
 
 #include "bstone_cl_args.h"

Reply via email to