Github messages for voidlinux
 help / color / mirror / Atom feed
From: sgn <sgn@users.noreply.github.com>
To: ml@inbox.vuxu.org
Subject: Re: [PR PATCH] [Updated] KDE: fix libexecdir
Date: Mon, 21 Nov 2022 11:51:37 +0100	[thread overview]
Message-ID: <20221121105137.tp1JOS7YHLDMoLa8HcSDxbi3_E1dgjmiLhxPa_0bL0w@z> (raw)
In-Reply-To: <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-40658@inbox.vuxu.org>

[-- Attachment #1: Type: text/plain, Size: 1296 bytes --]

There is an updated pull request by sgn against master on the void-packages repository

https://github.com/sgn/void-packages kde-fix-libexecdir
https://github.com/void-linux/void-packages/pull/40658

KDE: fix libexecdir
<!-- Uncomment relevant sections and delete options which are not applicable -->

Close #40656

[ci skip]
[skip ci]
#### Testing the changes
- I tested the changes in this PR: **YES**|**briefly**|**NO**

<!--
#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**|**NO**
-->

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!--
#### Local build testing
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->


A patch file from https://github.com/void-linux/void-packages/pull/40658.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-kde-fix-libexecdir-40658.patch --]
[-- Type: text/x-diff, Size: 39499 bytes --]

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?=
 <congdanhqx@gmail.com>
Date: Mon, 21 Nov 2022 17:08:51 +0700
Subject: [PATCH 01/44] 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/<multiarch-tuple`` on Debian) [``LIB_INSTALL_DIR``]
+ ``LIBEXECDIR``
+     executables for internal use by programs and libraries (``BINDIR`` on
+-    Windows, ``LIBDIR/libexec`` otherwise) [``LIBEXEC_INSTALL_DIR``]
++    Windows, ``EXECROOTDIR/libexec`` otherwise) [``LIBEXEC_INSTALL_DIR``]
+ ``CMAKEPACKAGEDIR``
+     CMake packages, including config files (``LIBDIR/cmake``)
+     [``CMAKECONFIG_INSTALL_PREFIX``]
+Index: extra-cmake-modules-5.100.0/kde-modules/KDEInstallDirs6.cmake
+===================================================================
+--- extra-cmake-modules-5.100.0.orig/kde-modules/KDEInstallDirs6.cmake
++++ extra-cmake-modules-5.100.0/kde-modules/KDEInstallDirs6.cmake
+@@ -46,7 +46,7 @@ where ``<dir>`` is one of (default value
+     ``EXECROOTDIR/lib/<multiarch-tuple`` on Debian)
+ ``LIBEXECDIR``
+     executables for internal use by programs and libraries (``BINDIR`` on
+-    Windows, ``LIBDIR/libexec`` otherwise)
++    Windows, ``EXECROOTDIR/libexec`` otherwise)
+ ``CMAKEPACKAGEDIR``
+     CMake packages, including config files (``LIBDIR/cmake``)
+ ``QTPLUGINDIR``
+Index: extra-cmake-modules-5.100.0/kde-modules/KDEInstallDirsCommon.cmake
+===================================================================
+--- extra-cmake-modules-5.100.0.orig/kde-modules/KDEInstallDirsCommon.cmake
++++ extra-cmake-modules-5.100.0/kde-modules/KDEInstallDirsCommon.cmake
+@@ -248,7 +248,7 @@ if(WIN32)
+         "executables for internal use by programs and libraries"
+         LIBEXEC_INSTALL_DIR)
+ else()
+-    _define_relative(LIBEXECDIR LIBDIR "libexec"
++    _define_relative(LIBEXECDIR EXECROOTDIR "libexec"
+         "executables for internal use by programs and libraries"
+         LIBEXEC_INSTALL_DIR)
+ endif()
diff --git a/srcpkgs/extra-cmake-modules/template b/srcpkgs/extra-cmake-modules/template
index 2476323c63d6..641c29e3e74a 100644
--- a/srcpkgs/extra-cmake-modules/template
+++ b/srcpkgs/extra-cmake-modules/template
@@ -1,7 +1,7 @@
 # Template file for 'extra-cmake-modules'
 pkgname=extra-cmake-modules
 version=5.100.0
-revision=1
+revision=2
 build_style=cmake
 configure_args="-DBUILD_HTML_DOCS=ON"
 hostmakedepends="python3-Sphinx qt5-tools"

From 3aa410c1fdce724aa84ac7b539fda38b8dc2017a Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?=
 <congdanhqx@gmail.com>
Date: Mon, 21 Nov 2022 17:22:51 +0700
Subject: [PATCH 02/44] 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?=
 <congdanhqx@gmail.com>
Date: Mon, 21 Nov 2022 17:15:11 +0700
Subject: [PATCH 03/44] 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?=
 <congdanhqx@gmail.com>
Date: Mon, 21 Nov 2022 17:26:57 +0700
Subject: [PATCH 04/44] 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?=
 <congdanhqx@gmail.com>
Date: Mon, 21 Nov 2022 17:26:57 +0700
Subject: [PATCH 05/44] 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 67dd75ed0c2e003588d9d6ccdc11c9fb8044eb83 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?=
 <congdanhqx@gmail.com>
Date: Mon, 21 Nov 2022 17:26:58 +0700
Subject: [PATCH 06/44] 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 4abcac9dc723ca144ed5272264daae29f77a0e21 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?=
 <congdanhqx@gmail.com>
Date: Mon, 21 Nov 2022 17:26:58 +0700
Subject: [PATCH 07/44] 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 4c3629f84dd745d6b402650504546827fca6de99 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?=
 <congdanhqx@gmail.com>
Date: Mon, 21 Nov 2022 17:26:58 +0700
Subject: [PATCH 08/44] 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 77c311d4682a2f3de0e7993d0b59b08135468d6f Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?=
 <congdanhqx@gmail.com>
Date: Mon, 21 Nov 2022 17:26:58 +0700
Subject: [PATCH 09/44] 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 153bb7820016b251633a339bbcec57ed1d8c0924 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?=
 <congdanhqx@gmail.com>
Date: Mon, 21 Nov 2022 17:26:58 +0700
Subject: [PATCH 10/44] 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 048d3320241663481c80705b4170770b5b3c59f6 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?=
 <congdanhqx@gmail.com>
Date: Mon, 21 Nov 2022 17:26:59 +0700
Subject: [PATCH 11/44] 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 5529dfdc9be659fa0656354b72b01995d60f480a Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?=
 <congdanhqx@gmail.com>
Date: Mon, 21 Nov 2022 17:26:59 +0700
Subject: [PATCH 12/44] 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 7350c3082efa110f15b1bb6706dc135765a07e4d Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?=
 <congdanhqx@gmail.com>
Date: Mon, 21 Nov 2022 17:26:59 +0700
Subject: [PATCH 13/44] 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 a724f85697c3dc4683f5da45903a6853af355662 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?=
 <congdanhqx@gmail.com>
Date: Mon, 21 Nov 2022 17:26:59 +0700
Subject: [PATCH 14/44] 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 35492b8605920450b468cbf900669fefd0fa4295 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?=
 <congdanhqx@gmail.com>
Date: Mon, 21 Nov 2022 17:27:00 +0700
Subject: [PATCH 15/44] 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 ad3ca320f92bedde04e12b868542352264c6bc50 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?=
 <congdanhqx@gmail.com>
Date: Mon, 21 Nov 2022 17:27:00 +0700
Subject: [PATCH 16/44] 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 06b1f641327d1d55a2618b10fcaf225b87fc9b8d Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?=
 <congdanhqx@gmail.com>
Date: Mon, 21 Nov 2022 17:27:00 +0700
Subject: [PATCH 17/44] 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 e0b7f483a4090b586abd45dfc571dcb101f351bd Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?=
 <congdanhqx@gmail.com>
Date: Mon, 21 Nov 2022 17:27:00 +0700
Subject: [PATCH 18/44] 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 581a319d9abec04f638350b42690e3ab9d10dab0 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?=
 <congdanhqx@gmail.com>
Date: Mon, 21 Nov 2022 17:27:00 +0700
Subject: [PATCH 19/44] 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 ff004f1c6c4d7772a4a760688eefa2ef5b2ab149 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?=
 <congdanhqx@gmail.com>
Date: Mon, 21 Nov 2022 17:27:00 +0700
Subject: [PATCH 20/44] 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 db204fe9c979bafb6ac25bacd96f8673af13a8a2 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?=
 <congdanhqx@gmail.com>
Date: Mon, 21 Nov 2022 17:27:01 +0700
Subject: [PATCH 21/44] 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 68fbcb7388c6430bb9c60556494c32a759b4bc85 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?=
 <congdanhqx@gmail.com>
Date: Mon, 21 Nov 2022 17:27:01 +0700
Subject: [PATCH 22/44] 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 b012cf359aad7169ed9ab5370cba95b26864cff8 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?=
 <congdanhqx@gmail.com>
Date: Mon, 21 Nov 2022 17:27:01 +0700
Subject: [PATCH 23/44] 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 458d51f49c3f5fb8570fb67fb4c80a4b084780d3 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?=
 <congdanhqx@gmail.com>
Date: Mon, 21 Nov 2022 17:27:01 +0700
Subject: [PATCH 24/44] 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 13f3da7e83f64feb9798efefd3103245c4dc7636 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?=
 <congdanhqx@gmail.com>
Date: Mon, 21 Nov 2022 17:27:01 +0700
Subject: [PATCH 25/44] 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 2012f1e66916deb9d7f1ed03c4378a3820f2ee7b Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?=
 <congdanhqx@gmail.com>
Date: Mon, 21 Nov 2022 17:27:02 +0700
Subject: [PATCH 26/44] 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 8df6fd098217fd121e2b51f38b7c852037579a12 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?=
 <congdanhqx@gmail.com>
Date: Mon, 21 Nov 2022 17:27:02 +0700
Subject: [PATCH 27/44] 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 30775d91bf35a988c2d45a4a8e40e94270e02a84 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?=
 <congdanhqx@gmail.com>
Date: Mon, 21 Nov 2022 17:27:02 +0700
Subject: [PATCH 28/44] 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 06b7034c678fd0622ed9af1553f752f4ab2c3234 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?=
 <congdanhqx@gmail.com>
Date: Mon, 21 Nov 2022 17:27:02 +0700
Subject: [PATCH 29/44] 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 35425399bcae7e69b3d771b495af3d91ca72c361 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?=
 <congdanhqx@gmail.com>
Date: Mon, 21 Nov 2022 17:27:02 +0700
Subject: [PATCH 30/44] 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 6e872bd65f83992666b0c0085ba1e01cb11b56fd Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?=
 <congdanhqx@gmail.com>
Date: Mon, 21 Nov 2022 17:27:03 +0700
Subject: [PATCH 31/44] 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 9360ede68e89d742cd531571f5e57d3c062efc8c Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?=
 <congdanhqx@gmail.com>
Date: Mon, 21 Nov 2022 17:27:03 +0700
Subject: [PATCH 32/44] 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 79d765e19052974783bc707c3752cf6e48f91d3c Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?=
 <congdanhqx@gmail.com>
Date: Mon, 21 Nov 2022 17:27:03 +0700
Subject: [PATCH 33/44] 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 34558fb2e45343aa90ccf4a006dbf82937dd998b Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?=
 <congdanhqx@gmail.com>
Date: Mon, 21 Nov 2022 17:27:03 +0700
Subject: [PATCH 34/44] 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 5f855d2fd61692714304c8464709a7b661254a37 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?=
 <congdanhqx@gmail.com>
Date: Mon, 21 Nov 2022 17:27:03 +0700
Subject: [PATCH 35/44] 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 88a5d2efe18f49d1ff29982f4f90462c07838be2 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?=
 <congdanhqx@gmail.com>
Date: Mon, 21 Nov 2022 17:27:03 +0700
Subject: [PATCH 36/44] plasma-desktop: fix libexecdir location

---
 srcpkgs/plasma-desktop/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/plasma-desktop/template b/srcpkgs/plasma-desktop/template
index 8cd18f600b9e..70fa93221088 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"
@@ -16,7 +16,7 @@ depends="kmenuedit polkit-kde-agent powerdevil systemsettings
  accountsservice ksystemstats"
 short_desc="KDE Plasma Desktop"
 maintainer="John <me@johnnynator.dev>"
-license="GPL-2.0-or-later, LGPL-2.0-or-later, LGPL-2.1-or-later, GFDL-1.2"
+license="GPL-2.0-or-later, LGPL-2.0-or-later, LGPL-2.1-or-later, GFDL-1.2-or-later"
 homepage="https://invent.kde.org/plasma/plasma-desktop"
 distfiles="${KDE_SITE}/plasma/${version}/${pkgname}-${version}.tar.xz"
 checksum=6174c23419d425ef1e73c6c81f0536458d685e3ec23cac66d8212d3ef3095cd3

From 71700ab38ddfc447f66342c0e9f5b60736eeb37e Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?=
 <congdanhqx@gmail.com>
Date: Mon, 21 Nov 2022 17:27:04 +0700
Subject: [PATCH 37/44] 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 fa42430027e56c5bd1264f04d36d42542d2448ff Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?=
 <congdanhqx@gmail.com>
Date: Mon, 21 Nov 2022 17:27:04 +0700
Subject: [PATCH 38/44] 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 71a530c93ee604efbd27aab446d2c6ce236fe48a Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?=
 <congdanhqx@gmail.com>
Date: Mon, 21 Nov 2022 17:27:04 +0700
Subject: [PATCH 39/44] 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 58b5240d723bf27ce6aa555a6f7c6d1861d2513a Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?=
 <congdanhqx@gmail.com>
Date: Mon, 21 Nov 2022 17:27:04 +0700
Subject: [PATCH 40/44] 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 cd7e9f19ff15b0f10f72fe7cfc7986b9bf385138 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?=
 <congdanhqx@gmail.com>
Date: Mon, 21 Nov 2022 17:27:04 +0700
Subject: [PATCH 41/44] 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 cdbbc9655d093ebdac62049b4e6690ed3a7d83b7 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?=
 <congdanhqx@gmail.com>
Date: Mon, 21 Nov 2022 17:27:05 +0700
Subject: [PATCH 42/44] 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 760e0aa4a80d9bdb903fc0b97eb7daf1a7d1d441 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?=
 <congdanhqx@gmail.com>
Date: Mon, 21 Nov 2022 17:27:05 +0700
Subject: [PATCH 43/44] 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 a6ee299dd704bf8323921a92f3d4ac3e0ac81e17 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?=
 <congdanhqx@gmail.com>
Date: Mon, 21 Nov 2022 17:27:05 +0700
Subject: [PATCH 44/44] 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

  parent reply	other threads:[~2022-11-21 10:51 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-11-21 10:32 [PR PATCH] " sgn
2022-11-21 10:39 ` [PR PATCH] [Updated] " sgn
2022-11-21 10:51 ` sgn [this message]
2022-11-22  2:04 ` sgn
2022-11-22  2:05 ` [PR PATCH] [Merged]: " sgn

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20221121105137.tp1JOS7YHLDMoLa8HcSDxbi3_E1dgjmiLhxPa_0bL0w@z \
    --to=sgn@users.noreply.github.com \
    --cc=ml@inbox.vuxu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).