From 8786f24b20ce49e8553d1c1532d5d8287f4f405a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?= Date: Mon, 21 Nov 2022 17:08:51 +0700 Subject: [PATCH 01/45] extra-cmake-modules: fix libexecdir location --- .../patches/libexecdir.patch | 39 +++++++++++++++++++ srcpkgs/extra-cmake-modules/template | 2 +- 2 files changed, 40 insertions(+), 1 deletion(-) create mode 100644 srcpkgs/extra-cmake-modules/patches/libexecdir.patch diff --git a/srcpkgs/extra-cmake-modules/patches/libexecdir.patch b/srcpkgs/extra-cmake-modules/patches/libexecdir.patch new file mode 100644 index 000000000000..92b9edfe443d --- /dev/null +++ b/srcpkgs/extra-cmake-modules/patches/libexecdir.patch @@ -0,0 +1,39 @@ +Index: extra-cmake-modules-5.100.0/kde-modules/KDEInstallDirs5.cmake +=================================================================== +--- extra-cmake-modules-5.100.0.orig/kde-modules/KDEInstallDirs5.cmake ++++ extra-cmake-modules-5.100.0/kde-modules/KDEInstallDirs5.cmake +@@ -43,7 +43,7 @@ deprecated variable name in square brack + ``EXECROOTDIR/lib/`` is one of (default value + ``EXECROOTDIR/lib/ Date: Mon, 21 Nov 2022 17:22:51 +0700 Subject: [PATCH 02/45] pkglint: forbid /usr/lib/libexec --- common/hooks/pre-pkg/99-pkglint.sh | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/common/hooks/pre-pkg/99-pkglint.sh b/common/hooks/pre-pkg/99-pkglint.sh index a63e37207929..8c643f7deb94 100644 --- a/common/hooks/pre-pkg/99-pkglint.sh +++ b/common/hooks/pre-pkg/99-pkglint.sh @@ -29,6 +29,15 @@ hook() { fi done + if [ -d ${PKGDESTDIR}/usr/lib/libexec ]; then + # Add exception for kconfig, + # other packages hard-coded path to its files + if [ "${pkgname}" != kconfig ]; then + msg_red "${pkgver}: /usr/lib/libexec directory is not allowed!\n" + error=1 + fi + fi + for f in "$PKGDESTDIR"/*; do f="${f##*/}" case "$f" in From e9fba52364d0971415bff07f649285a8e34d7bce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?= Date: Mon, 21 Nov 2022 17:15:11 +0700 Subject: [PATCH 03/45] kconfig: fix libexecdir location --- .../add-crossbuild-support-for-its-tools.patch | 8 ++++---- srcpkgs/kconfig/template | 11 ++++++++++- 2 files changed, 14 insertions(+), 5 deletions(-) diff --git a/srcpkgs/kconfig/patches/add-crossbuild-support-for-its-tools.patch b/srcpkgs/kconfig/patches/add-crossbuild-support-for-its-tools.patch index 83dbe2be9230..081d23ac9a38 100644 --- a/srcpkgs/kconfig/patches/add-crossbuild-support-for-its-tools.patch +++ b/srcpkgs/kconfig/patches/add-crossbuild-support-for-its-tools.patch @@ -14,12 +14,12 @@ of cross-build, since these cmake directive lines are always evalued at *their* else() include("${CMAKE_CURRENT_LIST_DIR}/KF5ConfigCompilerTargets.cmake") + if(CMAKE_CROSSCOMPILING) -+ set_target_properties(KF5::kconfig_compiler PROPERTIES IMPORTED_LOCATION_NONE /usr/lib/libexec/kf5/kconfig_compiler_kf5) -+ set_target_properties(KF5::kconfig_compiler PROPERTIES IMPORTED_LOCATION /usr/lib/libexec/kf5/kconfig_compiler_kf5) ++ set_target_properties(KF5::kconfig_compiler PROPERTIES IMPORTED_LOCATION_NONE /usr/libexec/kf5/kconfig_compiler_kf5) ++ set_target_properties(KF5::kconfig_compiler PROPERTIES IMPORTED_LOCATION /usr/libexec/kf5/kconfig_compiler_kf5) + endif() + if(CMAKE_CROSSCOMPILING) -+ set_target_properties(KF5::kconf_update PROPERTIES IMPORTED_LOCATION_NONE /usr/lib/libexec/kf5/kconf_update) -+ set_target_properties(KF5::kconf_update PROPERTIES IMPORTED_LOCATION /usr/lib/libexec/kf5/kconf_update) ++ set_target_properties(KF5::kconf_update PROPERTIES IMPORTED_LOCATION_NONE /usr/libexec/kf5/kconf_update) ++ set_target_properties(KF5::kconf_update PROPERTIES IMPORTED_LOCATION /usr/libexec/kf5/kconf_update) + endif() endif() include("${CMAKE_CURRENT_LIST_DIR}/KF5ConfigMacros.cmake") diff --git a/srcpkgs/kconfig/template b/srcpkgs/kconfig/template index ddf3d4337773..554c82a1c250 100644 --- a/srcpkgs/kconfig/template +++ b/srcpkgs/kconfig/template @@ -1,7 +1,7 @@ # Template file for 'kconfig' pkgname=kconfig version=5.100.1 -revision=1 +revision=2 build_style=cmake hostmakedepends="kcoreaddons extra-cmake-modules qt5-host-tools qt5-tools-devel" makedepends="qt5-devel qt5-tools-devel qt5-declarative-devel" @@ -18,6 +18,15 @@ do_check() { ctest -E 'kconfigcore-kconfigtest' } +post_install() { + # Backward compatible symlink + vmkdir usr/lib/libexec/kf5 + ln -s ../../../libexec/kf5/kconf_update \ + ${DESTDIR}/usr/lib/libexec/kf5 + ln -s ../../../libexec/kf5/kconfig_compiler_kf5 \ + ${DESTDIR}/usr/lib/libexec/kf5 +} + kconfig-devel_package() { short_desc+=" - development" depends="${makedepends} ${sourcepkg}>=${version}_${revision}" From 3ef07cf80186553912f3061a967a9c3bbd923b97 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?= Date: Mon, 21 Nov 2022 17:26:57 +0700 Subject: [PATCH 04/45] baloo5: fix libexecdir location --- srcpkgs/baloo5/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/baloo5/template b/srcpkgs/baloo5/template index 099f872a6b7b..690adf4694b8 100644 --- a/srcpkgs/baloo5/template +++ b/srcpkgs/baloo5/template @@ -1,7 +1,7 @@ # Template file for 'baloo5' pkgname=baloo5 version=5.100.0 -revision=1 +revision=2 build_style=cmake configure_args=" -DDESKTOPTOJSON_EXECUTABLE=/usr/bin/desktoptojson" From a706b4b2189ccf0b828c75efbd63151c0c16bd57 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?= Date: Mon, 21 Nov 2022 17:26:57 +0700 Subject: [PATCH 05/45] corectrl: fix libexecdir location --- srcpkgs/corectrl/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/corectrl/template b/srcpkgs/corectrl/template index f2f69afbe30d..b85385804faa 100644 --- a/srcpkgs/corectrl/template +++ b/srcpkgs/corectrl/template @@ -1,7 +1,7 @@ # Template file for 'corectrl' pkgname=corectrl version=1.2.3 -revision=2 +revision=3 build_style=cmake configure_args="-DBUILD_TESTING=OFF" hostmakedepends="pkg-config extra-cmake-modules qt5-host-tools qt5-qmake From 9c5ee4f9275e7e4386eb9b68e2e93ba13baa7285 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?= Date: Mon, 21 Nov 2022 17:26:58 +0700 Subject: [PATCH 06/45] execline: fix libexecdir location --- srcpkgs/execline/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/execline/template b/srcpkgs/execline/template index 2df4249d34cc..f1be2b2618c5 100644 --- a/srcpkgs/execline/template +++ b/srcpkgs/execline/template @@ -1,7 +1,7 @@ # Template file for 'execline' pkgname=execline version=2.9.0.1 -revision=1 +revision=2 build_style=configure configure_args="--libdir=/usr/lib --bindir=/usr/bin --with-sysdeps=${XBPS_CROSS_BASE}/usr/lib/skalibs/sysdeps From 194693a63b3cfb18771d5d2e936af3563c43b360 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?= Date: Mon, 21 Nov 2022 17:26:58 +0700 Subject: [PATCH 07/45] frameworkintegration: fix libexecdir location --- srcpkgs/frameworkintegration/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/frameworkintegration/template b/srcpkgs/frameworkintegration/template index 30cb2df51f15..7bf125cbaf57 100644 --- a/srcpkgs/frameworkintegration/template +++ b/srcpkgs/frameworkintegration/template @@ -1,7 +1,7 @@ # Template file for 'frameworkintegration' pkgname=frameworkintegration version=5.100.0 -revision=1 +revision=2 build_style=cmake hostmakedepends="kcoreaddons extra-cmake-modules pkg-config kpackage qt5-host-tools qt5-qmake python3 gettext" From 7bcc077a2d943498ba3931269b074c0656def061 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?= Date: Mon, 21 Nov 2022 17:26:58 +0700 Subject: [PATCH 08/45] hotspot: fix libexecdir location --- srcpkgs/hotspot/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/hotspot/template b/srcpkgs/hotspot/template index e11168c91587..30ce05103fab 100644 --- a/srcpkgs/hotspot/template +++ b/srcpkgs/hotspot/template @@ -1,7 +1,7 @@ # Template file for 'hotspot' pkgname=hotspot version=1.3.0 -revision=1 +revision=2 build_style=cmake hostmakedepends="extra-cmake-modules gettext" makedepends="qt5-devel qt5-svg-devel kconfigwidgets-devel kcoreaddons-devel From baa3a63c6a5c9b278bec7628614c97668f3aa6e3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?= Date: Mon, 21 Nov 2022 17:26:58 +0700 Subject: [PATCH 09/45] k3b: fix libexecdir location --- srcpkgs/k3b/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/k3b/template b/srcpkgs/k3b/template index 3c8c150df561..daf07b6f24c6 100644 --- a/srcpkgs/k3b/template +++ b/srcpkgs/k3b/template @@ -1,7 +1,7 @@ # Template file for 'k3b' pkgname=k3b version=22.04.1 -revision=1 +revision=2 build_style=cmake hostmakedepends="extra-cmake-modules pkg-config qt5-qmake gettext qt5-host-tools kauth kdoctools kcoreaddons" From e5314fa9220fe5e0048fb50e3fd0cea66d0d9f0f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?= Date: Mon, 21 Nov 2022 17:26:58 +0700 Subject: [PATCH 10/45] kactivitymanagerd: fix libexecdir location --- srcpkgs/kactivitymanagerd/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/kactivitymanagerd/template b/srcpkgs/kactivitymanagerd/template index 767c8f5a7042..7b7cd536acef 100644 --- a/srcpkgs/kactivitymanagerd/template +++ b/srcpkgs/kactivitymanagerd/template @@ -1,7 +1,7 @@ # Template file for 'kactivitymanagerd' pkgname=kactivitymanagerd version=5.26.3 -revision=1 +revision=2 build_style=cmake build_helper="qemu" configure_args="-DBUILD_TESTING=OFF" From 5c5156d32a32784be71043dba7ddb2e2913d5f2a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?= Date: Mon, 21 Nov 2022 17:26:58 +0700 Subject: [PATCH 11/45] kalarm: fix libexecdir location --- srcpkgs/kalarm/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/kalarm/template b/srcpkgs/kalarm/template index 46dd4c15ac29..2b5ed58ffd37 100644 --- a/srcpkgs/kalarm/template +++ b/srcpkgs/kalarm/template @@ -1,7 +1,7 @@ # Template file for 'kalarm' pkgname=kalarm version=22.08.2 -revision=1 +revision=2 build_style=cmake hostmakedepends="extra-cmake-modules qt5-qmake qt5-host-tools libxslt kdoctools kauth kconfig gettext" From e461b78a8b5da4af895ebb06ba543f33d8105ac8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?= Date: Mon, 21 Nov 2022 17:26:59 +0700 Subject: [PATCH 12/45] kauth: fix libexecdir location --- srcpkgs/kauth/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/kauth/template b/srcpkgs/kauth/template index 33549dae70dc..7d7136dc9d02 100644 --- a/srcpkgs/kauth/template +++ b/srcpkgs/kauth/template @@ -1,7 +1,7 @@ # Template file for 'kauth' pkgname=kauth version=5.100.0 -revision=1 +revision=2 build_style=cmake hostmakedepends="kcoreaddons extra-cmake-modules pkg-config kcoreaddons qt5-host-tools qt5-qmake qt5-tools-devel polkit-qt5-devel" From 3d0266bfe4e7d7f0d7c0b936cf83e19073a86164 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?= Date: Mon, 21 Nov 2022 17:26:59 +0700 Subject: [PATCH 13/45] kcmutils: fix libexecdir location --- srcpkgs/kcmutils/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/kcmutils/template b/srcpkgs/kcmutils/template index 09c63c8f51a4..5873687d49e3 100644 --- a/srcpkgs/kcmutils/template +++ b/srcpkgs/kcmutils/template @@ -1,7 +1,7 @@ # Template file for 'kcmutils' pkgname=kcmutils version=5.100.0 -revision=1 +revision=2 build_style=cmake build_helper=qemu hostmakedepends="kcoreaddons extra-cmake-modules From c28a5998be9b30117cecf2fb1f2364dc2f7acf5b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?= Date: Mon, 21 Nov 2022 17:26:59 +0700 Subject: [PATCH 14/45] kcron: fix libexecdir location --- srcpkgs/kcron/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/kcron/template b/srcpkgs/kcron/template index 0c9741d98267..52264a35b3cd 100644 --- a/srcpkgs/kcron/template +++ b/srcpkgs/kcron/template @@ -1,7 +1,7 @@ # Template file for 'kcron' pkgname=kcron version=22.04.3 -revision=1 +revision=2 build_style=cmake hostmakedepends="extra-cmake-modules gettext kcoreaddons kdoctools kauth pkg-config qt5-host-tools qt5-qmake" From ed99fec3c40e05e6d04d0d1e3e99a9475c0d54f2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?= Date: Mon, 21 Nov 2022 17:26:59 +0700 Subject: [PATCH 15/45] kde-cli-tools: fix libexecdir location --- srcpkgs/kde-cli-tools/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/kde-cli-tools/template b/srcpkgs/kde-cli-tools/template index c9fb400bfbfe..eddeb93d78d3 100644 --- a/srcpkgs/kde-cli-tools/template +++ b/srcpkgs/kde-cli-tools/template @@ -1,7 +1,7 @@ # Template file for 'kde-cli-tools' pkgname=kde-cli-tools version=5.26.3 -revision=1 +revision=2 build_style=cmake configure_args="-DBUILD_TESTING=OFF -DKF5_HOST_TOOLING=/usr/lib/cmake" hostmakedepends="extra-cmake-modules gettext pkg-config kcmutils-devel From 4a16cacbac7cdab40e2d6520d20e66e2fb4fca1a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?= Date: Mon, 21 Nov 2022 17:27:00 +0700 Subject: [PATCH 16/45] kde-gtk-config5: fix libexecdir location --- srcpkgs/kde-gtk-config5/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/kde-gtk-config5/template b/srcpkgs/kde-gtk-config5/template index 62d9c6417e96..9bc414da5175 100644 --- a/srcpkgs/kde-gtk-config5/template +++ b/srcpkgs/kde-gtk-config5/template @@ -1,7 +1,7 @@ # Template file for 'kde-gtk-config5' pkgname=kde-gtk-config5 version=5.26.3 -revision=1 +revision=2 build_style=cmake configure_args="-DBUILD_TESTING=OFF" hostmakedepends="extra-cmake-modules pkg-config qt5-qmake qt5-host-tools From 245daa866c4d28b45fd9b8069ec2c16fd0d6e25a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?= Date: Mon, 21 Nov 2022 17:27:00 +0700 Subject: [PATCH 17/45] kdeconnect: fix libexecdir location --- srcpkgs/kdeconnect/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/kdeconnect/template b/srcpkgs/kdeconnect/template index 36c644466ca5..3bdbb3294f77 100644 --- a/srcpkgs/kdeconnect/template +++ b/srcpkgs/kdeconnect/template @@ -1,7 +1,7 @@ # Template file for 'kdeconnect' pkgname=kdeconnect version=22.08.2 -revision=1 +revision=2 build_style=cmake configure_args="-DWaylandScanner_EXECUTABLE=/usr/bin/wayland-scanner" hostmakedepends="extra-cmake-modules qt5-host-tools From 797954e5355640c54198dd078350eb1ceb3dc0f3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?= Date: Mon, 21 Nov 2022 17:27:00 +0700 Subject: [PATCH 18/45] kdelibs4support: fix libexecdir location --- srcpkgs/kdelibs4support/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/kdelibs4support/template b/srcpkgs/kdelibs4support/template index b5b6e9f3f26e..4a6f9a568542 100644 --- a/srcpkgs/kdelibs4support/template +++ b/srcpkgs/kdelibs4support/template @@ -1,7 +1,7 @@ # Template file for 'kdelibs4support' pkgname=kdelibs4support version=5.100.0 -revision=1 +revision=2 build_style=cmake configure_args="-DBUILD_DESIGNERPLUGIN=ON -DDESKTOPTOJSON_EXECUTABLE=/usr/bin/desktoptojson" From f8f2cfff1267ae79783bc455086ef602257b81f0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?= Date: Mon, 21 Nov 2022 17:27:00 +0700 Subject: [PATCH 19/45] kdesu: fix libexecdir location --- srcpkgs/kdesu/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/kdesu/template b/srcpkgs/kdesu/template index cb95b31d5b59..a284c59c4b8d 100644 --- a/srcpkgs/kdesu/template +++ b/srcpkgs/kdesu/template @@ -1,7 +1,7 @@ # Template file for 'kdesu' pkgname=kdesu version=5.100.0 -revision=1 +revision=2 build_style=cmake hostmakedepends="kcoreaddons extra-cmake-modules gettext qt5-host-tools qt5-qmake python3" From 576635bd75df0ab1c4f349302e05ed529eb991ab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?= Date: Mon, 21 Nov 2022 17:27:00 +0700 Subject: [PATCH 20/45] khelpcenter: fix libexecdir location --- srcpkgs/khelpcenter/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/khelpcenter/template b/srcpkgs/khelpcenter/template index 948e23d7ef57..bc5aae822d3d 100644 --- a/srcpkgs/khelpcenter/template +++ b/srcpkgs/khelpcenter/template @@ -1,7 +1,7 @@ # Template file for 'khelpcenter' pkgname=khelpcenter version=22.08.2 -revision=1 +revision=2 build_style=cmake configure_args="-DBUILD_TESTING=OFF" hostmakedepends="extra-cmake-modules kcoreaddons pkg-config gettext" From f989f6be420f46718d59bc5bedd5ebafc3a8d1c1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?= Date: Mon, 21 Nov 2022 17:27:00 +0700 Subject: [PATCH 21/45] kinfocenter: fix libexecdir location --- srcpkgs/kinfocenter/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/kinfocenter/template b/srcpkgs/kinfocenter/template index 28fa4fa63aa7..187e6f5518c4 100644 --- a/srcpkgs/kinfocenter/template +++ b/srcpkgs/kinfocenter/template @@ -1,7 +1,7 @@ # Template file for 'kinfocenter' pkgname=kinfocenter version=5.26.3 -revision=1 +revision=2 build_style=cmake configure_args="-DBUILD_TESTING=OFF -DKF5_HOST_TOOLING=/usr/lib/cmake" hostmakedepends="extra-cmake-modules gettext pkg-config qt5-host-tools qt5-qmake From 09282c6be255264da2c8019a85998daa16a798b5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?= Date: Mon, 21 Nov 2022 17:27:01 +0700 Subject: [PATCH 22/45] kinit: fix libexecdir location --- srcpkgs/kinit/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/kinit/template b/srcpkgs/kinit/template index c97bdb9755c2..b18a62a26bf8 100644 --- a/srcpkgs/kinit/template +++ b/srcpkgs/kinit/template @@ -1,7 +1,7 @@ # Template file for 'kinit' pkgname=kinit version=5.100.0 -revision=1 +revision=2 build_style=cmake hostmakedepends="kcoreaddons extra-cmake-modules libcap-progs pkg-config gettext qt5-host-tools qt5-qmake kdoctools" From 3e9e34dc079121fd4dd6a624d61c54ffe19a5055 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?= Date: Mon, 21 Nov 2022 17:27:01 +0700 Subject: [PATCH 23/45] kio: fix libexecdir location --- srcpkgs/kio/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/kio/template b/srcpkgs/kio/template index 5edab27d77b4..1aecf59e7373 100644 --- a/srcpkgs/kio/template +++ b/srcpkgs/kio/template @@ -1,7 +1,7 @@ # Template file for 'kio' pkgname=kio version=5.100.0 -revision=1 +revision=2 build_style=cmake configure_args="-DBUILD_DESIGNERPLUGIN=ON -DDESKTOPTOJSON_EXECUTABLE=/usr/bin/desktoptojson" From e5de1bfe855bb88a1b896835d961c0bc9bc4dc24 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?= Date: Mon, 21 Nov 2022 17:27:01 +0700 Subject: [PATCH 24/45] kio-extras: fix libexecdir location --- srcpkgs/kio-extras/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/kio-extras/template b/srcpkgs/kio-extras/template index e2e4b28fb37f..d14b22c4cc00 100644 --- a/srcpkgs/kio-extras/template +++ b/srcpkgs/kio-extras/template @@ -1,7 +1,7 @@ # Template file for 'kio-extras' pkgname=kio-extras version=22.08.2 -revision=1 +revision=2 build_style=cmake configure_args="-DBUILD_TESTING=OFF -DKDSOAP_KDWSDL2CPP_COMPILER=/usr/bin/kdwsdl2cpp" hostmakedepends="extra-cmake-modules pkg-config gperf qt5-qmake qt5-host-tools From 1996d2291aa80060c512809fd95098c975416052 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?= Date: Mon, 21 Nov 2022 17:27:01 +0700 Subject: [PATCH 25/45] kitinerary: fix libexecdir location --- srcpkgs/kitinerary/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/kitinerary/template b/srcpkgs/kitinerary/template index 9f65a32b1ba0..ed9bd13c6fbb 100644 --- a/srcpkgs/kitinerary/template +++ b/srcpkgs/kitinerary/template @@ -1,7 +1,7 @@ # Template file for 'kitinerary' pkgname=kitinerary version=22.08.2 -revision=1 +revision=2 build_style=cmake hostmakedepends="extra-cmake-modules gettext kcoreaddons pkg-config qt5-host-tools qt5-qmake qt5-tools-devel" makedepends="kcalendarcore-devel kcontacts-devel kdeclarative-devel kmime-devel From 1411f6d5bae2b053618f1a4fc0ddc3e4bb9e81cd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?= Date: Mon, 21 Nov 2022 17:27:01 +0700 Subject: [PATCH 26/45] kpmcore: fix libexecdir location --- srcpkgs/kpmcore/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/kpmcore/template b/srcpkgs/kpmcore/template index b78ba2611391..7398101e0d0c 100644 --- a/srcpkgs/kpmcore/template +++ b/srcpkgs/kpmcore/template @@ -1,7 +1,7 @@ # Template file for 'kpmcore' pkgname=kpmcore version=22.04.1 -revision=1 +revision=2 build_style=cmake configure_args="-DBUILD_TESTING=OFF" hostmakedepends="extra-cmake-modules python3 qt5-devel qt5-qmake pkg-config kcoreaddons From 717ff7663ba7de0854d39799c3b4326650ee93ba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?= Date: Mon, 21 Nov 2022 17:27:02 +0700 Subject: [PATCH 27/45] kscreen: fix libexecdir location --- srcpkgs/kscreen/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/kscreen/template b/srcpkgs/kscreen/template index 7a02d650019e..7404db1f5139 100644 --- a/srcpkgs/kscreen/template +++ b/srcpkgs/kscreen/template @@ -1,7 +1,7 @@ # Template file for 'kscreen' pkgname=kscreen version=5.26.3 -revision=1 +revision=2 build_style=cmake configure_args="-DBUILD_TESTING=OFF -DKF5_HOST_TOOLING=/usr/lib/cmake" hostmakedepends="extra-cmake-modules qt5-devel qt5-qmake From 15a305126fae23311c376407833ed37342aee385 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?= Date: Mon, 21 Nov 2022 17:27:02 +0700 Subject: [PATCH 28/45] kscreenlocker: fix libexecdir location --- srcpkgs/kscreenlocker/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/kscreenlocker/template b/srcpkgs/kscreenlocker/template index 607ef3cb61b7..f443166c7d41 100644 --- a/srcpkgs/kscreenlocker/template +++ b/srcpkgs/kscreenlocker/template @@ -1,7 +1,7 @@ # Template file for 'kscreenlocker' pkgname=kscreenlocker version=5.26.3 -revision=1 +revision=2 build_style=cmake configure_args="-DBUILD_TESTING=OFF -DKF5_HOST_TOOLING=/usr/lib/cmake" hostmakedepends="extra-cmake-modules pkg-config kcoreaddons-devel From 5c269bafec81cbb9d17f7da677a0db18a5e096e4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?= Date: Mon, 21 Nov 2022 17:27:02 +0700 Subject: [PATCH 29/45] ktexteditor: fix libexecdir location --- srcpkgs/ktexteditor/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/ktexteditor/template b/srcpkgs/ktexteditor/template index 72b02a5e31c9..1c9f84d3a6ba 100644 --- a/srcpkgs/ktexteditor/template +++ b/srcpkgs/ktexteditor/template @@ -1,7 +1,7 @@ # Template file for 'ktexteditor' pkgname=ktexteditor version=5.100.0 -revision=1 +revision=2 build_style=cmake configure_args=" -DDESKTOPTOJSON_EXECUTABLE=/usr/bin/desktoptojson" From 2013f45cfd57459409383f1a650f7e820d4729da Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?= Date: Mon, 21 Nov 2022 17:27:02 +0700 Subject: [PATCH 30/45] kwallet-pam: fix libexecdir location --- srcpkgs/kwallet-pam/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/kwallet-pam/template b/srcpkgs/kwallet-pam/template index 5399331ef61d..f7d1c333e4eb 100644 --- a/srcpkgs/kwallet-pam/template +++ b/srcpkgs/kwallet-pam/template @@ -1,7 +1,7 @@ # Template file for 'kwallet-pam' pkgname=kwallet-pam version=5.26.3 -revision=1 +revision=2 build_style=cmake hostmakedepends="qt5-qmake qt5-host-tools extra-cmake-modules" makedepends="libgcrypt-devel pam-devel kwallet-devel" From de27573c3302833f62be11c7134c2fee9feb40c2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?= Date: Mon, 21 Nov 2022 17:27:02 +0700 Subject: [PATCH 31/45] kwalletmanager: fix libexecdir location --- srcpkgs/kwalletmanager/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/kwalletmanager/template b/srcpkgs/kwalletmanager/template index 35499d430cde..273af686cb98 100644 --- a/srcpkgs/kwalletmanager/template +++ b/srcpkgs/kwalletmanager/template @@ -1,7 +1,7 @@ # Template file for 'kwalletmanager' pkgname=kwalletmanager version=22.04.3 -revision=1 +revision=2 build_style=cmake hostmakedepends="extra-cmake-modules gettext kauth kdoctools pkg-config qt5-host-tools qt5-qmake" From f1d8164549b15a6f5ec3f501b75ac429dd501f08 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?= Date: Mon, 21 Nov 2022 17:27:03 +0700 Subject: [PATCH 32/45] kwayland: fix libexecdir location --- srcpkgs/kwayland/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/kwayland/template b/srcpkgs/kwayland/template index bddeb188744b..83c66cf4af20 100644 --- a/srcpkgs/kwayland/template +++ b/srcpkgs/kwayland/template @@ -1,7 +1,7 @@ # Template file for 'kwayland' pkgname=kwayland version=5.100.0 -revision=1 +revision=2 build_style=cmake configure_args="-DBUILD_TESTING=OFF" hostmakedepends="kcoreaddons pkg-config extra-cmake-modules qt5-host-tools qt5-tools-devel From 354da1ccc5d4bafeedf8123fc73de12b24b66641 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?= Date: Mon, 21 Nov 2022 17:27:03 +0700 Subject: [PATCH 33/45] kwin: fix libexecdir location --- srcpkgs/kwin/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/kwin/template b/srcpkgs/kwin/template index 73c68f065932..f51b23bdc216 100644 --- a/srcpkgs/kwin/template +++ b/srcpkgs/kwin/template @@ -1,7 +1,7 @@ # Template file for 'kwin' pkgname=kwin version=5.26.3 -revision=1 +revision=2 build_style=cmake build_helper=qemu configure_args="-DBUILD_TESTING=OFF -DFORCE_CROSSCOMPILED_TOOLS=ON From b18f48c708bc4a573b29529875510bd5c3abe8c8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?= Date: Mon, 21 Nov 2022 17:27:03 +0700 Subject: [PATCH 34/45] kxmlgui: fix libexecdir location --- srcpkgs/kxmlgui/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/kxmlgui/template b/srcpkgs/kxmlgui/template index 23789d486484..99a2061150fb 100644 --- a/srcpkgs/kxmlgui/template +++ b/srcpkgs/kxmlgui/template @@ -1,7 +1,7 @@ # Template file for 'kxmlgui' pkgname=kxmlgui version=5.100.0 -revision=1 +revision=2 build_style=cmake hostmakedepends="kcoreaddons extra-cmake-modules kcoreaddons gettext qt5-qmake qt5-host-tools python3" From c8dc9009fd7abf84461220c01271a48a3e2d7334 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?= Date: Mon, 21 Nov 2022 17:27:03 +0700 Subject: [PATCH 35/45] libkscreen: fix libexecdir location --- srcpkgs/libkscreen/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/libkscreen/template b/srcpkgs/libkscreen/template index ca5c0095eefe..1fe41232cbaa 100644 --- a/srcpkgs/libkscreen/template +++ b/srcpkgs/libkscreen/template @@ -1,7 +1,7 @@ # Template file for 'libkscreen' pkgname=libkscreen version=5.26.3 -revision=1 +revision=2 build_style=cmake configure_args="-DBUILD_TESTING=OFF" hostmakedepends="pkg-config extra-cmake-modules qt5-host-tools qt5-x11extras-devel From 5390a665a89d56f6dba733bcb59235bf6e414b41 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?= Date: Mon, 21 Nov 2022 17:27:03 +0700 Subject: [PATCH 36/45] libksysguard: fix libexecdir location --- srcpkgs/libksysguard/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/libksysguard/template b/srcpkgs/libksysguard/template index 111c748ed47f..dc72a24cc355 100644 --- a/srcpkgs/libksysguard/template +++ b/srcpkgs/libksysguard/template @@ -1,7 +1,7 @@ # Template file for 'libksysguard' pkgname=libksysguard version=5.26.3 -revision=1 +revision=2 build_style=cmake hostmakedepends="extra-cmake-modules gettext kauth qt5-host-tools qt5-qmake kpackage" From 5b598f212f02dcf49f525cda0e401382893345af Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?= Date: Mon, 21 Nov 2022 17:27:03 +0700 Subject: [PATCH 37/45] plasma-desktop: fix libexecdir location --- srcpkgs/plasma-desktop/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/plasma-desktop/template b/srcpkgs/plasma-desktop/template index 8cd18f600b9e..4bace7523e9e 100644 --- a/srcpkgs/plasma-desktop/template +++ b/srcpkgs/plasma-desktop/template @@ -1,7 +1,7 @@ # Template file for 'plasma-desktop' pkgname=plasma-desktop version=5.26.3 -revision=1 +revision=2 build_style=cmake configure_args="-DBUILD_TESTING=OFF -DKF5_HOST_TOOLING=/usr/lib/cmake" From ef1ad1b65d0a64946bfb8437f1dfc02f67f7fc86 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?= Date: Mon, 21 Nov 2022 17:27:04 +0700 Subject: [PATCH 38/45] plasma-disks: fix libexecdir location --- srcpkgs/plasma-disks/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/plasma-disks/template b/srcpkgs/plasma-disks/template index d56d660142da..eac0c1076182 100644 --- a/srcpkgs/plasma-disks/template +++ b/srcpkgs/plasma-disks/template @@ -1,7 +1,7 @@ # Template file for 'plasma-disks' pkgname=plasma-disks version=5.26.3 -revision=1 +revision=2 build_style=cmake configure_args="-DBUILD_TESTING=OFF" hostmakedepends="extra-cmake-modules qt5-qmake qt5-host-tools From 273f21a699a4d150d16f8d6a68ece4077bf6a943 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?= Date: Mon, 21 Nov 2022 17:27:04 +0700 Subject: [PATCH 39/45] plasma-firewall: fix libexecdir location --- srcpkgs/plasma-firewall/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/plasma-firewall/template b/srcpkgs/plasma-firewall/template index 23931e2158e4..389866622699 100644 --- a/srcpkgs/plasma-firewall/template +++ b/srcpkgs/plasma-firewall/template @@ -1,7 +1,7 @@ # Template file for 'plasma-firewall' pkgname=plasma-firewall version=5.26.3 -revision=1 +revision=2 build_style=cmake configure_args="-DKF5_HOST_TOOLING=/usr/lib/cmake" hostmakedepends="extra-cmake-modules qt5-qmake qt5-host-tools From f98b8c6cc42e25859501b02f5c1dad99dbee4730 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?= Date: Mon, 21 Nov 2022 17:27:04 +0700 Subject: [PATCH 40/45] plasma-workspace: fix libexecdir location --- srcpkgs/plasma-workspace/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/plasma-workspace/template b/srcpkgs/plasma-workspace/template index 4585fd283ecb..518fb3a18ab8 100644 --- a/srcpkgs/plasma-workspace/template +++ b/srcpkgs/plasma-workspace/template @@ -1,7 +1,7 @@ # Template file for 'plasma-workspace' pkgname=plasma-workspace version=5.26.3 -revision=1 +revision=2 build_style=cmake configure_args="-DBUILD_TESTING=OFF -DWaylandScanner_EXECUTABLE=/usr/bin/wayland-scanner From fca2c49f70075b5e780ca8f4141d62b76bce7ec1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?= Date: Mon, 21 Nov 2022 17:27:04 +0700 Subject: [PATCH 41/45] polkit-kde-agent: fix libexecdir location --- srcpkgs/polkit-kde-agent/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/polkit-kde-agent/template b/srcpkgs/polkit-kde-agent/template index 79e3930b8fcd..2a30f95a2732 100644 --- a/srcpkgs/polkit-kde-agent/template +++ b/srcpkgs/polkit-kde-agent/template @@ -1,7 +1,7 @@ # Template file for 'polkit-kde-agent' pkgname=polkit-kde-agent version=5.26.3 -revision=1 +revision=2 build_style=cmake configure_args="-DBUILD_TESTING=OFF" hostmakedepends="extra-cmake-modules qt5-qmake qt5-host-tools gettext kcoreaddons" From 4f35ff97dba4faf91d098d847fd345997562916d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?= Date: Mon, 21 Nov 2022 17:27:04 +0700 Subject: [PATCH 42/45] powerdevil: fix libexecdir location --- srcpkgs/powerdevil/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/powerdevil/template b/srcpkgs/powerdevil/template index 52fb9cf6f7a2..4d3a175a168f 100644 --- a/srcpkgs/powerdevil/template +++ b/srcpkgs/powerdevil/template @@ -1,7 +1,7 @@ # Template file for 'powerdevil' pkgname=powerdevil version=5.26.3 -revision=1 +revision=2 build_style=cmake configure_args="-DBUILD_TESTING=OFF -DKF5_HOST_TOOLING=/usr/lib/cmake" hostmakedepends="extra-cmake-modules pkg-config kdoctools kauth-devel From fdad59d5c5efa5685275642e7d218f7d4400fc95 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?= Date: Mon, 21 Nov 2022 17:27:05 +0700 Subject: [PATCH 43/45] purpose: fix libexecdir location --- srcpkgs/purpose/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/purpose/template b/srcpkgs/purpose/template index 2f6c96eb2093..ee6ae961e7f0 100644 --- a/srcpkgs/purpose/template +++ b/srcpkgs/purpose/template @@ -1,7 +1,7 @@ # Template file for 'purpose' pkgname=purpose version=5.100.0 -revision=1 +revision=2 build_style=cmake hostmakedepends="kcoreaddons qt5-qmake qt5-host-tools extra-cmake-modules python3 gettext intltool" From b42c39be5e3bd0407326aea1313e4b7d9c6615cd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?= Date: Mon, 21 Nov 2022 17:27:05 +0700 Subject: [PATCH 44/45] sddm-kcm: fix libexecdir location --- srcpkgs/sddm-kcm/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/sddm-kcm/template b/srcpkgs/sddm-kcm/template index ad544a1be684..378d86e12fdc 100644 --- a/srcpkgs/sddm-kcm/template +++ b/srcpkgs/sddm-kcm/template @@ -1,7 +1,7 @@ # Template file for 'sddm-kcm' pkgname=sddm-kcm version=5.26.3 -revision=1 +revision=2 build_style=cmake configure_args="-DBUILD_TESTING=OFF -DKF5_HOST_TOOLING=/usr/lib/cmake" hostmakedepends="extra-cmake-modules pkg-config qt5-devel qt5-qmake From 648aa93be3a9c458e8f1ae26371c7fd3b0360519 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?= Date: Mon, 21 Nov 2022 17:27:05 +0700 Subject: [PATCH 45/45] xdg-desktop-portal-kde: fix libexecdir location --- srcpkgs/xdg-desktop-portal-kde/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/xdg-desktop-portal-kde/template b/srcpkgs/xdg-desktop-portal-kde/template index 3710ea1b836e..9bbfb817fe32 100644 --- a/srcpkgs/xdg-desktop-portal-kde/template +++ b/srcpkgs/xdg-desktop-portal-kde/template @@ -1,7 +1,7 @@ # Template file for 'xdg-desktop-portal-kde' pkgname=xdg-desktop-portal-kde version=5.26.3 -revision=1 +revision=2 build_style=cmake configure_args="-DWaylandScanner_EXECUTABLE=/usr/bin/wayland-scanner" hostmakedepends="extra-cmake-modules qt5-qmake qt5-host-tools kcoreaddons gettext