summaryrefslogtreecommitdiff
path: root/user/qt5-qtpositioning
diff options
context:
space:
mode:
Diffstat (limited to 'user/qt5-qtpositioning')
-rw-r--r--user/qt5-qtpositioning/APKBUILD21
-rw-r--r--user/qt5-qtpositioning/no-getting-thread-names.patch12
2 files changed, 8 insertions, 25 deletions
diff --git a/user/qt5-qtpositioning/APKBUILD b/user/qt5-qtpositioning/APKBUILD
index 9f74280ef..e81ddef81 100644
--- a/user/qt5-qtpositioning/APKBUILD
+++ b/user/qt5-qtpositioning/APKBUILD
@@ -1,24 +1,21 @@
# Contributor: A. Wilcox <awilfox@adelielinux.org>
# Maintainer: A. Wilcox <awilfox@adelielinux.org>
pkgname=qt5-qtpositioning
-_pkgname=qtlocation-opensource-src
-pkgver=5.9.7
-pkgrel=0
-pkgdesc="Qt 5 - Geolocation services"
+_pkgname=qtlocation-everywhere
+pkgver=5.15.4
+pkgrel=1
+pkgdesc="Geolocation services for Qt 5"
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="icu-dev qt5-qtbase-dev"
subpackages="$pkgname-dev"
-source="https://download.qt.io/official_releases/qt/${pkgver%.*}/$pkgver/submodules/$_pkgname-$pkgver.tar.xz
- no-getting-thread-names.patch
- "
-builddir="$srcdir"/$_pkgname-$pkgver
+source="https://download.qt.io/official_releases/qt/${pkgver%.*}/$pkgver/submodules/$_pkgname-opensource-src-$pkgver.tar.xz"
+builddir="$srcdir"/$_pkgname-src-$pkgver
build() {
- cd "$builddir"
qmake
# too memory hungry
if [ -z "$JOBS" ] || [ $JOBS -gt 16 ]; then
@@ -29,9 +26,7 @@ build() {
}
package() {
- cd "$builddir"
make install INSTALL_ROOT="$pkgdir"
}
-sha512sums="a0ee0d699ecf568eb9371ff0743f9ec65f568e235e8964a2e3187a3135fc943795101c8922fbe560779f7878f44a630383234a65ed67aea35d084ce04eeb7a96 qtlocation-opensource-src-5.9.7.tar.xz
-8590335ae90ade1c685ff99fb4319d1b7448d2ae15ba999e3dc9a29e62eda3db587d8ee366dc68fad6eb9e0872532d50f0bdc74f4689a554ca095ad24967418c no-getting-thread-names.patch"
+sha512sums="6208052d6ac173d19dc77496d8108558e7f31696dc5792fcbbeef2029539db76a60c5a51a7d198f54ea6c0ec23977a57cd8c8f8fa80fe5eac9528d2510c3dbb3 qtlocation-everywhere-opensource-src-5.15.4.tar.xz"
diff --git a/user/qt5-qtpositioning/no-getting-thread-names.patch b/user/qt5-qtpositioning/no-getting-thread-names.patch
deleted file mode 100644
index 63aa8f66c..000000000
--- a/user/qt5-qtpositioning/no-getting-thread-names.patch
+++ /dev/null
@@ -1,12 +0,0 @@
---- qtlocation-opensource-src-5.9.6/src/3rdparty/mapbox-gl-native/platform/default/thread.cpp.old 2017-11-29 18:38:56.000000000 +0000
-+++ qtlocation-opensource-src-5.9.6/src/3rdparty/mapbox-gl-native/platform/default/thread.cpp 2018-07-16 09:24:16.990000000 +0000
-@@ -11,7 +11,9 @@
-
- std::string getCurrentThreadName() {
- char name[32] = "unknown";
-+#ifdef __GLIBC__
- pthread_getname_np(pthread_self(), name, sizeof(name));
-+#endif
-
- return name;
- }