git » python-pipx.git » commit d7b0458

Add missing python-platformdirs dependency

author Antonio Rojas
2023-12-19 19:10:47 UTC
committer Antonio Rojas
2023-12-19 19:10:47 UTC
parent 2fc0024d0befb6ee112d9df33605d340cf442ed3

Add missing python-platformdirs dependency

Fixes https://gitlab.archlinux.org/archlinux/packaging/packages/python-pipx/-/issues/2

.SRCINFO +2 -1
PKGBUILD +2 -2

diff --git a/.SRCINFO b/.SRCINFO
index 063ce66..8080f53 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
 pkgbase = python-pipx
 	pkgdesc = Install and Run Python Applications in Isolated Environments
 	pkgver = 1.3.3
-	pkgrel = 1
+	pkgrel = 2
 	url = https://github.com/pipxproject/pipx
 	arch = any
 	license = MIT
@@ -15,6 +15,7 @@ pkgbase = python-pipx
 	depends = python-userpath
 	depends = python-argcomplete
 	depends = python-packaging
+	depends = python-platformdirs
 	source = python-pipx-1.3.3.tar.gz::https://github.com/pipxproject/pipx/archive/1.3.3.tar.gz
 	sha512sums = 42246a0d8275beee16b85a1007d46d328a892beb89e79fb406ba53942a57b7312d34150376835395b9eca3ecb68db71f0c3c470fd92519dd9175311003707a3d
 
diff --git a/PKGBUILD b/PKGBUILD
index 586c744..acf7918 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,12 +3,12 @@
 _pkgname=pipx
 pkgname=python-$_pkgname
 pkgver=1.3.3
-pkgrel=1
+pkgrel=2
 pkgdesc='Install and Run Python Applications in Isolated Environments'
 arch=('any')
 url='https://github.com/pipxproject/pipx'
 license=('MIT' 'BSD')
-depends=('python' 'python-userpath' 'python-argcomplete' 'python-packaging')
+depends=('python' 'python-userpath' 'python-argcomplete' 'python-packaging' 'python-platformdirs')
 makedepends=('python-build' 'python-installer' 'python-hatchling' 'python-wheel' 'python-hatch-vcs')
 #checkdepends=('python-tox' 'python-pytest')
 source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")