dev-qt/qtpositioning: drop 6.9.2

Signed-off-by: Ionen Wolkens <ionen@gentoo.org>
This commit is contained in:
Ionen Wolkens 2025-10-15 12:06:30 -04:00
parent 3d25afa417
commit a71f0a83c1
No known key found for this signature in database
GPG Key ID: B24406B0B0AC4334
2 changed files with 0 additions and 69 deletions

View File

@ -1,4 +1,3 @@
DIST qtlocation-everywhere-opensource-src-5.15.17.tar.xz 6550288 BLAKE2B 3c83702a55a0dc1dc000a918f0b4d5b8694c1f51454db79bd01f25e9aec72531195286f4114cee68245a4b18e9de13ec192412f092d35b45caac10227a83a092 SHA512 0f4a317948f46b58497d5d08a91c887c80f74e256d899816d5ec73120dd1931ae6129f6a16bd93b6fc2285141956e0f2c6e6ddebe5c536423fbb6314f4558473
DIST qtpositioning-everywhere-src-6.10.0.tar.xz 648912 BLAKE2B 5480eab63b2eb9abbc71bf4cf02621a89beef0c2ee82e89c05201ee71377604892285e41c8d1a6bd69d3a698d8700c19e0d568d56c0f61400dad30fd90ab27a8 SHA512 5fe4b12d9e8464a5f730e36045079742939abad6dc4279e79df5620ef9522406f8e659559fcb1dc60aa92a9af93cc3f14bbeeccc5efb05774ccc2c4788392cf1
DIST qtpositioning-everywhere-src-6.9.2.tar.xz 649488 BLAKE2B 53f6d586bc51f8b973f956ea3e47b432ca43ca8ac2adee000cfb2fad0ae1aad0e22d002ffdebc54faf5562782462a7eb01bf91b71422d7a3e8c07a2674734036 SHA512 ab9fdb39e7e564b5b9c6a07ddfa024830b3721d5ad697da313ec48c743ec990d29d3e7e7d66e77e8c9589c653b222aefb7c639bf0547f94927083322daff5333
DIST qtpositioning-everywhere-src-6.9.3.tar.xz 649260 BLAKE2B 3943dac4012f4fe93109bfd171e04428d9792d68c2e4a43a7ceb68701b937125e2d395ef19bb36af3fc163ca4919f2b411ae7fac260f80a6efe7772171069d07 SHA512 d76acf54df301b678e138486f1fda1a5ccb814bc80c8f5bfd16b075b1abc300f19798c54190be072ecbd2961060c19b370f72ff490cee0b23684dd8fa95dc250

View File

@ -1,68 +0,0 @@
# Copyright 2021-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit qt6-build
DESCRIPTION="Physical position determination library for the Qt6 framework"
if [[ ${QT6_BUILD_TYPE} == release ]]; then
KEYWORDS="amd64 arm arm64 ~hppa ~loong ppc ppc64 ~riscv x86"
fi
IUSE="geoclue nmea +qml"
DEPEND="
~dev-qt/qtbase-${PV}:6
geoclue? ( ~dev-qt/qtbase-${PV}:6[dbus] )
nmea? (
~dev-qt/qtbase-${PV}:6[network]
~dev-qt/qtserialport-${PV}:6
)
qml? ( ~dev-qt/qtdeclarative-${PV}:6 )
"
RDEPEND="
${DEPEND}
geoclue? ( app-misc/geoclue:2.0 )
"
CMAKE_SKIP_TESTS=(
# threads test (rarely) fails randomly
tst_qgeoareamonitor
)
src_prepare() {
qt6-build_src_prepare
# unfortunately cmake_use_find_package would break things with qtbase
use geoclue ||
sed -e 's/TARGET Qt::DBus/FALSE/' \
-i src/plugins/position/CMakeLists.txt || die
use nmea ||
sed -e 's/TARGET Qt::Network/FALSE/' \
-i src/plugins/position/CMakeLists.txt || die
}
src_configure() {
local mycmakeargs=(
$(cmake_use_find_package qml Qt6Qml)
)
qt6-build_src_configure
}
src_install() {
qt6-build_src_install
if use test; then
local delete=( # sigh
"${D}${QT6_LIBDIR}"/cmake/Qt6Positioning/*DummyPlugin*.cmake
"${D}${QT6_LIBDIR}"/cmake/Qt6Positioning/*TestPlugin*.cmake
"${D}${QT6_PLUGINDIR}"/position/libqtposition_satellitesourcetest.so
"${D}${QT6_PLUGINDIR}"/position/libqtposition_testplugin{,2}.so
)
# using -f given not tracking which tests may be skipped or not
rm -f -- "${delete[@]}" || die
fi
}