Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package draco for openSUSE:Factory checked in at 2025-08-04 15:25:20 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/draco (Old) and /work/SRC/openSUSE:Factory/.draco.new.1085 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "draco" Mon Aug 4 15:25:20 2025 rev:3 rq:1297395 version:1.5.7 Changes: -------- --- /work/SRC/openSUSE:Factory/draco/draco.changes 2024-08-21 23:26:02.153636483 +0200 +++ /work/SRC/openSUSE:Factory/.draco.new.1085/draco.changes 2025-08-04 15:26:25.338025028 +0200 @@ -1,0 +2,6 @@ +Sat Aug 2 19:34:44 UTC 2025 - Christoph G <f...@grueninger.de> + +- Fix missing include required by GCC 155 by adding + draco-gcc15.patch from https://github.com/google/draco/pull/1113 + +------------------------------------------------------------------- New: ---- draco-gcc15.patch ----------(New B)---------- New:- Fix missing include required by GCC 155 by adding draco-gcc15.patch from https://github.com/google/draco/pull/1113 ----------(New E)---------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ draco.spec ++++++ --- /var/tmp/diff_new_pack.VzcqMA/_old 2025-08-04 15:26:26.210061659 +0200 +++ /var/tmp/diff_new_pack.VzcqMA/_new 2025-08-04 15:26:26.210061659 +0200 @@ -1,7 +1,7 @@ # # spec file for package draco # -# Copyright (c) 2024 SUSE LLC +# Copyright (c) 2025 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -28,6 +28,8 @@ URL: https://google.github.io/draco Source0: https://github.com/google/%{name}/archive/refs/tags/%{version}.tar.gz#/%{name}-%{version}.tar.gz Source1: https://github.com/google/googletest/archive/%{commit}.zip#/googletest-%{commit}.zip +# https://github.com/google/draco/pull/1113 +Patch0: draco-gcc15.patch BuildRequires: cmake >= 3.12 BuildRequires: gcc-c++ BuildRequires: help2man ++++++ draco-gcc15.patch ++++++ >From 0dae510393b2b3cf410619f87f2a00ad63837145 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christoph=20Gr=C3=BCninger?= <f...@grueninger.de> Date: Sat, 2 Aug 2025 21:18:48 +0200 Subject: [PATCH] Add include as GCC 15 is more strict --- src/draco/compression/attributes/point_d_vector.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/draco/compression/attributes/point_d_vector.h b/src/draco/compression/attributes/point_d_vector.h index 6ceb454..85c47ca 100644 --- a/src/draco/compression/attributes/point_d_vector.h +++ b/src/draco/compression/attributes/point_d_vector.h @@ -17,6 +17,7 @@ #define DRACO_COMPRESSION_ATTRIBUTES_POINT_D_VECTOR_H_ #include <cstddef> +#include <cstdint> #include <cstring> #include <iterator> #include <memory> -- 2.50.1