From adb4fddd6851e2baf715ad0ce7ae80184aba7792 Mon Sep 17 00:00:00 2001 From: Ionen Wolkens Date: Mon, 9 Jun 2025 03:33:53 -0400 Subject: [PATCH] qt6-build.eclass: cleanup obsolete <6.8.3 block Signed-off-by: Ionen Wolkens --- eclass/qt6-build.eclass | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/eclass/qt6-build.eclass b/eclass/qt6-build.eclass index f8b01845a4c92..c60a56f84203b 100644 --- a/eclass/qt6-build.eclass +++ b/eclass/qt6-build.eclass @@ -239,24 +239,6 @@ _qt6-build_create_user_facing_links() { # even if no links (empty), if missing will assume that it is an error [[ ${PN} == qttranslations ]] && return - # TODO: drop when <6.8.3 is gone, unneeded version with relative paths - if ver_test -lt 6.8.3; then - local link - while IFS= read -r link; do - if [[ -z ${link} ]]; then - continue - elif [[ ${link} =~ ^("${QT6_PREFIX}"/.+)\ ("${QT6_PREFIX}"/bin/.+) ]] - then - dosym -r "${BASH_REMATCH[1]#"${EPREFIX}"}" \ - "${BASH_REMATCH[2]#"${EPREFIX}"}" - else - die "unrecognized user_facing_tool_links.txt line: ${link}" - fi - done < "${BUILD_DIR}"/user_facing_tool_links.txt || die - - return - fi - local link while IFS= read -r link; do if [[ -z ${link} ]]; then