Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package vkmark for openSUSE:Factory checked in at 2022-09-13 15:09:47 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/vkmark (Old) and /work/SRC/openSUSE:Factory/.vkmark.new.2083 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "vkmark" Tue Sep 13 15:09:47 2022 rev:10 rq:1003111 version:2017.08+git.20220516 Changes: -------- --- /work/SRC/openSUSE:Factory/vkmark/vkmark.changes 2022-06-30 13:18:44.129550170 +0200 +++ /work/SRC/openSUSE:Factory/.vkmark.new.2083/vkmark.changes 2022-09-13 15:11:16.484961129 +0200 @@ -1,0 +2,6 @@ +Fri Sep 9 02:29:34 UTC 2022 - malcolmle...@opensuse.org + +- Add vkmark-fix-missing-include.patch: Add missing memory include + to fix building. + +------------------------------------------------------------------- New: ---- vkmark-fix-missing-include.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ vkmark.spec ++++++ --- /var/tmp/diff_new_pack.1YAapO/_old 2022-09-13 15:11:16.920962357 +0200 +++ /var/tmp/diff_new_pack.1YAapO/_new 2022-09-13 15:11:16.924962368 +0200 @@ -2,7 +2,7 @@ # spec file for package vkmark # # Copyright (c) 2022 SUSE LLC -# Copyright (c) 2018-2019 Malcolm J Lewis <malcolmle...@opensuse.org> +# Copyright (c) 2018-2022 Malcolm J Lewis <malcolmle...@opensuse.org> # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -24,6 +24,8 @@ License: LGPL-2.1-or-later URL: https://github.com/vkmark/vkmark Source0: %{name}-%{version}.tar.xz +#PATCH-FIX-OPENSUSE vkmark-fix-missing-include.patch malcolmle...@opensuse.org -- Add missing memory include to fix building +Patch0: vkmark-fix-missing-include.patch BuildRequires: gcc-c++ BuildRequires: glm-devel BuildRequires: meson >= 0.45 @@ -44,7 +46,7 @@ An extensible Vulkan benchmarking suite with targeted, configurable scenes. %prep -%autosetup +%autosetup -p1 %build %meson ++++++ vkmark-fix-missing-include.patch ++++++ diff -Nuar a/src/scenes/clear_scene.h b/src/scenes/clear_scene.h --- a/src/scenes/clear_scene.h 2022-05-16 06:07:03.000000000 -0500 +++ b/src/scenes/clear_scene.h 2022-09-08 19:58:27.886194974 -0500 @@ -26,6 +26,7 @@ #include "managed_resource.h" #include <vulkan/vulkan.hpp> +#include <memory> class ClearScene : public Scene { diff -Nuar a/src/scenes/cube_scene.h b/src/scenes/cube_scene.h --- a/src/scenes/cube_scene.h 2022-05-16 06:07:03.000000000 -0500 +++ b/src/scenes/cube_scene.h 2022-09-08 21:28:27.850891178 -0500 @@ -28,6 +28,7 @@ #define GLM_FORCE_DEPTH_ZERO_TO_ONE #include <glm/glm.hpp> #include <vulkan/vulkan.hpp> +#include <memory> class Mesh; diff -Nuar a/src/scenes/shading_scene.h b/src/scenes/shading_scene.h --- a/src/scenes/shading_scene.h 2022-05-16 06:07:03.000000000 -0500 +++ b/src/scenes/shading_scene.h 2022-09-08 21:25:04.926605452 -0500 @@ -28,6 +28,7 @@ #define GLM_FORCE_DEPTH_ZERO_TO_ONE #include <glm/glm.hpp> #include <vulkan/vulkan.hpp> +#include <memory> class Mesh; diff -Nuar a/src/scenes/texture_scene.h b/src/scenes/texture_scene.h --- a/src/scenes/texture_scene.h 2022-05-16 06:07:03.000000000 -0500 +++ b/src/scenes/texture_scene.h 2022-09-08 21:27:43.270815188 -0500 @@ -29,6 +29,7 @@ #define GLM_FORCE_DEPTH_ZERO_TO_ONE #include <glm/glm.hpp> #include <vulkan/vulkan.hpp> +#include <memory> class Mesh; diff -Nuar a/src/scenes/vertex_scene.h b/src/scenes/vertex_scene.h --- a/src/scenes/vertex_scene.h 2022-05-16 06:07:03.000000000 -0500 +++ b/src/scenes/vertex_scene.h 2022-09-08 21:26:03.666702531 -0500 @@ -28,6 +28,7 @@ #define GLM_FORCE_DEPTH_ZERO_TO_ONE #include <glm/glm.hpp> #include <vulkan/vulkan.hpp> +#include <memory> class Mesh; diff -Nuar a/src/ws/swapchain_window_system.h b/src/ws/swapchain_window_system.h --- a/src/ws/swapchain_window_system.h 2022-05-16 06:07:03.000000000 -0500 +++ b/src/ws/swapchain_window_system.h 2022-09-08 21:22:49.954381004 -0500 @@ -27,6 +27,7 @@ #include "managed_resource.h" #include <vulkan/vulkan.hpp> +#include <memory> class NativeSystem;