Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package vkmark for openSUSE:Factory checked in at 2023-03-28 17:50:32 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/vkmark (Old) and /work/SRC/openSUSE:Factory/.vkmark.new.31432 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "vkmark" Tue Mar 28 17:50:32 2023 rev:13 rq:1074841 version:2017.08+git.20220909 Changes: -------- --- /work/SRC/openSUSE:Factory/vkmark/vkmark.changes 2023-02-07 18:49:46.087351939 +0100 +++ /work/SRC/openSUSE:Factory/.vkmark.new.31432/vkmark.changes 2023-03-28 17:50:35.435329565 +0200 @@ -1,0 +2,6 @@ +Tue Mar 28 00:53:01 UTC 2023 - malcolmle...@opensuse.org + +- Add vkmark-cstdint-include.patch: Add missing cstdint include in + scene.h, (gh#vkmark/vkmark#51). + +------------------------------------------------------------------- New: ---- vkmark-cstdint-include.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ vkmark.spec ++++++ --- /var/tmp/diff_new_pack.xmm4gl/_old 2023-03-28 17:50:35.991332247 +0200 +++ /var/tmp/diff_new_pack.xmm4gl/_new 2023-03-28 17:50:35.995332267 +0200 @@ -24,6 +24,8 @@ License: LGPL-2.1-or-later URL: https://github.com/vkmark/vkmark Source0: %{name}-%{version}.tar.xz +#PATCH-FIX-UPSTREAM vkmark-cstdint-include.patch gh#vkmark/vkmark#51 malcolmle...@opensuse.org Add missing cstdint include in scene.h. +Patch0: vkmark-cstdint-include.patch BuildRequires: gcc-c++ BuildRequires: glm-devel BuildRequires: meson >= 0.45 @@ -41,7 +43,7 @@ An extensible Vulkan benchmarking suite with targeted, configurable scenes. %prep -%autosetup +%autosetup -p1 %build %meson ++++++ vkmark-cstdint-include.patch ++++++ diff -Naur a/src/scene.h b/src/scene.h --- a/src/scene.h 2022-09-09 06:29:28.000000000 -0500 +++ b/src/scene.h 2023-03-27 19:37:12.627735253 -0500 @@ -25,6 +25,7 @@ #include <string> #include <vector> #include <unordered_map> +#include <cstdint> class SceneOption {