dev-qt/qtserialbus: drop 6.8.3

Signed-off-by: Ionen Wolkens <ionen@gentoo.org>
This commit is contained in:
Ionen Wolkens 2025-07-10 10:02:17 -04:00
parent e57c0a59b1
commit 102c8f3426
No known key found for this signature in database
GPG Key ID: B24406B0B0AC4334
2 changed files with 0 additions and 39 deletions

View File

@ -1,2 +1 @@
DIST qtserialbus-everywhere-src-6.8.3.tar.xz 550256 BLAKE2B 0341afd7474056880474c510dde409f5ad9b81fafd4d76afdaa29ed734f0f7a1cc7513cef7515d142697981fa45739995f29df94698537e12f2b7645becc27cc SHA512 b0ce725382c15048913204e6173dd899af6f8233ff3a098f497dea6a3d9d2cd436ad7944165398fba59f92098f7e38e7c3c5efa47a7ffeec2bf3a464ae9d4539
DIST qtserialbus-everywhere-src-6.9.1.tar.xz 550652 BLAKE2B ea6c638e4e4334b524a1082fb4fe83698127745a16711dffc8a2aa066597401959de0dcdf7a6a46699b106734528c0ddc8bb1cb106b56c9798feffa952b8f13f SHA512 b99c2c64285c7f5f3bb7dc2128a2bac2dd3a8c50b32574377865fe8ddf0e91bf4dbbae813c1414a6bf0db57d01dd6ccc8f064bc896e382137de1821e31f1cfa4

View File

@ -1,38 +0,0 @@
# Copyright 2024-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit qt6-build
DESCRIPTION="Qt module to access CAN, ModBus, and other industrial serial buses and protocols"
if [[ ${QT6_BUILD_TYPE} == release ]]; then
KEYWORDS="amd64 x86"
fi
RDEPEND="
~dev-qt/qtbase-${PV}:6[network]
~dev-qt/qtserialport-${PV}:6
"
DEPEND="${RDEPEND}"
CMAKE_SKIP_TESTS=(
# rarely fails randomly (perhaps related to -j)
tst_qcandbcfileparser
)
src_install() {
qt6-build_src_install
if use test; then
local delete=( # sigh
"${D}${QT6_LIBDIR}"/cmake/Qt6SerialBus/*TestCanBusPlugin*.cmake
"${D}${QT6_MKSPECSDIR}"/modules/qt_plugin_qttestcanbus.pri
"${D}${QT6_PLUGINDIR}"/canbus/libqttestcanbus.*
"${D}${QT6_PLUGINDIR}"/canbus/objects-*/
)
# using -f given not tracking which tests may be skipped or not
rm -rf -- "${delete[@]}" || die
fi
}