SHA256
1
0
forked from pool/godot

Accepting request 783518 from home:cunix:godot

Update to 3.2.1

OBS-URL: https://build.opensuse.org/request/show/783518
OBS-URL: https://build.opensuse.org/package/show/games/godot?expand=0&rev=9
This commit is contained in:
Max Mitschke 2020-03-10 19:03:50 +00:00 committed by Git OBS Bridge
parent ba8eef0b8b
commit 40ddc313f9
7 changed files with 35 additions and 9 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:258e166a33f0d71aec59016d8e0d96342a0047a4d84aad2346c232bac8b3c0ce
size 14038472

View File

@ -1 +0,0 @@
258e166a33f0d71aec59016d8e0d96342a0047a4d84aad2346c232bac8b3c0ce godot-3.2-stable.tar.xz

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:556b564079fb1b21a05320c359268b2032c87d8b3bfaa4fd104ebf9c909ab87d
size 14066488

View File

@ -0,0 +1 @@
556b564079fb1b21a05320c359268b2032c87d8b3bfaa4fd104ebf9c909ab87d godot-3.2.1-stable.tar.xz

View File

@ -1,3 +1,28 @@
-------------------------------------------------------------------
Tue Mar 10 16:00:00 UTC 2020 - cunix@mail.de
- Update to 3.2.1
Fixed:
* Bullet: Fix detection of concave shape in Area.
* Camera2D: Fix inverted use of Camera2D offset_v.
* Debugger: Fix crash inspecting freed objects.
* Expression: Fix parsing integers as 32-bit.
* Particles: Fix undefined behavior with atan in GPU Particles.
* TileSet: Hide TileSet properties from Inspector, fixing
OOM crash on huge tilesets.
* Video: Workaround WebM playback bug after AudioServer latency fixes.
Added:
* Skin: Add support for named binds.
* API documentation updates.
* Editor translation updates.
And more:
https://downloads.tuxfamily.org/godotengine/3.2.1/Godot_v3.2.1-stable_changelog_chrono.txt
- "linker_pie_flag.patch" adjusted.
-------------------------------------------------------------------
Wed Feb 12 12:00:00 UTC 2020 - cunix@mail.de

View File

@ -24,7 +24,7 @@
%define ca_bundle %{_localstatedir}/lib/ca-certificates/ca-bundle.pem
Name: godot
Version: 3.2
Version: 3.2.1
Release: 0
Summary: Cross-Platform Game Engine with an Integrated Editor
License: MIT
@ -137,6 +137,7 @@ Provides: bundled(squish) = 1.15
Provides: bundled(xatlas)
## Need to update in Factory ##
# Possibility to unbundle disabled in 3.2.1
Provides: bundled(assimp)
%if 0%{?suse_version} > 1500

View File

@ -17,14 +17,14 @@ diff -r -U 5 a/platform/x11/detect.py b/platform/x11/detect.py
+++ b/platform/x11/detect.py
@@ -182,11 +182,11 @@
# Check for gcc version >= 6 before adding -no-pie
version = get_compiler_version(env) or [-1, -1]
if using_gcc(env):
version = get_compiler_version(env)
if version != None and version[0] >= '6':
if version[0] >= 6:
env.Append(CCFLAGS=['-fpie'])
- env.Append(LINKFLAGS=['-no-pie'])
+ env.Append(LINKFLAGS=['-pie'])
# Do the same for clang should be fine with Clang 4 and higher
if using_clang(env):
version = get_compiler_version(env)
if version != None and version[0] >= '4':
if version[0] >= 4:
env.Append(CCFLAGS=['-fpie'])
env.Append(LINKFLAGS=['-no-pie'])