commit: b13e96f6e322c70e6a75108f80b73a2c58d81318
Author: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
AuthorDate: Thu Jul 10 14:02:09 2025 +0000
Commit: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
CommitDate: Thu Jul 10 14:33:30 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b13e96f6
dev-qt/qtlocation: drop 6.8.3
Signed-off-by: Ionen Wolkens <ionen <AT> gentoo.org>
dev-qt/qtlocation/Manifest | 1 -
dev-qt/qtlocation/qtlocation-6.8.3.ebuild | 44 -------------------------------
2 files changed, 45 deletions(-)
diff --git a/dev-qt/qtlocation/Manifest b/dev-qt/qtlocation/Manifest
index a6b779f9c70e..863bf888f48d 100644
--- a/dev-qt/qtlocation/Manifest
+++ b/dev-qt/qtlocation/Manifest
@@ -1,2 +1 @@
-DIST qtlocation-everywhere-src-6.8.3.tar.xz 3165768 BLAKE2B
75f8dba414b72a9fa4f79a2316e264bd8535d203b68caae472ef3f5ee4cb9f89587116fa8d51029beada48c6379bf8e58d5a9a770e35102c62ec379cc57d9b9f
SHA512
c7cbd76b6b8b7d09387c7da0e6630959ae66f0c8af2cd26b255e86ec36c6efeec59e4af7b34faa05f2fa035d4dd075d13a8dd0bccaefac48d391b4fa786769c0
DIST qtlocation-everywhere-src-6.9.1.tar.xz 3166576 BLAKE2B
64758ea18c23b1863725187bf8883ef82baedecb461a1fd430ad16a74667b0e7834ab495c42509309f7051ff8847fd80c314fc68254048cf4e321a463586b46a
SHA512
25b1154608bad6e41556b64d098653157a1b4cd8ee2443af284d93bff4828bb4e5af737933b26d03c05e420837e884555e7676d91ffcf47269b01dc1e744ba49
diff --git a/dev-qt/qtlocation/qtlocation-6.8.3.ebuild
b/dev-qt/qtlocation/qtlocation-6.8.3.ebuild
deleted file mode 100644
index 1e368063e6be..000000000000
--- a/dev-qt/qtlocation/qtlocation-6.8.3.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 2021-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit qt6-build
-
-DESCRIPTION="Location (places, maps, navigation) library for the Qt6 framework"
-
-if [[ ${QT6_BUILD_TYPE} == release ]]; then
- KEYWORDS="amd64 arm arm64 ~loong ppc64 ~riscv x86"
-fi
-
-RDEPEND="
- ~dev-qt/qtbase-${PV}:6[network]
- ~dev-qt/qtdeclarative-${PV}:6
- ~dev-qt/qtpositioning-${PV}:6[qml]
-"
-DEPEND="${RDEPEND}"
-
-CMAKE_SKIP_TESTS=(
- # ignores QML_IMPORT_PATH (unlike other tests) and looks in
- # the missing builddir/qml, skip rather than work around
- tst_declarative_ui
-)
-
-src_install() {
- qt6-build_src_install
-
- if use test; then
- local delete=( # sigh
-
"${D}${QT6_LIBDIR}"/cmake/Qt6Location/*TestGeoServicePlugin*.cmake
-
"${D}${QT6_LIBDIR}"/cmake/Qt6Location/*UnsupportedPlacesGeoServicePlugin*.cmake
-
"${D}${QT6_LIBDIR}"/cmake/Qt6Qml/QmlPlugins/*declarative_location_test*.cmake
-
"${D}${QT6_PLUGINDIR}"/geoservices/libqtgeoservices_geocodingplugin.so
-
"${D}${QT6_PLUGINDIR}"/geoservices/libqtgeoservices_placesplugin_unsupported.so
-
"${D}${QT6_PLUGINDIR}"/geoservices/libqtgeoservices_qmltestplugin.so
-
"${D}${QT6_PLUGINDIR}"/geoservices/libqtgeoservices_routingplugin.so
- "${D}${QT6_QMLDIR}"/QtLocation/Test
- )
- # using -f given not tracking which tests may be skipped or not
- rm -rf -- "${delete[@]}" || die
- fi
-}