Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package mariadb for openSUSE:Factory checked in at 2023-03-09 17:44:45 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/mariadb (Old) and /work/SRC/openSUSE:Factory/.mariadb.new.31432 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "mariadb" Thu Mar 9 17:44:45 2023 rev:130 rq:1070141 version:10.11.2 Changes: -------- --- /work/SRC/openSUSE:Factory/mariadb/mariadb.changes 2023-03-07 16:48:57.849151920 +0100 +++ /work/SRC/openSUSE:Factory/.mariadb.new.31432/mariadb.changes 2023-03-09 17:44:50.270619794 +0100 @@ -1,0 +2,5 @@ +Wed Mar 8 10:28:23 UTC 2023 - Martin Liška <mli...@suse.cz> + +- Cherry-pick upstream changes (gcc13-fix.patch) for GCC 13. + +------------------------------------------------------------------- New: ---- gcc13-fix.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ mariadb.spec ++++++ --- /var/tmp/diff_new_pack.a0Bt7K/_old 2023-03-09 17:44:51.330625437 +0100 +++ /var/tmp/diff_new_pack.a0Bt7K/_new 2023-03-09 17:44:51.334625457 +0100 @@ -1,7 +1,7 @@ # # spec file for package mariadb # -# 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 @@ -80,6 +80,7 @@ Patch7: mariadb-10.4.12-fix-install-db.patch Patch9: func_math_tests_MDEV-26645.diff Patch10: fix-pamdir.patch +Patch11: gcc13-fix.patch # needed for bison SQL parser and wsrep API BuildRequires: bison BuildRequires: cmake @@ -365,6 +366,7 @@ %if 0%{?suse_version} > 1500 %patch10 -p1 %endif +%patch11 -p1 cp %{_sourcedir}/suse-test-run . ++++++ gcc13-fix.patch ++++++ diff --git a/storage/rocksdb/rocksdb/db/compaction/compaction_iteration_stats.h b/storage/rocksdb/rocksdb/db/compaction/compaction_iteration_stats.h index 963c1d8e..73487edd 100644 --- a/storage/rocksdb/rocksdb/db/compaction/compaction_iteration_stats.h +++ b/storage/rocksdb/rocksdb/db/compaction/compaction_iteration_stats.h @@ -5,6 +5,7 @@ #pragma once +#include <cstdint> #include "rocksdb/rocksdb_namespace.h" struct CompactionIterationStats { diff --git a/storage/rocksdb/rocksdb/env/composite_env_wrapper.h b/storage/rocksdb/rocksdb/env/composite_env_wrapper.h index fbc0b93f..e10d617b 100644 --- a/storage/rocksdb/rocksdb/env/composite_env_wrapper.h +++ b/storage/rocksdb/rocksdb/env/composite_env_wrapper.h @@ -5,6 +5,7 @@ #pragma once +#include <cstdint> #include "rocksdb/env.h" #include "rocksdb/file_system.h" diff --git a/storage/rocksdb/rocksdb/include/rocksdb/utilities/checkpoint.h b/storage/rocksdb/rocksdb/include/rocksdb/utilities/checkpoint.h index c7f93b4c..3c2ab805 100644 --- a/storage/rocksdb/rocksdb/include/rocksdb/utilities/checkpoint.h +++ b/storage/rocksdb/rocksdb/include/rocksdb/utilities/checkpoint.h @@ -8,6 +8,7 @@ #pragma once #ifndef ROCKSDB_LITE +#include <cstdint> #include <string> #include <vector> #include "rocksdb/status.h" diff --git a/storage/rocksdb/rocksdb/table/block_based/data_block_hash_index.h b/storage/rocksdb/rocksdb/table/block_based/data_block_hash_index.h index f356395f..6eaf7173 100644 --- a/storage/rocksdb/rocksdb/table/block_based/data_block_hash_index.h +++ b/storage/rocksdb/rocksdb/table/block_based/data_block_hash_index.h @@ -7,6 +7,7 @@ #include <string> #include <vector> +#include <cstdint> #include "rocksdb/slice.h" diff --git a/storage/rocksdb/rocksdb/util/string_util.h b/storage/rocksdb/rocksdb/util/string_util.h index a761be66..2e57eda2 100644 --- a/storage/rocksdb/rocksdb/util/string_util.h +++ b/storage/rocksdb/rocksdb/util/string_util.h @@ -10,6 +10,7 @@ #include <string> #include <unordered_map> #include <vector> +#include <cstdint> #include "rocksdb/rocksdb_namespace.h" diff --git a/tpool/aio_linux.cc b/tpool/aio_linux.cc index 5d01c588..90888622 100644 --- a/tpool/aio_linux.cc +++ b/tpool/aio_linux.cc @@ -20,6 +20,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111 - 1301 USA*/ # include <atomic> # include <libaio.h> # include <sys/syscall.h> +# include <cstdio> /** Invoke the io_getevents() system call, without timeout parameter.