diff --git a/godot-3.2-stable.tar.xz b/godot-3.2-stable.tar.xz deleted file mode 100644 index bba30d5..0000000 --- a/godot-3.2-stable.tar.xz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:258e166a33f0d71aec59016d8e0d96342a0047a4d84aad2346c232bac8b3c0ce -size 14038472 diff --git a/godot-3.2-stable.tar.xz.sha256 b/godot-3.2-stable.tar.xz.sha256 deleted file mode 100644 index 62901df..0000000 --- a/godot-3.2-stable.tar.xz.sha256 +++ /dev/null @@ -1 +0,0 @@ -258e166a33f0d71aec59016d8e0d96342a0047a4d84aad2346c232bac8b3c0ce godot-3.2-stable.tar.xz diff --git a/godot-3.2.1-stable.tar.xz b/godot-3.2.1-stable.tar.xz new file mode 100644 index 0000000..e76ada0 --- /dev/null +++ b/godot-3.2.1-stable.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:556b564079fb1b21a05320c359268b2032c87d8b3bfaa4fd104ebf9c909ab87d +size 14066488 diff --git a/godot-3.2.1-stable.tar.xz.sha256 b/godot-3.2.1-stable.tar.xz.sha256 new file mode 100644 index 0000000..c3589e6 --- /dev/null +++ b/godot-3.2.1-stable.tar.xz.sha256 @@ -0,0 +1 @@ +556b564079fb1b21a05320c359268b2032c87d8b3bfaa4fd104ebf9c909ab87d godot-3.2.1-stable.tar.xz diff --git a/godot.changes b/godot.changes index 80d5d52..5781747 100644 --- a/godot.changes +++ b/godot.changes @@ -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 diff --git a/godot.spec b/godot.spec index 6ab2c2c..8faeb36 100644 --- a/godot.spec +++ b/godot.spec @@ -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 diff --git a/linker_pie_flag.patch b/linker_pie_flag.patch index 699afd3..bea05af 100644 --- a/linker_pie_flag.patch +++ b/linker_pie_flag.patch @@ -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'])