diff options
author | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2019-12-27 04:02:42 -0600 |
---|---|---|
committer | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2019-12-27 04:02:42 -0600 |
commit | 47d18b13213ccd7c51894796760f97571c3eb424 (patch) | |
tree | 6e31cc5d066c199564a5c8f34a40d313a08c44aa /user/qt5-qtsensors/APKBUILD | |
parent | 9b07de55dfe6d50baeda3a8feda7f9fcade9c647 (diff) | |
download | packages-47d18b13213ccd7c51894796760f97571c3eb424.tar.gz packages-47d18b13213ccd7c51894796760f97571c3eb424.tar.bz2 packages-47d18b13213ccd7c51894796760f97571c3eb424.tar.xz packages-47d18b13213ccd7c51894796760f97571c3eb424.zip |
user/qt5: Bump to 5.12.6 LTS
This updates Qt 5 to the latest LTS release available. Notable changes:
* The infamous clipboard bug (upstream QTBUG-65145; Gerrit 254187) is fixed!
* Qt Declarative's "V4 JIT" is disabled globally on pmmx. It is no longer
(easily) possible to turn off the JIT selectively based on CPU capability.
* Qt Script builds correctly on GCC 8 now.
This does not include:
* Build testing of Qt Multimedia (yet); this depends on the time64-isation
of the alsa-lib package (at least).
* Build testing of Qt Speech (yet); speech-dispatcher also deps on alsa-lib
indirectly.
* Qt WebKit 5.212. This will be committed later.
Diffstat (limited to 'user/qt5-qtsensors/APKBUILD')
-rw-r--r-- | user/qt5-qtsensors/APKBUILD | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/user/qt5-qtsensors/APKBUILD b/user/qt5-qtsensors/APKBUILD index bc363c58b..1a4abe625 100644 --- a/user/qt5-qtsensors/APKBUILD +++ b/user/qt5-qtsensors/APKBUILD @@ -1,29 +1,27 @@ # Contributor: A. Wilcox <awilfox@adelielinux.org> # Maintainer: A. Wilcox <awilfox@adelielinux.org> pkgname=qt5-qtsensors -_pkgname=qtsensors-opensource-src -pkgver=5.9.7 +_pkgname=qtsensors-everywhere-src +pkgver=5.12.6 pkgrel=0 -pkgdesc="Qt 5 - Library for interfacing with sensors" +pkgdesc="Library for interfacing with sensors using Qt" url="https://www.qt.io/" arch="all" options="!check" -license="LGPLv2 with exceptions OR GPLv3 with exceptions" +license="LGPL-3.0-only WITH Qt-LGPL-exception-1.1 OR GPL-3.0-only WITH Qt-GPL-exception-1.0" depends="" makedepends="qt5-qtbase-dev" subpackages="$pkgname-dev" -source="http://download.qt-project.org/official_releases/qt/${pkgver%.*}/$pkgver/submodules/$_pkgname-$pkgver.tar.xz" +source="https://download.qt.io/official_releases/qt/${pkgver%.*}/$pkgver/submodules/$_pkgname-$pkgver.tar.xz" builddir="$srcdir"/$_pkgname-$pkgver build() { - cd "$builddir" qmake make } package() { - cd "$builddir" make install INSTALL_ROOT="$pkgdir" } -sha512sums="b07c5a79e9f1db5d64bef6fb92954c7467858d5f00f9bc96f8f7c8651121c1c57de7d21b273827830814919b5fa19720515d3a2dab77bf87876e60fdaedae788 qtsensors-opensource-src-5.9.7.tar.xz" +sha512sums="82921de2fac2e0dcccd7b8ce2a0f5ce83d0e6d9a92a5294a59bc3d5a498de0fd644e284ba69f1ddf61c6f467627ef37bedfa0b8b6890b509cb7755109f444a49 qtsensors-everywhere-src-5.12.6.tar.xz" |