Sync from SUSE:SLFO:Main libqt5-qtdoc revision 9615f0d87a3558f8dea8fbbf44097bac

This commit is contained in:
Adrian Schröter 2024-05-03 15:35:32 +02:00
commit b5a3358186
7 changed files with 1060 additions and 0 deletions

23
.gitattributes vendored Normal file
View File

@ -0,0 +1,23 @@
## Default LFS
*.7z filter=lfs diff=lfs merge=lfs -text
*.bsp filter=lfs diff=lfs merge=lfs -text
*.bz2 filter=lfs diff=lfs merge=lfs -text
*.gem filter=lfs diff=lfs merge=lfs -text
*.gz filter=lfs diff=lfs merge=lfs -text
*.jar filter=lfs diff=lfs merge=lfs -text
*.lz filter=lfs diff=lfs merge=lfs -text
*.lzma filter=lfs diff=lfs merge=lfs -text
*.obscpio filter=lfs diff=lfs merge=lfs -text
*.oxt filter=lfs diff=lfs merge=lfs -text
*.pdf filter=lfs diff=lfs merge=lfs -text
*.png filter=lfs diff=lfs merge=lfs -text
*.rpm filter=lfs diff=lfs merge=lfs -text
*.tbz filter=lfs diff=lfs merge=lfs -text
*.tbz2 filter=lfs diff=lfs merge=lfs -text
*.tgz filter=lfs diff=lfs merge=lfs -text
*.ttf filter=lfs diff=lfs merge=lfs -text
*.txz filter=lfs diff=lfs merge=lfs -text
*.whl filter=lfs diff=lfs merge=lfs -text
*.xz filter=lfs diff=lfs merge=lfs -text
*.zip filter=lfs diff=lfs merge=lfs -text
*.zst filter=lfs diff=lfs merge=lfs -text

View File

@ -0,0 +1,29 @@
From 45b201ea42f69510713ddd09fb092ed6f93ad1db Mon Sep 17 00:00:00 2001
From: Ulf Hermann <ulf.hermann@qt.io>
Date: Wed, 20 Jan 2021 10:42:36 +0100
Subject: [PATCH] Partially revert 813a928c7c3cf98670b6043149880ed5c955efb9
Otherwise ASAN complains about mismatched new/delete.
Change-Id: I76ddcc388309e20055c93c68b9b6fa8a11b884e1
Reviewed-by: Andrei Golubev <andrei.golubev@qt.io>
Reviewed-by: Ville Voutilainen <ville.voutilainen@qt.io>
(cherry picked from commit 606b03d0a35e71565c3a91588ef2db45b9262e27)
---
src/corelib/tools/qsharedpointer_impl.h | 3 +++
1 file changed, 3 insertions(+)
Index: qt-everywhere-src-5.15.5/qtbase/src/corelib/tools/qsharedpointer_impl.h
===================================================================
--- qt-everywhere-src-5.15.5.orig/qtbase/src/corelib/tools/qsharedpointer_impl.h
+++ qt-everywhere-src-5.15.5/qtbase/src/corelib/tools/qsharedpointer_impl.h
@@ -155,6 +155,9 @@ namespace QtSharedPointer {
#endif
inline void checkQObjectShared(...) { }
inline void setQObjectShared(...) { }
+
+ inline void operator delete(void *ptr) { ::operator delete(ptr); }
+ inline void operator delete(void *, void *) { }
};
// sizeof(ExternalRefCountData) = 12 (32-bit) / 16 (64-bit)

View File

@ -0,0 +1,43 @@
From 896bcb186161c38965bd002b28156a2aab4b4a76 Mon Sep 17 00:00:00 2001
From: Ville Voutilainen <ville.voutilainen@qt.io>
Date: Mon, 18 Jan 2021 09:58:17 +0200
Subject: [PATCH 2/2] Build fixes for GCC 11
Task-number: QTBUG-89977
Change-Id: Ic1b7ddbffb8a0a00f8c621d09a868f1d94a52c21
Reviewed-by: Lars Knoll <lars.knoll@qt.io>
Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
(cherry picked from commit 813a928c7c3cf98670b6043149880ed5c955efb9)
---
src/corelib/text/qbytearraymatcher.h | 2 ++
src/corelib/tools/qsharedpointer_impl.h | 3 ---
src/plugins/platforms/xcb/qxcbwindow.cpp | 2 +-
3 files changed, 3 insertions(+), 4 deletions(-)
Index: qt-everywhere-src-5.15.5/qtbase/src/corelib/tools/qsharedpointer_impl.h
===================================================================
--- qt-everywhere-src-5.15.5.orig/qtbase/src/corelib/tools/qsharedpointer_impl.h
+++ qt-everywhere-src-5.15.5/qtbase/src/corelib/tools/qsharedpointer_impl.h
@@ -155,9 +155,6 @@ namespace QtSharedPointer {
#endif
inline void checkQObjectShared(...) { }
inline void setQObjectShared(...) { }
-
- inline void operator delete(void *ptr) { ::operator delete(ptr); }
- inline void operator delete(void *, void *) { }
};
// sizeof(ExternalRefCountData) = 12 (32-bit) / 16 (64-bit)
Index: qt-everywhere-src-5.15.5/qtbase/src/plugins/platforms/xcb/qxcbwindow.cpp
===================================================================
--- qt-everywhere-src-5.15.5.orig/qtbase/src/plugins/platforms/xcb/qxcbwindow.cpp
+++ qt-everywhere-src-5.15.5/qtbase/src/plugins/platforms/xcb/qxcbwindow.cpp
@@ -698,7 +698,7 @@ void QXcbWindow::show()
if (isTransient(window())) {
const QWindow *tp = window()->transientParent();
if (tp && tp->handle())
- transientXcbParent = static_cast<const QXcbWindow *>(tp->handle())->winId();
+ transientXcbParent = tp->handle()->winId();
// Default to client leader if there is no transient parent, else modal dialogs can
// be hidden by their parents.
if (!transientXcbParent)

7
_constraints Normal file
View File

@ -0,0 +1,7 @@
<constraints>
<hardware>
<disk>
<size unit="G">10</size>
</disk>
</hardware>
</constraints>

765
libqt5-qtdoc.changes Normal file
View File

@ -0,0 +1,765 @@
-------------------------------------------------------------------
Wed Apr 26 20:44:31 UTC 2023 - Jan Engelhardt <jengelh@inai.de>
- Replace BuildRequire on xorg-x11-devel by pkgconfig(...)
-------------------------------------------------------------------
Fri Apr 21 11:10:37 UTC 2023 - Fabian Vogt <fvogt@suse.com>
- Update to 5.15.9:
* See individual module packages for changelogs
-------------------------------------------------------------------
Wed Jan 11 15:08:45 UTC 2023 - Fabian Vogt <fvogt@suse.com>
- Update to 5.15.8:
* See individual module packages for changelogs
- Update to 5.15.7:
* See individual module packages for changelogs
-------------------------------------------------------------------
Wed Sep 28 15:50:13 UTC 2022 - Fabian Vogt <fvogt@suse.com>
- Update to 5.15.6:
* See individual module packages for changelogs
-------------------------------------------------------------------
Mon Jun 27 12:50:15 UTC 2022 - Fabian Vogt <fvogt@suse.com>
- Update to 5.15.5:
* See individual module packages for changelogs
- Drop patches, now upstream:
* 0001-Fix-build-with-GCC-11-include-limits.patch
- Rebase patches:
* 0002-Build-fixes-for-GCC-11.patch
* 0001-Partially-revert-813a928c7c3cf98670b6043149880ed5c95.patch
-------------------------------------------------------------------
Fri May 28 08:17:31 UTC 2021 - Fabian Vogt <fvogt@suse.com>
- Add patch to fix possible crash caused by GCC 11 build fix:
* 0001-Partially-revert-813a928c7c3cf98670b6043149880ed5c95.patch
- Add patches to fix build with GCC 11 (boo#1181861, QTBUG-90395):
* 0001-Fix-build-with-GCC-11-include-limits.patch
* 0002-Build-fixes-for-GCC-11.patch
-------------------------------------------------------------------
Fri Nov 20 12:09:16 UTC 2020 - Fabian Vogt <fabian@ritter-vogt.de>
- Update to 5.15.2:
* New bugfix release
* For more details please see:
http://code.qt.io/cgit/qt/qt.git/plain/dist/changes-5.15.2/?h=5.15.2
-------------------------------------------------------------------
Thu Sep 10 07:57:11 UTC 2020 - Fabian Vogt <fabian@ritter-vogt.de>
- Update to 5.15.1:
* New bugfix release
* For more details please see:
http://code.qt.io/cgit/qt/qt.git/plain/dist/changes-5.15.1/?h=5.15.1
- Drop patches, now upstream:
* qtdeclarative-switch-to-python3.patch
-------------------------------------------------------------------
Mon Aug 21 11:11:52 UTC 2020 - Michel Normand <normand@linux.vnet.ibm.com>
- In _constraints set default min 10GB disk space for all arches
-------------------------------------------------------------------
Tue May 26 09:52:17 UTC 2020 - Callum Farmer <callumjfarmer13@gmail.com>
- Update to version 5.15.0:
* No changelog available
-------------------------------------------------------------------
Wed May 20 18:34:16 UTC 2020 - Callum Farmer <callumjfarmer13@gmail.com>
- Update to version 5.15.0-rc2:
* No changelog available
-------------------------------------------------------------------
Tue May 12 16:54:42 UTC 2020 - Michel Normand <normand@linux.vnet.ibm.com>
- Add _constraints for PowerPC because need more than 8GB disk
(bsc#1154344).
-------------------------------------------------------------------
Wed May 6 11:37:22 UTC 2020 - Fabian Vogt <fabian@ritter-vogt.de>
- Update to 5.15.0-rc:
* New bugfix release
* For the changes between 5.14.2 and 5.15.0 please see:
http://code.qt.io/cgit/qt/qt.git/plain/dist/changes-5.15.0/?h=5.15.0
-------------------------------------------------------------------
Fri Apr 24 07:11:15 UTC 2020 - Fabian Vogt <fabian@ritter-vogt.de>
- Update to 5.15.0-beta4:
* New bugfix release
* No changelog available
-------------------------------------------------------------------
Tue Apr 14 06:47:31 UTC 2020 - Fabian Vogt <fabian@ritter-vogt.de>
- Update to 5.15.0-beta3:
* New bugfix release
* No changelog available
-------------------------------------------------------------------
Tue Mar 24 12:13:40 UTC 2020 - Fabian Vogt <fabian@ritter-vogt.de>
- Update to 5.15.0-beta2:
* New bugfix release
* No changelog available
-------------------------------------------------------------------
Fri Feb 28 09:58:54 UTC 2020 - Fabian Vogt <fabian@ritter-vogt.de>
- Update to 5.15.0-beta1:
* New bugfix release
* No changelog available
-------------------------------------------------------------------
Wed Feb 19 10:16:30 UTC 2020 - Fabian Vogt <fabian@ritter-vogt.de>
- Update to 5.15.0-alpha:
* New feature release
* For more details please see:
https://wiki.qt.io/New_Features_in_Qt_5.15
-------------------------------------------------------------------
Mon Jan 27 13:14:19 UTC 2020 - Fabian Vogt <fabian@ritter-vogt.de>
- Update to 5.14.1:
* New bugfix release
* For more details please see:
http://code.qt.io/cgit/qt/qt.git/plain/dist/changes-5.14.1/?h=v5.14.1
-------------------------------------------------------------------
Thu Dec 12 12:53:01 UTC 2019 - Fabian Vogt <fabian@ritter-vogt.de>
- Update to 5.14.0:
* New bugfix release
* For the changes between 5.13.2 and 5.14.0 please see:
https://code.qt.io/cgit/qt/qt.git/tree/dist/changes-5.14.0?h=v5.14.0
* For the changes between 5.13.1 and 5.13.2 please see:
https://code.qt.io/cgit/qt/qt.git/tree/dist/changes-5.13.2?h=v5.14.0
-------------------------------------------------------------------
Wed Dec 4 14:37:48 UTC 2019 - Fabian Vogt <fabian@ritter-vogt.de>
- Update to 5.14.0-rc:
* New bugfix release
* No changelog available
* For more details please see:
* For more details about Qt 5.14 please see:
https://wiki.qt.io/New_Features_in_Qt_5.14
-------------------------------------------------------------------
Tue Nov 12 13:01:12 UTC 2019 - Fabian Vogt <fabian@ritter-vogt.de>
- Update to 5.14.0-beta3:
* New bugfix release
* No changelog available
-------------------------------------------------------------------
Thu Oct 24 13:22:43 UTC 2019 - Fabian Vogt <fabian@ritter-vogt.de>
- Update to 5.14.0-beta2:
* New bugfix release
* No changelog available
-------------------------------------------------------------------
Tue Oct 15 12:34:32 UTC 2019 - Fabian Vogt <fabian@ritter-vogt.de>
- Update to 5.14.0-beta1:
* New bugfix release
* No changelog available
-------------------------------------------------------------------
Mon Sep 30 13:30:17 UTC 2019 - Fabian Vogt <fabian@ritter-vogt.de>
- Update to 5.14.0-alpha:
* New feature release
* No changelog available
* For more details about Qt 5.14 please see:
https://wiki.qt.io/New_Features_in_Qt_5.14
- Drop patches, now upstream:
* workaround-qdoc-failure.patch
-------------------------------------------------------------------
Fri Sep 6 08:04:03 UTC 2019 - Fabian Vogt <fabian@ritter-vogt.de>
- Update to 5.13.1:
* New bugfix release
* For more details please see:
* http://code.qt.io/cgit/qt/qt.git/plain/dist/changes-5.13.1/?h=v5.13.1
-------------------------------------------------------------------
Thu Aug 29 14:21:56 UTC 2019 - Stefan Brüns <stefan.bruens@rwth-aachen.de>
- Explicitly BuildRequire libqt5-qttools and libqt5-qttools-doc, no
longer pulled in by libqt5-qttools-devel.
-------------------------------------------------------------------
Wed Jun 19 11:23:47 UTC 2019 - fabian@ritter-vogt.de
- Update to 5.13.0:
* New bugfix release
* No changelog available
* For more details about Qt 5.13 please see:
* http://code.qt.io/cgit/qt/qt.git/plain/dist/changes-5.13.0/?h=5.13
-------------------------------------------------------------------
Tue Jun 4 07:24:43 UTC 2019 - fabian@ritter-vogt.de
- Update to 5.13.0-rc:
* New bugfix release
* No changelog available
-------------------------------------------------------------------
Mon Apr 29 09:16:37 UTC 2019 - fabian@ritter-vogt.de
- Update to 5.13.0-beta2:
* New bugfix release
* No changelog available
-------------------------------------------------------------------
Thu Apr 18 07:27:11 UTC 2019 - fabian@ritter-vogt.de
- Update to 5.12.3:
* New bugfix release
* For more details please see:
* http://code.qt.io/cgit/qt/qt.git/plain/dist/changes-5.12.3/?h=v5.12.3
-------------------------------------------------------------------
Thu Mar 21 10:25:35 UTC 2019 - fabian@ritter-vogt.de
- Update to 5.13.0-beta1:
* New feature release
* For more details about Qt 5.13 please see:
* http://code.qt.io/cgit/qt/qt.git/plain/dist/changes-5.13.0/?h=5.13
-------------------------------------------------------------------
Thu Mar 14 08:51:22 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/qt.git/plain/dist/changes-5.12.2/?h=5.12.2
-------------------------------------------------------------------
Fri Feb 1 08:39:58 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/qt.git/plain/dist/changes-5.12.1/?h=v5.12.1
- Refresh workaround-qdoc-failure.patch
- cmake breaks %make_jobs - ignore it (boo#1091864)
-------------------------------------------------------------------
Thu Dec 6 13:36:34 UTC 2018 - fabian@ritter-vogt.de
- Update to 5.12.0:
* New feature release
* For more details please see:
* http://code.qt.io/cgit/qt/qt.git/plain/dist/changes-5.12.0/?h=v5.12.0
-------------------------------------------------------------------
Mon Dec 3 08:16:44 UTC 2018 - fabian@ritter-vogt.de
- Update to 5.12.0-rc2:
* New bugfix release
* Only important bugfixes
- Changelog for Qt 5.12.0:
* http://code.qt.io/cgit/qt/qt.git/plain/dist/changes-5.12.0/?h=5.12.0
-------------------------------------------------------------------
Tue Nov 27 15:41:53 UTC 2018 - Fabian Vogt <fabian@ritter-vogt.de>
- Add patch from libqt5-qtdeclarative:
* qtdeclarative-switch-to-python3.patch
-------------------------------------------------------------------
Thu Nov 22 13:39:21 UTC 2018 - fabian@ritter-vogt.de
- Update to 5.12.0-rc:
* New bugfix release
* No changelog available
-------------------------------------------------------------------
Thu Nov 8 15:25:01 UTC 2018 - fabian@ritter-vogt.de
- Update to 5.12.0-beta4:
* New bugfix release
* No changelog available
-------------------------------------------------------------------
Fri Oct 26 07:20:45 UTC 2018 - fabian@ritter-vogt.de
- Update to 5.12.0-beta3:
* New bugfix release
* No changelog available
-------------------------------------------------------------------
Wed Oct 17 08:23:21 UTC 2018 - fabian@ritter-vogt.de
- Update to 5.12.0-beta2:
* New bugfix release
* No changelog available
-------------------------------------------------------------------
Fri Oct 5 19:22:33 UTC 2018 - fabian@ritter-vogt.de
- Update to 5.12.0-beta1:
* New bugfix release
* No changelog available
-------------------------------------------------------------------
Tue Oct 2 07:33:57 UTC 2018 - fabian@ritter-vogt.de
- Update to 5.12.0-alpha:
* New feature release
* For more details please see:
* http://wiki.qt.io/New_Features_in_Qt_5.12
-------------------------------------------------------------------
Fri Sep 21 07:59:12 UTC 2018 - fabian@ritter-vogt.de
- Update to 5.11.2
* New bugfix release
* For more details please see:
* http://code.qt.io/cgit/qt/qt.git/plain/dist/changes-5.11.2/?h=v5.11.2
-------------------------------------------------------------------
Sat Sep 1 11:34:10 UTC 2018 - fabian@ritter-vogt.de
- Add BuildReqs to allow building of WebEngine
-------------------------------------------------------------------
Tue Jun 19 10:50:33 CEST 2018 - fabian@ritter-vogt.de
- Update to 5.11.1
* New bugfix release
* For more details please see:
* http://code.qt.io/cgit/qt/qt.git/plain/dist/changes-5.11.1/?h=v5.11.1
-------------------------------------------------------------------
Fri Jun 8 09:23:43 UTC 2018 - fabian@ritter-vogt.de
- Add patch to fix building on 32-bit architectures (boo#1092425):
* workaround-qdoc-failure.patch
-------------------------------------------------------------------
Sun Jun 3 10:47:04 UTC 2018 - wbauer@tmo.at
- BuildRequire clang, this is needed since 5.11 to properly build
the docs
-------------------------------------------------------------------
Tue May 22 16:01:37 CEST 2018 - fabian@ritter-vogt.de
- Update to 5.11.0
* New bugfix release
* For more details please see:
* http://code.qt.io/cgit/qt/qt.git/plain/dist/changes-5.11.0/?h=v5.11.0
-------------------------------------------------------------------
Tue May 8 11:01:16 CEST 2018 - fabian@ritter-vogt.de
- Update to 5.11.0-rc
* New bugfix release
* No changelog available
-------------------------------------------------------------------
Mon Apr 23 08:57:29 CEST 2018 - fabian@ritter-vogt.de
- Update to 5.11.0-beta4
* New bugfix release
* No changelog available
-------------------------------------------------------------------
Wed Apr 11 09:14:36 CEST 2018 - fabian@ritter-vogt.de
- Update to 5.11.0-beta3
* New bugfix release
* No changelog available
-------------------------------------------------------------------
Wed Mar 28 09:17:31 CEST 2018 - fabian@ritter-vogt.de
- Update to 5.11.0-beta2
* New bugfix release
* No changelog available
-------------------------------------------------------------------
Tue Mar 13 13:40:40 UTC 2018 - christophe@krop.fr
- Fix the license tag.
-------------------------------------------------------------------
Thu Mar 1 09:55:29 CET 2018 - fabian@ritter-vogt.de
- Update to 5.11.0-beta1
* New feature release
* For more details please see:
* http://code.qt.io/cgit/qt/qt.git/plain/dist/changes-5.11.0-beta1/?h=v5.11.0-beta1
-------------------------------------------------------------------
Tue Feb 20 14:28:54 CET 2018 - fabian@ritter-vogt.de
- Update to 5.11.0-alpha
* New feature release
* For more details please see:
* https://wiki.qt.io/New_Features_in_Qt_5.11
-------------------------------------------------------------------
Wed Feb 14 15:46:25 CET 2018 - fabian@ritter-vogt.de
- Update to 5.10.1
* New bugfix release
* For more details please see:
* http://code.qt.io/cgit/qt/qt.git/plain/dist/changes-5.10.1/?h=v5.10.1
-------------------------------------------------------------------
Wed Dec 20 15:05:50 UTC 2017 - fabian@ritter-vogt.de
- Fix typo in -devel subpackage's Requires
-------------------------------------------------------------------
Fri Dec 8 23:40:16 UTC 2017 - christophe@krop.fr
- Update the license tag (boo#967696)
-------------------------------------------------------------------
Thu Dec 7 12:18:07 UTC 2017 - fabian@ritter-vogt.de
- Update to 5.10.0 final
* New bugfix release
-------------------------------------------------------------------
Sun Dec 3 14:12:49 UTC 2017 - fabian@ritter-vogt.de
- Update to 5.10.0 RC 2
* New bugfix release
-------------------------------------------------------------------
Thu Nov 30 09:47:12 UTC 2017 - fabian@ritter-vogt.de
- Update to 5.10.0 RC 1
* New bugfix release
-------------------------------------------------------------------
Sat Nov 25 12:46:36 UTC 2017 - fabian@ritter-vogt.de
- Update to 5.9.3
* New bugfix release
* For more details, see:
http://code.qt.io/cgit/qt/qtdoc.git/tree/dist/changes-5.9.3/?h=v5.9.3
-------------------------------------------------------------------
Tue Nov 21 10:41:45 UTC 2017 - tittiatcoke@gmail.com
- Add requires to the devel-doc package to enable
building QCH documentation in other packages
-------------------------------------------------------------------
Wed Nov 15 11:41:45 UTC 2017 - fabian@ritter-vogt.de
- Update to 5.10 Beta 4
- Contains bugfixes
-------------------------------------------------------------------
Thu Nov 2 13:20:13 UTC 2017 - tittiatcoke@gmail.com
- Actually build the html and QCH documentation files from source
- Split in three separate packages (qch, html, devel)
-------------------------------------------------------------------
Thu Nov 2 07:22:22 UTC 2017 - fabian@ritter-vogt.de
- Update to 5.10 Beta 3
- Contains bugfixes
-------------------------------------------------------------------
Mon Oct 30 16:19:24 UTC 2017 - fabian@ritter-vogt.de
- Update to 5.10 Beta 2
- Contains bugfixes
-------------------------------------------------------------------
Mon Oct 9 16:17:23 UTC 2017 - fabian@ritter-vogt.de
- Update to 5.10 Beta 1
- For more information visit:
https://blog.qt.io/blog/2017/10/09/qt-5-10-beta-released/
-------------------------------------------------------------------
Sun Oct 8 14:04:59 UTC 2017 - lbeltrame@kde.org
- Update to 5.9.2
* For more details please see:
https://blog.qt.io/blog/2017/10/06/qt-5-9-2-released/
-------------------------------------------------------------------
Mon Sep 25 14:42:37 CEST 2017 - fabian@ritter-vogt.de
- Update to 5.10 Alpha 1
- For more information visit:
https://blog.qt.io/blog/2017/09/13/qt-5-10-alpha-released/
-------------------------------------------------------------------
Sat Jul 1 08:13:50 UTC 2017 - lbeltrame@kde.org
- Update to 5.9.1
* For more details please see:
http://blog.qt.io/blog/2017/06/30/qt-5-9-1-released/
-------------------------------------------------------------------
Wed May 31 07:05:10 UTC 2017 - fabian@ritter-vogt.de
- Update to 5.9.0 final
-------------------------------------------------------------------
Mon May 29 18:06:07 UTC 2017 - christophe@krop.fr
- Provide/Obsolete libqt5-qtcharts-docs and libqt5-qtdatavis3d-docs
-------------------------------------------------------------------
Wed May 24 19:16:41 UTC 2017 - fabian@ritter-vogt.de
- Update to 5.9.0 RC:
* For more details please see:
http://lists.qt-project.org/pipermail/announce/2017-May/000115.html
and https://wiki.qt.io/New_Features_in_Qt_5.9
-------------------------------------------------------------------
Wed Dec 14 16:05:47 UTC 2016 - hrvoje.senjan@gmail.com
- Update to 5.7.1
* For more details please see:
https://blog.qt.io/blog/2016/12/14/qt-5-7-1-released/
and https://www.qt.io/qt5-7/
-------------------------------------------------------------------
Sat Sep 24 18:39:02 UTC 2016 - hrvoje.senjan@gmail.com
- Update to 5.7.0
* For more details please see:
https://www.qt.io/qt5-7/
-------------------------------------------------------------------
Wed Jun 8 14:15:15 UTC 2016 - hrvoje.senjan@gmail.com
- Update to 5.6.1
* For more details please see:
http://blog.qt.io/blog/2016/06/08/qt-5-6-1-released/
-------------------------------------------------------------------
Fri Mar 18 19:03:07 UTC 2016 - hrvoje.senjan@gmail.com
- Update to 5.6.0
* For more details please see:
http://blog.qt.io/blog/2016/03/16/qt-5-6-released/
and https://wiki.qt.io/New_Features_in_Qt_5.6
-------------------------------------------------------------------
Fri Oct 16 20:22:27 UTC 2015 - hrvoje.senjan@gmail.com
- Update to 5.5.1
* For more details please see:
http://blog.qt.io/blog/2015/10/15/qt-5-5-1-released/
-------------------------------------------------------------------
Sun Aug 16 08:32:01 UTC 2015 - hrvoje.senjan@gmail.com
- Update to 5.5.0
* For more details please see:
http://blog.qt.io/blog/2015/07/01/qt-5-5-released/
and https://wiki.qt.io/New_Features_in_Qt_5.5
-------------------------------------------------------------------
Tue Jun 30 19:24:56 UTC 2015 - hrvoje.senjan@gmail.com
- Update to 5.4.2
* Bugfix release, for more details please see:
http://blog.qt.io/blog/2015/06/02/qt-5-4-2-released/
-------------------------------------------------------------------
Tue Feb 24 16:10:14 UTC 2015 - hrvoje.senjan@gmail.com
- Update to 5.4.1
* For more details please see:
http://blog.qt.io/blog/2015/02/24/qt-5-4-1-released/
-------------------------------------------------------------------
Wed Dec 10 11:00:06 UTC 2014 - hrvoje.senjan@gmail.com
- Update to 5.4 Final
* For more details please see:
http://blog.qt.digia.com/blog/2014/12/10/qt-5-4-released/
and http://qt-project.org/wiki/New-Features-in-Qt-5.4
-------------------------------------------------------------------
Thu Nov 27 15:58:41 UTC 2014 - hrvoje.senjan@gmail.com
- Update to 5.4 RC
* For more details please see:
http://blog.qt.digia.com/blog/2014/11/27/qt-5-4-release-candidate-available/
and http://qt-project.org/wiki/New-Features-in-Qt-5.4
- Drop fdupes usage. It makes insignificant savings in disk space,
but fools build-compare due to different symlinks
-------------------------------------------------------------------
Thu Sep 18 11:13:24 UTC 2014 - hrvoje.senjan@gmail.com
- Fix the qchs tarball, some modules where missing images subdir
-------------------------------------------------------------------
Tue Sep 16 11:27:50 UTC 2014 - hrvoje.senjan@gmail.com
- Update Qt documention to 5.3.2
* Fixed several instances of missing or incorrect information.
-------------------------------------------------------------------
Wed Jun 25 10:38:01 UTC 2014 - hrvoje.senjan@gmail.com
- Update to 5.3.1
* Bugfix release, for more details please see:
http://blog.qt.digia.com/blog/2014/06/25/qt-5-3-1-released/
-------------------------------------------------------------------
Mon May 19 23:42:45 UTC 2014 - hrvoje.senjan@gmail.com
- Update to 5.3.0 final
* Minor bugfixes over previous RC
-------------------------------------------------------------------
Thu May 8 18:04:58 UTC 2014 - hrvoje.senjan@gmail.com
- Update to 5.3.0 RC
* For more details, please see
http://blog.qt.digia.com/blog/2014/05/08/qt-5-3-release-candidate-available/
and http://qt-project.org/wiki/New-Features-in-Qt-5.3
-------------------------------------------------------------------
Tue Mar 25 11:44:16 UTC 2014 - hrvoje.senjan@gmail.com
- Update to 5.3.0 beta
* New feature release, please see
http://blog.qt.digia.com/blog/2014/03/25/qt-5-3-beta-released/
and http://qt-project.org/wiki/New-Features-in-Qt-5.3
-------------------------------------------------------------------
Tue Feb 11 10:42:20 UTC 2014 - hrvoje.senjan@gmail.com
- Update to 5.2.1:
* For more details please see:
http://blog.qt.digia.com/blog/2014/02/05/qt-5-2-1-released/
-------------------------------------------------------------------
Mon Feb 10 11:28:59 UTC 2014 - mlin@suse.com
- Install LICENSE files to %doc
-------------------------------------------------------------------
Sat Dec 21 20:00:39 UTC 2013 - hrvoje.senjan@gmail.com
- Update to 5.2.0 final:
* For more details please see:
http://blog.qt.digia.com/blog/2013/12/12/qt-5-2-released-the-best-qt-yet/
http://qt-project.org/qt5/qt52
http://qt.digia.com/Product/Whats-New/Qt-52/
-------------------------------------------------------------------
Fri Nov 29 13:42:39 UTC 2013 - hrvoje.senjan@gmail.com
- Update to 5.2 rc1
* New feature release, please see
http://blog.qt.digia.com/blog/2013/11/29/qt-5-2-release-candidate-1-available/
and http://qt-project.org/wiki/New-Features-in-Qt-5.2
-------------------------------------------------------------------
Thu Nov 7 02:30:46 UTC 2013 - hrvoje.senjan@gmail.com
- Remove global docs from package, they are delivered with qtbase
module
-------------------------------------------------------------------
Mon Oct 28 19:45:28 UTC 2013 - hrvoje.senjan@gmail.com
- Update to 5.2.0-beta1
- Use Qt5 macros
-------------------------------------------------------------------
Sun Jul 7 07:23:51 UTC 2013 - stephan.binner@basyskom.com
- update to Qt 5.1 release
-------------------------------------------------------------------
Tue Jun 18 20:00:00 UTC 2013 - stephan.binner@basyskom.com
- update to Qt 5.1 RC 1
-------------------------------------------------------------------
Mon May 20 20:00:00 UTC 2013 - stephan.binner@basyskom.com
- update to Qt 5.1 Beta 1
-------------------------------------------------------------------
Tue Apr 9 20:00:00 UTC 2013 - stephan.binner@basyskom.com
- update to Qt 5.1 Alpha 1
-------------------------------------------------------------------
Wed Jan 30 19:00:00 UTC 2013 - stephan.binner@basyskom.com
- update to Qt 5.0.1
-------------------------------------------------------------------
Fri Jan 18 10:31:57 UTC 2013 - stephan.binner@basyskom.com
- Install doc files extracted from official Qt offline installer
-------------------------------------------------------------------
Wed Dec 19 20:40:40 UTC 2012 - stephan.binner@basyskom.com
- update to Qt 5.0 release
-------------------------------------------------------------------
Thu Dec 13 10:50:52 UTC 2012 - stephan.binner@basyskom.com
- update to Qt 5.0 Release Candidate 2
-------------------------------------------------------------------
Thu Dec 6 19:54:17 UTC 2012 - stephan.binner@basyskom.com
- update to Qt 5.0 Release Candidate 1
-------------------------------------------------------------------
Thu Nov 15 12:14:39 UTC 2012 - stephan.binner@basyskom.com
- update to Qt 5.0 Beta 2
-------------------------------------------------------------------
Thu Aug 30 11:31:45 UTC 2012 - stephan.binner@basyskom.com
- update to Qt 5.0 Beta 1 release
-------------------------------------------------------------------
Thu May 24 15:29:20 UTC 2012 - stephan.binner@basyskom.com
- update to newer Alpha snapshot / Beta candidate
-------------------------------------------------------------------
Fri Apr 13 13:22:38 UTC 2012 - stephan.binner@basyskom.com
- rework package splitting for Qt 5 modularization
-------------------------------------------------------------------
Thu Apr 5 09:56:15 UTC 2012 - dmueller@suse.com
- Initial packaging (Qt 5.0 Alpha)

190
libqt5-qtdoc.spec Normal file
View File

@ -0,0 +1,190 @@
#
# spec file for package libqt5-qtdoc
#
# Copyright (c) 2023 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
# nodebuginfo
%define real_version 5.15.9
%define tar_version qt-everywhere-opensource-src-5.15.9
Name: libqt5-qtdoc
Version: 5.15.9
Release: 0
Summary: Qt 5 API Documentation
License: LGPL-2.1-with-Qt-Company-Qt-exception-1.1 OR LGPL-3.0-only
Group: Documentation/Other
URL: https://www.qt.io
Source: https://download.qt.io/official_releases/qt/5.15/%{real_version}/single/%{tar_version}.tar.xz
# PATCH-FIX-UPSTREAM
Patch2: 0002-Build-fixes-for-GCC-11.patch
Patch3: 0001-Partially-revert-813a928c7c3cf98670b6043149880ed5c95.patch
# Breaks make_jobs
#!BuildIgnore: cmake
BuildRequires: alsa-devel
BuildRequires: bison
BuildRequires: clang
BuildRequires: cups-devel
BuildRequires: double-conversion-devel
BuildRequires: fdupes
BuildRequires: flex
BuildRequires: gcc-c++
BuildRequires: gperf
BuildRequires: libicu-devel
BuildRequires: libjpeg-devel
BuildRequires: libmng-devel
BuildRequires: libmysqlclient-devel
BuildRequires: libpng-devel
BuildRequires: libproxy-devel
BuildRequires: libpulse-devel
BuildRequires: libqt5-qtbase-common-devel >= %{version}
BuildRequires: libqt5-qtbase-devel >= %{version}
BuildRequires: libqt5-qttools >= %{version}
BuildRequires: libqt5-qttools-devel >= %{version}
BuildRequires: libqt5-qttools-doc >= %{version}
BuildRequires: libtiff-devel
BuildRequires: lksctp-tools-devel
BuildRequires: openssl-devel
BuildRequires: pcre-devel
BuildRequires: pcre2-devel
BuildRequires: pkgconfig
BuildRequires: postgresql-devel
BuildRequires: sqlite3-devel
BuildRequires: tslib-devel
BuildRequires: unixODBC-devel
BuildRequires: xcb-util-image-devel
BuildRequires: xcb-util-keysyms-devel
BuildRequires: xcb-util-renderutil-devel
BuildRequires: xcb-util-wm-devel
BuildRequires: xz
BuildRequires: pkgconfig(dbus-1)
BuildRequires: pkgconfig(egl)
BuildRequires: pkgconfig(fontconfig)
BuildRequires: pkgconfig(freetype2)
BuildRequires: pkgconfig(gbm)
BuildRequires: pkgconfig(gl)
BuildRequires: pkgconfig(glib-2.0)
BuildRequires: pkgconfig(gtk+-3.0)
BuildRequires: pkgconfig(harfbuzz)
BuildRequires: pkgconfig(ice)
BuildRequires: pkgconfig(libinput)
BuildRequires: pkgconfig(libudev)
BuildRequires: pkgconfig(mtdev)
BuildRequires: pkgconfig(nss)
BuildRequires: pkgconfig(sm)
BuildRequires: pkgconfig(x11)
BuildRequires: pkgconfig(xcomposite)
BuildRequires: pkgconfig(xcursor)
BuildRequires: pkgconfig(xdamage)
BuildRequires: pkgconfig(xext)
BuildRequires: pkgconfig(xfixes)
BuildRequires: pkgconfig(xi)
BuildRequires: pkgconfig(xinerama)
BuildRequires: pkgconfig(xkbcommon) >= 0.4.1
BuildRequires: pkgconfig(xkbcommon-x11) >= 0.4.1
BuildRequires: pkgconfig(xkbfile)
BuildRequires: pkgconfig(xproto)
BuildRequires: pkgconfig(xrandr)
BuildRequires: pkgconfig(xtst)
BuildRequires: pkgconfig(xv)
BuildArch: noarch
Requires: %{name}-html = %{version}
Requires: %{name}-qch = %{version}
# Replaced in Qt 5.9.1-rc
Provides: libqt5-qtcharts-docs = %{version}
Obsoletes: libqt5-qtcharts-docs < %{version}
Provides: libqt5-qtdatavis3d-docs = %{version}
Obsoletes: libqt5-qtdatavis3d-docs < %{version}
%description
Qt is a set of libraries for developing applications.
This package pulls in the API documentation in HTML and QCH format.
%package html
Summary: Qt 5 API Documentation in HTML format
Group: Documentation/HTML
%description html
This package contains the Qt API documentation in html format.
%package qch
Summary: Qt 5 API Documentation in QCH format
Group: Documentation/Other
%description qch
This package contains the Qt API Documentation in QCH format, which can be used by tools like KDevelop, Qt Assistant, Qt Creator, etc.
%package devel
Summary: QDoc index files and doxygen tag files for Qt 5 API Documentation
Group: Development/Tools/Doc Generators
Requires: doxygen
Requires: libqt5-qttools => %{version}
%description devel
This package contains the QDoc index files and the doxygen tag files to create cross links between the QCH documentation files. This package is normally not
required.
%prep
%autosetup -p1 -n qt-everywhere-src-%{version}
%build
# We need to link to some of the programs used as that the source assumes they were just built.
ln -s %{_bindir}/rcc-qt5 qtbase/bin/rcc
ln -s %{_bindir}/uic-qt5 qtbase/bin/uic
ln -s %{_bindir}/moc-qt5 qtbase/bin/moc
ln -s %{_libqt5_bindir} qttools/bin
# Create the Makefiles which are required.
# To-Do: Clean up of the options and with this also the BuildRequires.
# FIXME: you should use the %%configure macro
./configure \
-verbose \
-prefix %{_prefix} \
-bindir %{_libqt5_bindir} \
-docdir %{_libqt5_docdir} \
-accessibility \
-no-strip \
-opensource \
-confirm-license \
-release \
-nomake tests \
-nomake examples
%make_jobs docs
%install
make INSTALL_ROOT=%{buildroot} install_docs
%fdupes %{buildroot}%{_libqt5_docdir}
%files
%license LICENSE.*
%files html
%license LICENSE.*
%{_libqt5_docdir}/*/
%exclude %{_libqt5_docdir}/*/*.index
%exclude %{_libqt5_docdir}/*/*.tags
%files qch
%license LICENSE.*
%{_libqt5_docdir}/*.qch
%files devel
%license LICENSE.*
%{_libqt5_docdir}/*/*.index
%{_libqt5_docdir}/*/*.tags
%changelog

BIN
qt-everywhere-opensource-src-5.15.9.tar.xz (Stored with Git LFS) Normal file

Binary file not shown.