[arch-commits] Commit in qt6-doc/repos/kde-unstable-any (3 files)
Antonio Rojas
arojas at archlinux.org
Wed Nov 11 21:43:53 UTC 2020
Date: Wednesday, November 11, 2020 @ 21:43:52
Author: arojas
Revision: 400427
archrelease: copy kde-unstable to kde-unstable-any
Added:
qt6-doc/repos/kde-unstable-any/PKGBUILD
(from rev 400426, qt6-doc/kde-unstable/PKGBUILD)
qt6-doc/repos/kde-unstable-any/qt6-doc-bindir.patch
(from rev 400426, qt6-doc/kde-unstable/qt6-doc-bindir.patch)
Deleted:
qt6-doc/repos/kde-unstable-any/PKGBUILD
----------------------+
PKGBUILD | 147 ++++++++++++++++++++++++-------------------------
qt6-doc-bindir.patch | 18 ++++++
2 files changed, 92 insertions(+), 73 deletions(-)
Deleted: PKGBUILD
===================================================================
--- PKGBUILD 2020-11-11 21:42:55 UTC (rev 400426)
+++ PKGBUILD 2020-11-11 21:43:52 UTC (rev 400427)
@@ -1,73 +0,0 @@
-# Maintainer: Antonio Rojas <arojas at archlinux.org>
-# Maintainer: Felix Yan <felixonmars at archlinux.org>
-# Contributor: Andrea Scarpino <andrea at archlinux.org>
-
-pkgbase=qt6-doc
-pkgname=(qt6-doc qt6-examples)
-_qtver=6.0.0-beta3
-pkgver=${_qtver/-/}
-pkgrel=1
-arch=('any')
-url='https://www.qt.io'
-license=(GPL3 LGPL3 FDL custom)
-makedepends=(mariadb-libs unixodbc postgresql alsa-lib gst-plugins-base-libs
- gtk3 libpulse cups freetds vulkan-headers qt6-tools clang python llvm)
-groups=(qt6)
-_pkgfn="qt-everywhere-src-${_qtver}"
-source=("https://download.qt.io/development_releases/qt/${pkgver%.*}/${_qtver}/single/${_pkgfn}.tar.xz")
-sha256sums=('d5a2be779b8aa2374f454f81a0c2064f7306bfd4b6d8f79cae7faadc08ba4e5a')
-
-prepare() {
- mkdir -p $_pkgfn/{qtbase,qttools}/bin
- ln -s /usr/lib/qt6/bin/{uic,rcc} $_pkgfn/qtbase/bin
- ln -s /usr/lib/qt6/bin/{qtattributionsscanner,qdoc,qhelpgenerator} $_pkgfn/qttools/bin
-}
-
-build() {
-# Use qmake, see https://bugreports.qt.io/browse/QTBUG-87382
- cd $_pkgfn
- ./configure -confirm-license -opensource \
- -prefix /usr \
- -docdir /usr/share/doc/qt6 \
- -headerdir /usr/include/qt6 \
- -archdatadir /usr/lib/qt6 \
- -datadir /usr/share/qt6 \
- -bindir /usr/lib/qt6/bin \
- -sysconfdir /etc/xdg \
- -nomake examples
- export PATH="/usr/lib/qt6/bin:$PATH"
- make docs
-}
-
-package_qt6-doc() {
- pkgdesc='A cross-platform application and UI framework (Documentation)'
- cd $_pkgfn
- INSTALL_ROOT="$pkgdir" make install_docs
-
- install -Dm644 LICENSE* -t "$pkgdir"/usr/share/licenses/$pkgbase
-}
-
-package_qt6-examples() {
- pkgdesc='Examples and demos from qt6 documentation'
- depends=('qt6-doc')
-
- _base="$pkgdir"/usr/share/doc/qt6/examples
-
- # The various example dirs have conflicting .pro files, but
- # QtCreator requires them to be in the same top-level directory.
- # Matching the Qt5 installer, only the qtbase project is kept.
- mkdir -p $_base
- cp ${_pkgfn}/qtbase/examples/examples.pro $_base
-
- _fdirs=$(find "${_pkgfn}" -maxdepth 2 -type d -name examples)
- for _dir in $_fdirs; do
- _mod=$(basename ${_dir%/examples})
-
- if [ -e "$_dir/README" ]; then
- cp $_dir/README $_dir/README.$_mod
- fi
-
-# mkdir $_base/$_mod
- cp -rn $_dir/* $_base
- done
-}
Copied: qt6-doc/repos/kde-unstable-any/PKGBUILD (from rev 400426, qt6-doc/kde-unstable/PKGBUILD)
===================================================================
--- PKGBUILD (rev 0)
+++ PKGBUILD 2020-11-11 21:43:52 UTC (rev 400427)
@@ -0,0 +1,74 @@
+# Maintainer: Antonio Rojas <arojas at archlinux.org>
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+# Contributor: Andrea Scarpino <andrea at archlinux.org>
+
+pkgbase=qt6-doc
+pkgname=(qt6-doc qt6-examples)
+_qtver=6.0.0-beta4
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=('any')
+url='https://www.qt.io'
+license=(GPL3 LGPL3 FDL custom)
+makedepends=(cmake mariadb-libs unixodbc postgresql alsa-lib gst-plugins-base-libs
+ gtk3 libpulse cups freetds vulkan-headers clang python llvm qt6-tools)
+groups=(qt6)
+_pkgfn="qt-everywhere-src-${_qtver}"
+source=("https://download.qt.io/development_releases/qt/${pkgver%.*}/${_qtver}/single/${_pkgfn}.tar.xz"
+ qt6-doc-destdir.patch::"https://code.qt.io/cgit/qt/qtbase.git/patch/?id=30ba1855"
+ qt6-doc-bindir.patch)
+sha256sums=('3b35a834491408e74c4ea97c6599e44d0657fcd00a0709083815d25a507d6899'
+ '4ded3d934f42cf04d6707857a55ab0ab19abac262b48057b979c3a1710b0ae12'
+ '60eebdf88559fefdb2b7c65b5f4ec091942aa1ffa371bedb4080545383b46109')
+
+prepare() {
+ patch -d $_pkgfn/qtbase -p1 -i ../../qt6-doc-bindir.patch # Use installed tools
+ patch -d $_pkgfn/qtbase -p1 -i ../../qt6-doc-destdir.patch # Honor DESTDIR
+}
+
+build() {
+ cmake -B build -S $_pkgfn \
+ -DCMAKE_INSTALL_PREFIX=/usr \
+ -DINSTALL_BINDIR=lib/qt6/bin \
+ -DINSTALL_DOCDIR=share/doc/qt6 \
+ -DINSTALL_ARCHDATADIR=lib/qt6 \
+ -DINSTALL_DATADIR=share/qt6 \
+ -DINSTALL_INCLUDEDIR=include/qt6 \
+ -DINSTALL_MKSPECSDIR=lib/qt6/mkspecs \
+ -DINSTALL_EXAMPLESDIR=share/doc/qt6/examples \
+ -DQT_FEATURE_journald=ON \
+ -DQT_FEATURE_openssl_linked=ON
+ cmake --build build --target docs
+}
+
+package_qt6-doc() {
+ pkgdesc='A cross-platform application and UI framework (Documentation)'
+ DESTDIR="$pkgdir" cmake --build build --target install_docs
+
+ install -Dm644 $_pkgfn/LICENSE* -t "$pkgdir"/usr/share/licenses/$pkgbase
+}
+
+package_qt6-examples() {
+ pkgdesc='Examples and demos from qt6 documentation'
+ depends=('qt6-doc')
+
+ _base="$pkgdir"/usr/share/doc/qt6/examples
+
+ # The various example dirs have conflicting .pro files, but
+ # QtCreator requires them to be in the same top-level directory.
+ # Matching the Qt5 installer, only the qtbase project is kept.
+ mkdir -p $_base
+ cp ${_pkgfn}/qtbase/examples/examples.pro $_base
+
+ _fdirs=$(find "${_pkgfn}" -maxdepth 2 -type d -name examples)
+ for _dir in $_fdirs; do
+ _mod=$(basename ${_dir%/examples})
+
+ if [ -e "$_dir/README" ]; then
+ cp $_dir/README $_dir/README.$_mod
+ fi
+
+# mkdir $_base/$_mod
+ cp -rn $_dir/* $_base
+ done
+}
Copied: qt6-doc/repos/kde-unstable-any/qt6-doc-bindir.patch (from rev 400426, qt6-doc/kde-unstable/qt6-doc-bindir.patch)
===================================================================
--- qt6-doc-bindir.patch (rev 0)
+++ qt6-doc-bindir.patch 2020-11-11 21:43:52 UTC (rev 400427)
@@ -0,0 +1,18 @@
+diff --git a/cmake/QtDocsHelpers.cmake b/cmake/QtDocsHelpers.cmake
+index 8e4bd28918..963114e1ec 100644
+--- a/cmake/QtDocsHelpers.cmake
++++ b/cmake/QtDocsHelpers.cmake
+@@ -31,12 +31,7 @@ function(qt_internal_add_docs)
+ return()
+ endif()
+
+- if(QT_SUPERBUILD)
+- set(doc_tools_dir "${QtBase_BINARY_DIR}/${INSTALL_BINDIR}")
+- else()
+- set(doc_tools_dir "${QT_BUILD_INTERNALS_RELOCATABLE_INSTALL_PREFIX}/${INSTALL_BINDIR}")
+- endif()
+-
++ set(doc_tools_dir "/usr/lib/qt6/bin")
+ set(qdoc_bin "${doc_tools_dir}/qdoc${CMAKE_EXECUTABLE_SUFFIX}")
+ set(qtattributionsscanner_bin "${doc_tools_dir}/qtattributionsscanner${CMAKE_EXECUTABLE_SUFFIX}")
+ set(qhelpgenerator_bin "${doc_tools_dir}/qhelpgenerator${CMAKE_EXECUTABLE_SUFFIX}")
More information about the arch-commits
mailing list