From 506eacab2cea6aa0ad0d119c573a3ff18b9b7635 Mon Sep 17 00:00:00 2001 From: Schrijvers Luc Date: Wed, 29 May 2024 18:49:21 +0200 Subject: [PATCH] Add KF6 frameworks, krunner6 (#10542) --- kde-frameworks/krunner/krunner6-6.2.0.recipe | 128 +++++++++++++++++++ 1 file changed, 128 insertions(+) create mode 100644 kde-frameworks/krunner/krunner6-6.2.0.recipe diff --git a/kde-frameworks/krunner/krunner6-6.2.0.recipe b/kde-frameworks/krunner/krunner6-6.2.0.recipe new file mode 100644 index 000000000..129148dd8 --- /dev/null +++ b/kde-frameworks/krunner/krunner6-6.2.0.recipe @@ -0,0 +1,128 @@ +SUMMARY="Framework for Plasma runners" +DESCRIPTION="The Plasma workspace provides an application called KRunner which, among other \ +things, allows one to type into a text area which causes various actions and information that \ +match the text appear as the text is being typed." +HOMEPAGE="https://invent.kde.org/frameworks/krunner" +COPYRIGHT="2010-2024 KDE Organisation" +LICENSE="GNU LGPL v2" +REVISION="1" +SOURCE_URI="https://download.kde.org/stable/frameworks/${portVersion%.*}/krunner-${portVersion}.tar.xz" +CHECKSUM_SHA256="f18f1578ff8c76c455837a4bc9a3e71273bba4ac54afd24e143a9dc20706041f" +SOURCE_DIR="krunner-$portVersion" + +ARCHITECTURES="all !x86_gcc2" +SECONDARY_ARCHITECTURES="x86" + +libVersion="$portVersion" +libVersionCompat="$libVersion compat >= ${libVersion%%.*}" + +PROVIDES=" + krunner6$secondaryArchSuffix = $portVersion + lib:libKF6Runner$secondaryArchSuffix = $libVersionCompat + " +REQUIRES=" + haiku$secondaryArchSuffix + lib:libGL$secondaryArchSuffix + lib:libKF6Codecs$secondaryArchSuffix + lib:libKF6ConfigCore$secondaryArchSuffix + lib:libKF6CoreAddons$secondaryArchSuffix + lib:libKF6I18n$secondaryArchSuffix + lib:libKF6ItemModels$secondaryArchSuffix + lib:libKF6KIOCore$secondaryArchSuffix + lib:libKF6Package$secondaryArchSuffix + lib:libKF6Service$secondaryArchSuffix + lib:libKF6ThreadWeaver$secondaryArchSuffix + lib:libQt6Core$secondaryArchSuffix + lib:libQt6DBus$secondaryArchSuffix + lib:libQt6Gui$secondaryArchSuffix + lib:libQt6Network$secondaryArchSuffix + lib:libQt6Widgets$secondaryArchSuffix + lib:libQt6Xml$secondaryArchSuffix + " + +PROVIDES_devel=" + krunner6${secondaryArchSuffix}_devel = $portVersion + devel:libKF6Runner$secondaryArchSuffix = $libVersionCompat + " +REQUIRES_devel=" + krunner6$secondaryArchSuffix == $portVersion base + " + +BUILD_REQUIRES=" + haiku${secondaryArchSuffix}_devel + extra_cmake_modules$secondaryArchSuffix >= $portVersion + qt6_tools${secondaryArchSuffix}_devel + devel:libKF6AuthCore$secondaryArchSuffix == $portVersion + devel:libKF6Bookmarks$secondaryArchSuffix == $portVersion + devel:libKF6Codecs$secondaryArchSuffix == $portVersion + devel:libKF6Completion$secondaryArchSuffix == $portVersion + devel:libKF6ConfigCore$secondaryArchSuffix == $portVersion + devel:libKF6ConfigWidgets$secondaryArchSuffix == $portVersion + devel:libKF6CoreAddons$secondaryArchSuffix == $portVersion + devel:libKF6I18n$secondaryArchSuffix == $portVersion + devel:libKF6ItemModels$secondaryArchSuffix == $portVersion + devel:libKF6ItemViews$secondaryArchSuffix == $portVersion + devel:libKF6JobWidgets$secondaryArchSuffix == $portVersion + devel:libKF6KIOCore$secondaryArchSuffix == $portVersion + devel:libKF6Package$secondaryArchSuffix == $portVersion + devel:libKF6Service$secondaryArchSuffix == $portVersion + devel:libKF6Solid$secondaryArchSuffix == $portVersion + devel:libKF6ThreadWeaver$secondaryArchSuffix == $portVersion + devel:libKF6WidgetsAddons$secondaryArchSuffix == $portVersion + devel:libKF6WindowSystem$secondaryArchSuffix == $portVersion + devel:libKF6XmlGui$secondaryArchSuffix == $portVersion + devel:libQt6Core$secondaryArchSuffix + devel:libQt6DBus$secondaryArchSuffix + devel:libQt6Gui$secondaryArchSuffix + devel:libQt6Network$secondaryArchSuffix + devel:libQt6Qml$secondaryArchSuffix + devel:libQt6Widgets$secondaryArchSuffix + devel:libQt6Xml$secondaryArchSuffix + " +BUILD_PREREQUIRES=" + cmd:cmake + cmd:dot + cmd:doxygen >= 1.9 + cmd:g++$secondaryArchSuffix + cmd:make + cmd:msgfmt + cmd:msgmerge + cmd:pkg_config$secondaryArchSuffix + cmd:xsltproc + " + +TEST_REQUIRES=" + qthaikuplugins + " + +BUILD() +{ + cmake -Bbuild -S. $cmakeDirArgs \ + -DCMAKE_BUILD_TYPE=Release \ + -DKDE_INSTALL_PLUGINDIR=$addOnsDir/Qt6 \ + -DKDE_INSTALL_QMLDIR=$dataDir/Qt6/qml \ + -DECM_DIR=/system/data/cmake/Modules/ECM/cmake \ + -DBUILD_QCH=ON \ + -DBUILD_TESTING=OFF + make -C build $jobArgs +} + +INSTALL() +{ + make -C build install + + prepareInstalledDevelLib \ + libKF6Runner + + packageEntries devel \ + $libDir/cmake \ + $dataDir/doc \ + $developDir +} + +TEST() +{ + # 43% tests passed, 4 tests failed out of 7 (dbus related) + export LIBRARY_PATH="$sourceDir/build/bin${LIBRARY_PATH:+:$LIBRARY_PATH}" + make -C build test +}