commit openarena for openSUSE:Factory

2020-01-15 Thread root
Hello community,

here is the log from the commit of package openarena for openSUSE:Factory 
checked in at 2020-01-15 16:16:37

Comparing /work/SRC/openSUSE:Factory/openarena (Old)
 and  /work/SRC/openSUSE:Factory/.openarena.new.30080 (New)


Package is "openarena"

Wed Jan 15 16:16:37 2020 rev:4 rq:764566 version:0.8.8

Changes:

--- /work/SRC/openSUSE:Factory/openarena/openarena.changes  2018-04-02 
22:49:27.429343315 +0200
+++ /work/SRC/openSUSE:Factory/.openarena.new.30080/openarena.changes   
2020-01-15 16:42:52.205110586 +0100
@@ -1,0 +2,5 @@
+Wed Jan 15 09:01:33 UTC 2020 - Dirk Stoecker 
+
+- Drop i586 build (does not build with assembler errors)
+
+---



Other differences:
--
++ openarena.spec ++
--- /var/tmp/diff_new_pack.TfsyYu/_old  2020-01-15 16:42:52.637110741 +0100
+++ /var/tmp/diff_new_pack.TfsyYu/_new  2020-01-15 16:42:52.641110743 +0100
@@ -55,6 +55,8 @@
 Requires:   openarena-data = %{version}
 Recommends: openarena-doc = %{version}
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+# i586 does not build
+ExcludeArch:%ix86
 
 %description
 OpenArena is an open-source content package for Quake III Arena





commit openarena for openSUSE:Factory

2018-04-02 Thread root
Hello community,

here is the log from the commit of package openarena for openSUSE:Factory 
checked in at 2018-04-02 22:49:23

Comparing /work/SRC/openSUSE:Factory/openarena (Old)
 and  /work/SRC/openSUSE:Factory/.openarena.new (New)


Package is "openarena"

Mon Apr  2 22:49:23 2018 rev:3 rq:592921 version:0.8.8

Changes:

--- /work/SRC/openSUSE:Factory/openarena/openarena.changes  2017-05-27 
13:20:37.408348005 +0200
+++ /work/SRC/openSUSE:Factory/.openarena.new/openarena.changes 2018-04-02 
22:49:27.429343315 +0200
@@ -1,0 +2,5 @@
+Thu Mar 29 21:33:03 UTC 2018 - kasim...@outlook.de
+
+- Fixed armv6 build
+
+---



Other differences:
--
++ openarena.spec ++
--- /var/tmp/diff_new_pack.OfYrzy/_old  2018-04-02 22:49:28.653298814 +0200
+++ /var/tmp/diff_new_pack.OfYrzy/_new  2018-04-02 22:49:28.653298814 +0200
@@ -20,12 +20,16 @@
 %ifarch %ix86
 %define postfix i386
 %else
+%ifarch armv6l armv6hl
+%define postfix armv6l
+%else
 %ifarch armv7l armv7hl
 %define postfix armv7l
 %else
 %define postfix %{_target_cpu}
 %endif
 %endif
+%endif
 Name:   openarena
 Version:0.8.8
 Release:0





commit openarena for openSUSE:Factory

2017-05-27 Thread root
Hello community,

here is the log from the commit of package openarena for openSUSE:Factory 
checked in at 2017-05-27 13:19:22

Comparing /work/SRC/openSUSE:Factory/openarena (Old)
 and  /work/SRC/openSUSE:Factory/.openarena.new (New)


Package is "openarena"

Sat May 27 13:19:22 2017 rev:2 rq:498354 version:0.8.8

Changes:

--- /work/SRC/openSUSE:Factory/openarena/openarena.changes  2017-03-02 
19:26:07.698789289 +0100
+++ /work/SRC/openSUSE:Factory/.openarena.new/openarena.changes 2017-05-27 
13:20:37.408348005 +0200
@@ -1,0 +2,5 @@
+Fri May 19 23:22:31 UTC 2017 - stefan.bru...@rwth-aachen.de
+
+- Add q_platform_aarch64_support.diff to fix compilation on aarch64
+
+---

New:

  q_platform_aarch64_support.diff



Other differences:
--
++ openarena.spec ++
--- /var/tmp/diff_new_pack.SU1avJ/_old  2017-05-27 13:20:40.031977096 +0200
+++ /var/tmp/diff_new_pack.SU1avJ/_new  2017-05-27 13:20:40.035976532 +0200
@@ -41,6 +41,7 @@
 Patch0: openarena-0.8.8-stack.patch
 # PATCH-FIX-UPSTREAM fix build with newer gcc
 Patch1: fix-compile-gcc5.patch
+Patch2: q_platform_aarch64_support.diff
 BuildRequires:  Mesa-devel
 BuildRequires:  SDL-devel
 BuildRequires:  autoconf >= 2.60
@@ -59,6 +60,7 @@
 %setup -q -n %{name}-engine-source-%{version}
 %patch0 -p1
 %patch1 -p1
+%patch2 -p0
 # FIX usage of __DATE__
 modified="$(sed -n '/^/n;s/ - .*$//;p;q' "%{SOURCE99}")"
 DATE="\"$(date -d "${modified}" "+%%b %%e %%Y")\""


++ q_platform_aarch64_support.diff ++
--- code/qcommon/q_platform.h.orig  2017-05-20 01:18:55.831871030 +0200
+++ code/qcommon/q_platform.h   2017-05-20 01:19:27.796216330 +0200
@@ -205,6 +205,8 @@
 #define ARCH_STRING "sparc"
 #elif defined __arm__
 #define ARCH_STRING "arm"
+#elif defined __aarch64__
+#define ARCH_STRING "aarch64"
 #elif defined __cris__
 #define ARCH_STRING "cris"
 #elif defined __hppa__