Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package ogre for openSUSE:Factory checked in at 2021-01-18 11:29:30 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/ogre (Old) and /work/SRC/openSUSE:Factory/.ogre.new.28504 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "ogre" Mon Jan 18 11:29:30 2021 rev:5 rq:863882 version:1.9.0 Changes: -------- --- /work/SRC/openSUSE:Factory/ogre/ogre.changes 2020-07-29 17:36:27.177403574 +0200 +++ /work/SRC/openSUSE:Factory/.ogre.new.28504/ogre.changes 2021-01-18 11:33:38.456967376 +0100 @@ -1,0 +2,5 @@ +Mon Jan 11 17:19:19 UTC 2021 - Andreas Schwab <sch...@suse.de> + +- riscv64-architecture.patch: add riscv64 as 64bit architecture + +------------------------------------------------------------------- New: ---- riscv64-architecture.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ ogre.spec ++++++ --- /var/tmp/diff_new_pack.n3UxQm/_old 2021-01-18 11:33:39.832969802 +0100 +++ /var/tmp/diff_new_pack.n3UxQm/_new 2021-01-18 11:33:39.836969809 +0100 @@ -1,7 +1,7 @@ # # spec file for package ogre # -# Copyright (c) 2020 SUSE LLC +# Copyright (c) 2021 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -39,6 +39,8 @@ Patch4: fix-template-function.patch # Patch-FIX-UPSTREAM fix-aarch64-detection.patch Patch5: fix-aarch64-detection.patch +# PATCH-FIX-UPSTREAM add riscv64 as 64bit architecture +Patch6: riscv64-architecture.patch BuildRequires: cmake BuildRequires: doxygen BuildRequires: fdupes @@ -396,6 +398,7 @@ %patch3 -p1 %patch4 -p1 %patch5 -p1 +%patch6 -p1 # Be sure we use system tinyxml rm Tools/XMLConverter/src/tiny* rm Tools/XMLConverter/include/tiny* ++++++ riscv64-architecture.patch ++++++ >From 68a33a736305a4ec20bd41b19311782e4d5616b1 Mon Sep 17 00:00:00 2001 From: Simon Schmeisser <s.schmeis...@gmx.net> Date: Fri, 10 Apr 2020 21:04:22 +0200 Subject: [PATCH] add riscv64 as 64bit architecture patch by Manuel A. Fernandez Montecelo in Debian --- OgreMain/include/OgrePlatform.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OgreMain/include/OgrePlatform.h b/OgreMain/include/OgrePlatform.h index 50e396eba..00653899a 100644 --- a/OgreMain/include/OgrePlatform.h +++ b/OgreMain/include/OgrePlatform.h @@ -160,7 +160,7 @@ namespace Ogre { #endif /* Find the arch type */ -#if defined(__x86_64__) || defined(_M_X64) || defined(__powerpc64__) || defined(__alpha__) || defined(__ia64__) || defined(__s390__) || defined(__s390x__) || defined(__arm64__) || defined(__aarch64__) || defined(__mips64) || defined(__mips64_) +#if defined(__x86_64__) || defined(_M_X64) || defined(_M_AMD64) || defined(_M_ARM64) || defined(__powerpc64__) || defined(__alpha__) || defined(__ia64__) || defined(__s390__) || defined(__s390x__) || defined(__arm64__) || defined(__aarch64__) || defined(__mips64) || defined(__mips64_) || (defined(__riscv) && (__riscv_xlen == 64)) # define OGRE_ARCH_TYPE OGRE_ARCHITECTURE_64 #else # define OGRE_ARCH_TYPE OGRE_ARCHITECTURE_32 -- 2.30.0