git » plasma-firewall.git » commit d1c6584

upgpkg: 5.92.0-1: Plasma 6 RC

author Antonio Rojas
2024-01-11 07:18:25 UTC
committer Antonio Rojas
2024-01-11 07:18:25 UTC
parent 568eb09681ba8ccfc0c3d8f4b4fc1cbba7b07ce0

upgpkg: 5.92.0-1: Plasma 6 RC

.SRCINFO +14 -6
PKGBUILD +17 -8

diff --git a/.SRCINFO b/.SRCINFO
index 814ebf7..6f16423 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,6 +1,6 @@
 pkgbase = plasma-firewall
 	pkgdesc = Control Panel for your system firewall
-	pkgver = 5.27.10
+	pkgver = 5.92.0
 	pkgrel = 1
 	url = https://kde.org/plasma-desktop/
 	arch = x86_64
@@ -8,17 +8,25 @@ pkgbase = plasma-firewall
 	license = GPL
 	license = LGPL
 	makedepends = extra-cmake-modules
-	depends = systemsettings
-	optdepends = iproute2: netstat backend
+	depends = gcc-libs
+	depends = glibc
+	depends = kauth
+	depends = kcmutils
+	depends = kconfig
+	depends = kcoreaddons
+	depends = ki18n
+	depends = qt6-base
+	depends = qt6-declarative
 	optdepends = firewalld: firewalld backend
+	optdepends = iproute2: netstat backend
 	optdepends = ufw: ufw backend
-	source = https://download.kde.org/stable/plasma/5.27.10/plasma-firewall-5.27.10.tar.xz
-	source = https://download.kde.org/stable/plasma/5.27.10/plasma-firewall-5.27.10.tar.xz.sig
+	source = https://download.kde.org/unstable/plasma/5.92.0/plasma-firewall-5.92.0.tar.xz
+	source = https://download.kde.org/unstable/plasma/5.92.0/plasma-firewall-5.92.0.tar.xz.sig
 	validpgpkeys = E0A3EB202F8E57528E13E72FD7574483BB57B18D
 	validpgpkeys = 0AAC775BB6437A8D9AF7A3ACFE0784117FBCE11D
 	validpgpkeys = D07BD8662C56CB291B316EB2F5675605C74E02CF
 	validpgpkeys = 1FA881591C26B276D7A5518EEAAF29B42A678C20
-	sha256sums = 755a6a00848f536e567ea9672b4fa70af958a875ab7651e2edc75bbb661c84cc
+	sha256sums = ed824abbd739c358293f223beb83397d104d674084c35ea12358cc0aca0b76b1
 	sha256sums = SKIP
 
 pkgname = plasma-firewall
diff --git a/PKGBUILD b/PKGBUILD
index 7e4ae67..7687f7b 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,21 +1,29 @@
 # Maintainer: Antonio Rojas <arojas@archlinux.org>
 
 pkgname=plasma-firewall
-pkgver=5.27.10
+pkgver=5.92.0
 _dirver=$(echo $pkgver | cut -d. -f1-3)
 pkgrel=1
 pkgdesc='Control Panel for your system firewall'
 arch=(x86_64)
 url='https://kde.org/plasma-desktop/'
 license=(GPL LGPL)
-source=(https://download.kde.org/stable/plasma/$_dirver/$pkgname-$pkgver.tar.xz{,.sig})
-depends=(systemsettings)
+depends=(gcc-libs
+         glibc
+         kauth
+         kcmutils
+         kconfig
+         kcoreaddons
+         ki18n
+         qt6-base
+         qt6-declarative)
 makedepends=(extra-cmake-modules)
-optdepends=('iproute2: netstat backend'
-            'firewalld: firewalld backend'
+optdepends=('firewalld: firewalld backend'
+            'iproute2: netstat backend'
             'ufw: ufw backend')
 groups=(plasma)
-sha256sums=('755a6a00848f536e567ea9672b4fa70af958a875ab7651e2edc75bbb661c84cc'
+source=(https://download.kde.org/unstable/plasma/$_dirver/$pkgname-$pkgver.tar.xz{,.sig})
+sha256sums=('ed824abbd739c358293f223beb83397d104d674084c35ea12358cc0aca0b76b1'
             'SKIP')
 validpgpkeys=('E0A3EB202F8E57528E13E72FD7574483BB57B18D'  # Jonathan Esk-Riddell <jr@jriddell.org>
               '0AAC775BB6437A8D9AF7A3ACFE0784117FBCE11D'  # Bhushan Shah <bshah@kde.org>
@@ -23,8 +31,9 @@ validpgpkeys=('E0A3EB202F8E57528E13E72FD7574483BB57B18D'  # Jonathan Esk-Riddell
               '1FA881591C26B276D7A5518EEAAF29B42A678C20') # Marco Martin <notmart@gmail.com>
 
 build() {
-  cmake -B build -S $pkgname-$pkgver \
-    -DLIBEXEC_INSTALL_DIR=lib
+  cmake -B build  -S $pkgname-$pkgver \
+    -DCMAKE_INSTALL_LIBEXECDIR=lib \
+    -DBUILD_TESTING=OFF
   cmake --build build
 }