Accepting request 724966 from X11:Wayland
- Update to new upstream release 7.12.3352 OBS-URL: https://build.opensuse.org/request/show/724966 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/glslang?expand=0&rev=16
This commit is contained in:
commit
18a50b6700
8
_service
8
_service
@ -1,11 +1,11 @@
|
|||||||
<services>
|
<services>
|
||||||
<service name="tar_scm" mode="disabled">
|
<service name="tar_scm" mode="disabled">
|
||||||
<param name="scm">git</param>
|
<param name="scm">git</param>
|
||||||
<param name="url">git://github.com/KhronosGroup/glslang</param>
|
<param name="url">https://github.com/KhronosGroup/glslang</param>
|
||||||
<!-- minor part also in glslang/Include/revision.h (and sometimes out of date too) -->
|
<!-- minor part also in glslang/Include/revision.h (and sometimes out of date too) -->
|
||||||
<param name="revision">4162de4bbfc58ef37600c23e4e8fcf58e604f382</param>
|
<param name="revision">7.12.3352</param>
|
||||||
<param name="parent-tag">8e96e247fadd3b241fe4a5d081ebe1ad45f885bc</param>
|
<param name="parent-tag">7.12.3352</param>
|
||||||
<param name="versionformat">7.11.3276.git@TAG_OFFSET@</param>
|
<param name="versionformat">7.12.3352</param>
|
||||||
</service>
|
</service>
|
||||||
<service name="recompress" mode="disabled">
|
<service name="recompress" mode="disabled">
|
||||||
<param name="file">*.tar</param>
|
<param name="file">*.tar</param>
|
||||||
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:070b39ee22f73549e9dc7f157edf2363a0c3631da3cb431c046e9b4c40b9011e
|
|
||||||
size 1591316
|
|
3
glslang-7.12.3352.tar.xz
Normal file
3
glslang-7.12.3352.tar.xz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:48c61c85470d629df0254a0505022f6571b35ed4b823d16814a682e60773af35
|
||||||
|
size 1602496
|
@ -1,3 +1,20 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Aug 21 07:23:09 UTC 2019 - Jan Engelhardt <jengelh@inai.de>
|
||||||
|
|
||||||
|
- Update to new upstream release 7.12.3352
|
||||||
|
* Add interface symbol and uniform symbol location auto mapping
|
||||||
|
for OpenGL shader.
|
||||||
|
* Handle SPIR-V type mismatch when constructing a composite.
|
||||||
|
* Implement GL_EXT_demote_to_helper_invocation.
|
||||||
|
* Avoid generating 8/16-bit constants when 8/16-bit arithmetic
|
||||||
|
extensions are not enabled.
|
||||||
|
* Add support for SPV_KHR_shader_clock.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Aug 2 07:00:29 UTC 2019 - Martin Liška <mliska@suse.cz>
|
||||||
|
|
||||||
|
- Use FAT LTO objects in order to provide proper static library.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Jun 28 07:50:03 UTC 2019 - Jan Engelhardt <jengelh@inai.de>
|
Fri Jun 28 07:50:03 UTC 2019 - Jan Engelhardt <jengelh@inai.de>
|
||||||
|
|
||||||
|
@ -16,11 +16,11 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
|
|
||||||
%define version_unconverted 7.11.3276.git10
|
%define version_unconverted 7.12.3352
|
||||||
%define lname libglslang-suse6
|
%define lname libglslang-suse6
|
||||||
|
|
||||||
Name: glslang
|
Name: glslang
|
||||||
Version: 7.11.3276.git10
|
Version: 7.12.3352
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: OpenGL and OpenGL ES shader front end and validator
|
Summary: OpenGL and OpenGL ES shader front end and validator
|
||||||
License: BSD-3-Clause
|
License: BSD-3-Clause
|
||||||
@ -72,13 +72,15 @@ compressor's dictionary can find better cross module commonality.
|
|||||||
%autosetup -p1
|
%autosetup -p1
|
||||||
|
|
||||||
%build
|
%build
|
||||||
|
%global _lto_cflags %{_lto_cflags} -ffat-lto-objects
|
||||||
# Trim -Wl,--no-undefined for now (https://github.com/KhronosGroup/glslang/issues/1484)
|
# Trim -Wl,--no-undefined for now (https://github.com/KhronosGroup/glslang/issues/1484)
|
||||||
%cmake -DCMAKE_SHARED_LINKER_FLAGS="-Wl,--as-needed -Wl,-z,now"
|
%cmake -DCMAKE_SHARED_LINKER_FLAGS="-Wl,--as-needed -Wl,-z,now"
|
||||||
make %{?_smp_mflags}
|
make %{?_smp_mflags}
|
||||||
|
|
||||||
%install
|
%install
|
||||||
b="%buildroot"
|
%global _lto_cflags %{_lto_cflags} -ffat-lto-objects
|
||||||
%cmake_install
|
%cmake_install
|
||||||
|
b="%buildroot"
|
||||||
mkdir -p "$b/%_includedir"
|
mkdir -p "$b/%_includedir"
|
||||||
cp -a SPIRV glslang "$b/%_includedir/"
|
cp -a SPIRV glslang "$b/%_includedir/"
|
||||||
find "$b/%_includedir/" -type f ! -iname "*.h" -a ! -iname "*.hpp" -print -delete
|
find "$b/%_includedir/" -type f ! -iname "*.h" -a ! -iname "*.hpp" -print -delete
|
||||||
|
Loading…
Reference in New Issue
Block a user