Accepting request 685640 from KDE:Qt5
Qt 5.12.2 OBS-URL: https://build.opensuse.org/request/show/685640 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/libqt5-qtscript?expand=0&rev=39
This commit is contained in:
parent
71e9476b27
commit
1244359ab1
@ -1,203 +0,0 @@
|
|||||||
Author: Richard Biener
|
|
||||||
Description: Adhere to stricter asm parsing rules, toplevel asms do not have qualifiers.
|
|
||||||
|
|
||||||
--- ./src/3rdparty/javascriptcore/JavaScriptCore/jit/JITStubs.cpp.orig 2019-01-09 10:11:56.730168494 +0100
|
|
||||||
+++ ./src/3rdparty/javascriptcore/JavaScriptCore/jit/JITStubs.cpp 2019-01-09 10:13:21.295642709 +0100
|
|
||||||
@@ -116,7 +116,7 @@
|
|
||||||
COMPILE_ASSERT(offsetof(struct JITStackFrame, callFrame) == 0x58, JITStackFrame_callFrame_offset_matches_ctiTrampoline);
|
|
||||||
COMPILE_ASSERT(offsetof(struct JITStackFrame, code) == 0x50, JITStackFrame_code_offset_matches_ctiTrampoline);
|
|
||||||
|
|
||||||
-asm volatile (
|
|
||||||
+asm (
|
|
||||||
".text\n"
|
|
||||||
".globl " SYMBOL_STRING(ctiTrampoline) "\n"
|
|
||||||
HIDE_SYMBOL(ctiTrampoline) "\n"
|
|
||||||
@@ -138,7 +138,7 @@
|
|
||||||
"ret" "\n"
|
|
||||||
);
|
|
||||||
|
|
||||||
-asm volatile (
|
|
||||||
+asm (
|
|
||||||
".globl " SYMBOL_STRING(ctiVMThrowTrampoline) "\n"
|
|
||||||
HIDE_SYMBOL(ctiVMThrowTrampoline) "\n"
|
|
||||||
SYMBOL_STRING(ctiVMThrowTrampoline) ":" "\n"
|
|
||||||
@@ -154,7 +154,7 @@
|
|
||||||
"ret" "\n"
|
|
||||||
);
|
|
||||||
|
|
||||||
-asm volatile (
|
|
||||||
+asm (
|
|
||||||
".globl " SYMBOL_STRING(ctiOpThrowNotCaught) "\n"
|
|
||||||
HIDE_SYMBOL(ctiOpThrowNotCaught) "\n"
|
|
||||||
SYMBOL_STRING(ctiOpThrowNotCaught) ":" "\n"
|
|
||||||
@@ -179,7 +179,7 @@
|
|
||||||
COMPILE_ASSERT(offsetof(struct JITStackFrame, callFrame) == 0x90, JITStackFrame_callFrame_offset_matches_ctiTrampoline);
|
|
||||||
COMPILE_ASSERT(offsetof(struct JITStackFrame, code) == 0x80, JITStackFrame_code_offset_matches_ctiTrampoline);
|
|
||||||
|
|
||||||
-asm volatile (
|
|
||||||
+asm (
|
|
||||||
".globl " SYMBOL_STRING(ctiTrampoline) "\n"
|
|
||||||
HIDE_SYMBOL(ctiTrampoline) "\n"
|
|
||||||
SYMBOL_STRING(ctiTrampoline) ":" "\n"
|
|
||||||
@@ -206,7 +206,7 @@
|
|
||||||
"ret" "\n"
|
|
||||||
);
|
|
||||||
|
|
||||||
-asm volatile (
|
|
||||||
+asm (
|
|
||||||
".globl " SYMBOL_STRING(ctiVMThrowTrampoline) "\n"
|
|
||||||
HIDE_SYMBOL(ctiVMThrowTrampoline) "\n"
|
|
||||||
SYMBOL_STRING(ctiVMThrowTrampoline) ":" "\n"
|
|
||||||
@@ -222,7 +222,7 @@
|
|
||||||
"ret" "\n"
|
|
||||||
);
|
|
||||||
|
|
||||||
-asm volatile (
|
|
||||||
+asm (
|
|
||||||
".globl " SYMBOL_STRING(ctiOpThrowNotCaught) "\n"
|
|
||||||
HIDE_SYMBOL(ctiOpThrowNotCaught) "\n"
|
|
||||||
SYMBOL_STRING(ctiOpThrowNotCaught) ":" "\n"
|
|
||||||
@@ -242,7 +242,7 @@
|
|
||||||
#error "JIT_STUB_ARGUMENT_VA_LIST not supported on ARMv7."
|
|
||||||
#endif
|
|
||||||
|
|
||||||
-asm volatile (
|
|
||||||
+asm (
|
|
||||||
".text" "\n"
|
|
||||||
".align 2" "\n"
|
|
||||||
".globl " SYMBOL_STRING(ctiTrampoline) "\n"
|
|
||||||
@@ -269,7 +269,7 @@
|
|
||||||
"bx lr" "\n"
|
|
||||||
);
|
|
||||||
|
|
||||||
-asm volatile (
|
|
||||||
+asm (
|
|
||||||
".text" "\n"
|
|
||||||
".align 2" "\n"
|
|
||||||
".globl " SYMBOL_STRING(ctiVMThrowTrampoline) "\n"
|
|
||||||
@@ -287,7 +287,7 @@
|
|
||||||
"bx lr" "\n"
|
|
||||||
);
|
|
||||||
|
|
||||||
-asm volatile (
|
|
||||||
+asm (
|
|
||||||
".text" "\n"
|
|
||||||
".align 2" "\n"
|
|
||||||
".globl " SYMBOL_STRING(ctiOpThrowNotCaught) "\n"
|
|
||||||
@@ -305,7 +305,7 @@
|
|
||||||
|
|
||||||
#elif COMPILER(GCC) && CPU(ARM_TRADITIONAL)
|
|
||||||
|
|
||||||
-asm volatile (
|
|
||||||
+asm (
|
|
||||||
".globl " SYMBOL_STRING(ctiTrampoline) "\n"
|
|
||||||
HIDE_SYMBOL(ctiTrampoline) "\n"
|
|
||||||
SYMBOL_STRING(ctiTrampoline) ":" "\n"
|
|
||||||
@@ -323,7 +323,7 @@
|
|
||||||
"mov pc, lr" "\n"
|
|
||||||
);
|
|
||||||
|
|
||||||
-asm volatile (
|
|
||||||
+asm (
|
|
||||||
".globl " SYMBOL_STRING(ctiVMThrowTrampoline) "\n"
|
|
||||||
HIDE_SYMBOL(ctiVMThrowTrampoline) "\n"
|
|
||||||
SYMBOL_STRING(ctiVMThrowTrampoline) ":" "\n"
|
|
||||||
@@ -418,7 +418,7 @@
|
|
||||||
COMPILE_ASSERT(offsetof(struct JITStackFrame, code) == 0x30, JITStackFrame_code_offset_matches_ctiTrampoline);
|
|
||||||
COMPILE_ASSERT(offsetof(struct JITStackFrame, savedEBX) == 0x1c, JITStackFrame_stub_argument_space_matches_ctiTrampoline);
|
|
||||||
|
|
||||||
-asm volatile (
|
|
||||||
+asm (
|
|
||||||
".text\n"
|
|
||||||
".globl " SYMBOL_STRING(ctiTrampoline) "\n"
|
|
||||||
HIDE_SYMBOL(ctiTrampoline) "\n"
|
|
||||||
@@ -440,7 +440,7 @@
|
|
||||||
"ret" "\n"
|
|
||||||
);
|
|
||||||
|
|
||||||
-asm volatile (
|
|
||||||
+asm (
|
|
||||||
".globl " SYMBOL_STRING(ctiVMThrowTrampoline) "\n"
|
|
||||||
HIDE_SYMBOL(ctiVMThrowTrampoline) "\n"
|
|
||||||
SYMBOL_STRING(ctiVMThrowTrampoline) ":" "\n"
|
|
||||||
@@ -456,7 +456,7 @@
|
|
||||||
"ret" "\n"
|
|
||||||
);
|
|
||||||
|
|
||||||
-asm volatile (
|
|
||||||
+asm (
|
|
||||||
".globl " SYMBOL_STRING(ctiOpThrowNotCaught) "\n"
|
|
||||||
HIDE_SYMBOL(ctiOpThrowNotCaught) "\n"
|
|
||||||
SYMBOL_STRING(ctiOpThrowNotCaught) ":" "\n"
|
|
||||||
@@ -480,7 +480,7 @@
|
|
||||||
COMPILE_ASSERT(offsetof(struct JITStackFrame, code) == 0x48, JITStackFrame_code_offset_matches_ctiTrampoline);
|
|
||||||
COMPILE_ASSERT(offsetof(struct JITStackFrame, savedRBX) == 0x78, JITStackFrame_stub_argument_space_matches_ctiTrampoline);
|
|
||||||
|
|
||||||
-asm volatile (
|
|
||||||
+asm (
|
|
||||||
".text\n"
|
|
||||||
".globl " SYMBOL_STRING(ctiTrampoline) "\n"
|
|
||||||
HIDE_SYMBOL(ctiTrampoline) "\n"
|
|
||||||
@@ -515,7 +515,7 @@
|
|
||||||
"ret" "\n"
|
|
||||||
);
|
|
||||||
|
|
||||||
-asm volatile (
|
|
||||||
+asm (
|
|
||||||
".globl " SYMBOL_STRING(ctiVMThrowTrampoline) "\n"
|
|
||||||
HIDE_SYMBOL(ctiVMThrowTrampoline) "\n"
|
|
||||||
SYMBOL_STRING(ctiVMThrowTrampoline) ":" "\n"
|
|
||||||
@@ -531,7 +531,7 @@
|
|
||||||
"ret" "\n"
|
|
||||||
);
|
|
||||||
|
|
||||||
-asm volatile (
|
|
||||||
+asm (
|
|
||||||
".globl " SYMBOL_STRING(ctiOpThrowNotCaught) "\n"
|
|
||||||
HIDE_SYMBOL(ctiOpThrowNotCaught) "\n"
|
|
||||||
SYMBOL_STRING(ctiOpThrowNotCaught) ":" "\n"
|
|
||||||
@@ -551,7 +551,7 @@
|
|
||||||
#error "JIT_STUB_ARGUMENT_VA_LIST not supported on ARMv7."
|
|
||||||
#endif
|
|
||||||
|
|
||||||
-asm volatile (
|
|
||||||
+asm (
|
|
||||||
".text" "\n"
|
|
||||||
".align 2" "\n"
|
|
||||||
".globl " SYMBOL_STRING(ctiTrampoline) "\n"
|
|
||||||
@@ -578,7 +578,7 @@
|
|
||||||
"bx lr" "\n"
|
|
||||||
);
|
|
||||||
|
|
||||||
-asm volatile (
|
|
||||||
+asm (
|
|
||||||
".text" "\n"
|
|
||||||
".align 2" "\n"
|
|
||||||
".globl " SYMBOL_STRING(ctiVMThrowTrampoline) "\n"
|
|
||||||
@@ -596,7 +596,7 @@
|
|
||||||
"bx lr" "\n"
|
|
||||||
);
|
|
||||||
|
|
||||||
-asm volatile (
|
|
||||||
+asm (
|
|
||||||
".text" "\n"
|
|
||||||
".align 2" "\n"
|
|
||||||
".globl " SYMBOL_STRING(ctiOpThrowNotCaught) "\n"
|
|
||||||
@@ -614,7 +614,7 @@
|
|
||||||
|
|
||||||
#elif COMPILER(GCC) && CPU(ARM_TRADITIONAL)
|
|
||||||
|
|
||||||
-asm volatile (
|
|
||||||
+asm (
|
|
||||||
".text\n"
|
|
||||||
".globl " SYMBOL_STRING(ctiTrampoline) "\n"
|
|
||||||
HIDE_SYMBOL(ctiTrampoline) "\n"
|
|
||||||
@@ -632,7 +632,7 @@
|
|
||||||
"mov pc, lr" "\n"
|
|
||||||
);
|
|
||||||
|
|
||||||
-asm volatile (
|
|
||||||
+asm (
|
|
||||||
".globl " SYMBOL_STRING(ctiVMThrowTrampoline) "\n"
|
|
||||||
HIDE_SYMBOL(ctiVMThrowTrampoline) "\n"
|
|
||||||
SYMBOL_STRING(ctiVMThrowTrampoline) ":" "\n"
|
|
@ -1,3 +1,22 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Mar 14 08:51:42 UTC 2019 - fabian@ritter-vogt.de
|
||||||
|
|
||||||
|
- Update to 5.12.2:
|
||||||
|
* New bugfix release
|
||||||
|
* For more details please see:
|
||||||
|
* http://code.qt.io/cgit/qt/qtscript.git/plain/dist/changes-5.12.2/?h=5.12.2
|
||||||
|
- Remove patches, now upstream:
|
||||||
|
* libqt5-qtscript-toplevel-asm.patch
|
||||||
|
- Use %license
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Feb 1 08:40:11 UTC 2019 - fabian@ritter-vogt.de
|
||||||
|
|
||||||
|
- Update to 5.12.1:
|
||||||
|
* New bugfix release
|
||||||
|
* For more details please see:
|
||||||
|
* http://code.qt.io/cgit/qt/qtscript.git/plain/dist/changes-5.12.1/?h=v5.12.1
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Jan 9 09:17:31 UTC 2019 - rguenther@suse.com
|
Wed Jan 9 09:17:31 UTC 2019 - rguenther@suse.com
|
||||||
|
|
||||||
|
@ -21,21 +21,20 @@
|
|||||||
%define libname libQt5Script5
|
%define libname libQt5Script5
|
||||||
|
|
||||||
Name: libqt5-qtscript
|
Name: libqt5-qtscript
|
||||||
Version: 5.12.0
|
Version: 5.12.2
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Qt 5 Script library
|
Summary: Qt 5 Script library
|
||||||
License: LGPL-2.1-with-Qt-Company-Qt-exception-1.1 or LGPL-3.0-only
|
License: LGPL-2.1-with-Qt-Company-Qt-exception-1.1 or LGPL-3.0-only
|
||||||
Group: Development/Libraries/X11
|
Group: Development/Libraries/X11
|
||||||
Url: https://www.qt.io
|
Url: https://www.qt.io
|
||||||
%define base_name libqt5
|
%define base_name libqt5
|
||||||
%define real_version 5.12.0
|
%define real_version 5.12.2
|
||||||
%define so_version 5.12.0
|
%define so_version 5.12.2
|
||||||
%define tar_version qtscript-everywhere-src-5.12.0
|
%define tar_version qtscript-everywhere-src-5.12.2
|
||||||
Source: https://download.qt.io/official_releases/qt/5.12/%{real_version}/submodules/%{tar_version}.tar.xz
|
Source: https://download.qt.io/official_releases/qt/5.12/%{real_version}/submodules/%{tar_version}.tar.xz
|
||||||
Source1: baselibs.conf
|
Source1: baselibs.conf
|
||||||
# PATCH-FIX-UPSTREAM libqt5-qtscript-s390-support.patch -- adds s390, taken from webkit upstream
|
# PATCH-FIX-UPSTREAM libqt5-qtscript-s390-support.patch -- adds s390, taken from webkit upstream
|
||||||
Patch1: libqt5-qtscript-s390-support.patch
|
Patch1: libqt5-qtscript-s390-support.patch
|
||||||
Patch2: libqt5-qtscript-toplevel-asm.patch
|
|
||||||
BuildRequires: libQt5Core-private-headers-devel >= %{version}
|
BuildRequires: libQt5Core-private-headers-devel >= %{version}
|
||||||
BuildRequires: libQt5Widgets-private-headers-devel >= %{version}
|
BuildRequires: libQt5Widgets-private-headers-devel >= %{version}
|
||||||
BuildRequires: pkgconfig(Qt5DBus) >= %{version}
|
BuildRequires: pkgconfig(Qt5DBus) >= %{version}
|
||||||
@ -47,17 +46,13 @@ BuildRequires: perl
|
|||||||
%endif
|
%endif
|
||||||
BuildRequires: xz
|
BuildRequires: xz
|
||||||
|
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
||||||
|
|
||||||
%description
|
%description
|
||||||
Qt Script is a module for adding scripting to applications. It allows
|
Qt Script is a module for adding scripting to applications. It allows
|
||||||
evaluating and debugging of scripts, and advanced use of objects and
|
evaluating and debugging of scripts, and advanced use of objects and
|
||||||
functions. It also gives access to a low-level ECMAScript engine API.
|
functions. It also gives access to a low-level ECMAScript engine API.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n %{tar_version}
|
%autosetup -p1 -n %{tar_version}
|
||||||
%patch1 -p1
|
|
||||||
%patch2
|
|
||||||
|
|
||||||
%package -n %libname
|
%package -n %libname
|
||||||
Summary: Qt 5 Script library
|
Summary: Qt 5 Script library
|
||||||
@ -126,16 +121,13 @@ find %{buildroot}/%{_libdir} -type f -name '*pc' -print -exec perl -pi -e "s, -L
|
|||||||
rm -f %{buildroot}%{_libqt5_libdir}/lib*.la
|
rm -f %{buildroot}%{_libqt5_libdir}/lib*.la
|
||||||
|
|
||||||
%files -n %libname
|
%files -n %libname
|
||||||
%defattr(-,root,root,755)
|
%license LICENSE.*
|
||||||
%doc LICENSE.*
|
|
||||||
%{_libqt5_libdir}/libQt5*.so.*
|
%{_libqt5_libdir}/libQt5*.so.*
|
||||||
|
|
||||||
%files private-headers-devel
|
%files private-headers-devel
|
||||||
%defattr(-,root,root,755)
|
|
||||||
%{_libqt5_includedir}/Qt*/%{so_version}
|
%{_libqt5_includedir}/Qt*/%{so_version}
|
||||||
|
|
||||||
%files devel
|
%files devel
|
||||||
%defattr(-,root,root,755)
|
|
||||||
%exclude %{_libqt5_includedir}/Qt*/%{so_version}
|
%exclude %{_libqt5_includedir}/Qt*/%{so_version}
|
||||||
%{_libqt5_includedir}/Qt*
|
%{_libqt5_includedir}/Qt*
|
||||||
%{_libqt5_libdir}/cmake/Qt5*
|
%{_libqt5_libdir}/cmake/Qt5*
|
||||||
@ -145,7 +137,6 @@ rm -f %{buildroot}%{_libqt5_libdir}/lib*.la
|
|||||||
%{_libqt5_archdatadir}/mkspecs/modules/qt_lib_*.pri
|
%{_libqt5_archdatadir}/mkspecs/modules/qt_lib_*.pri
|
||||||
|
|
||||||
%files examples
|
%files examples
|
||||||
%defattr(-,root,root,755)
|
|
||||||
%{_libqt5_examplesdir}/
|
%{_libqt5_examplesdir}/
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:97fe1a22e5d0e89d3850546c0771fe41707d4c40062dc16fae8e21bf6f8cffa8
|
|
||||||
size 2674336
|
|
3
qtscript-everywhere-src-5.12.2.tar.xz
Normal file
3
qtscript-everywhere-src-5.12.2.tar.xz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:f8717d51072b4d4455755ae081e45f23f3d0ce25602f96231dd7703bd818a2e6
|
||||||
|
size 2673104
|
Loading…
Reference in New Issue
Block a user