git » python-platformdirs.git » commit 3941a1e

upgpkg: 4.2.0-1

author David Runge
2024-03-12 08:48:20 UTC
committer David Runge
2024-03-12 08:48:20 UTC
parent 048c6a3c2ead4971ee9c262af36c2df95aae3aa8

upgpkg: 4.2.0-1

Switch to using an upstream provided source tarball, as we can track a
proper checksum for it. A tag may be moved at any time and we have no
guarantee to build the same thing again later on.
Using `SETUPTOOLS_SCM_PRETEND_VERSION` it is possible to pass in the
correct project version to the build tooling.

.SRCINFO +3 -5
PKGBUILD +10 -16

diff --git a/.SRCINFO b/.SRCINFO
index efe4791..c76e2ba 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,6 +1,6 @@
 pkgbase = python-platformdirs
 	pkgdesc = A library to determine platform-specific system directories
-	pkgver = 4.1.0
+	pkgver = 4.2.0
 	pkgrel = 1
 	url = https://github.com/platformdirs/platformdirs
 	arch = any
@@ -8,14 +8,12 @@ pkgbase = python-platformdirs
 	checkdepends = python-pytest
 	checkdepends = python-pytest-mock
 	checkdepends = python-appdirs
-	makedepends = git
 	makedepends = python-build
 	makedepends = python-installer
 	makedepends = python-hatchling
 	makedepends = python-hatch-vcs
 	depends = python
-	depends = python-typing_extensions
-	source = python-platformdirs::git+https://github.com/platformdirs/platformdirs#tag=4.1.0
-	b2sums = SKIP
+	source = platformdirs-4.2.0.tar.gz::https://github.com/platformdirs/platformdirs/archive/refs/tags/4.2.0.tar.gz
+	b2sums = efd79a88b7d1ea3c94be21ce01443d6429596c8e621e9589f6980877aef8d8e5c2e916b4421e9993df1f4d0184c136afcac96800af9f4283c8876d7c00a6e8d3
 
 pkgname = python-platformdirs
diff --git a/PKGBUILD b/PKGBUILD
index 662ca87..71a424f 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,15 +3,15 @@
 # Contributor: Tobias Roettger <toroettg@gmail.com>
 
 pkgname=python-platformdirs
-pkgver=4.1.0
+_name="${pkgname#python-}"
+pkgver=4.2.0
 pkgrel=1
 pkgdesc='A library to determine platform-specific system directories'
 arch=('any')
 url='https://github.com/platformdirs/platformdirs'
 license=('MIT')
-depends=('python' 'python-typing_extensions')
+depends=('python')
 makedepends=(
-  'git'
   'python-build'
   'python-installer'
   'python-hatchling'
@@ -22,36 +22,30 @@ checkdepends=(
   'python-pytest-mock'
   'python-appdirs'
 )
-source=("$pkgname::git+$url#tag=$pkgver")
-b2sums=('SKIP')
-
-pkgver() {
-  cd "$pkgname"
-
-  git describe --tags | sed 's/^v//'
-}
+source=("$_name-$pkgver.tar.gz::$url/archive/refs/tags/$pkgver.tar.gz")
+b2sums=('efd79a88b7d1ea3c94be21ce01443d6429596c8e621e9589f6980877aef8d8e5c2e916b4421e9993df1f4d0184c136afcac96800af9f4283c8876d7c00a6e8d3')
 
 build() {
-  cd "$pkgname"
+  cd "$_name-$pkgver"
 
-  python -m build --wheel --no-isolation
+  SETUPTOOLS_SCM_PRETEND_VERSION=$pkgver python -m build --wheel --no-isolation
 }
 
 check() {
-  cd "$pkgname"
+  cd "$_name-$pkgver"
 
   PYTHONPATH="$(pwd)/src" pytest -v
 }
 
 package() {
-  cd "$pkgname"
+  cd "$_name-$pkgver"
 
   python -m installer --destdir="$pkgdir" dist/*.whl
 
   # symlink license file
   local site_packages=$(python -c "import site; print(site.getsitepackages()[0])")
   install -d "$pkgdir/usr/share/licenses/$pkgname"
-  ln -s "$site_packages/${pkgname#python-}-$pkgver.dist-info/licenses/LICENSE" \
+  ln -s "$site_packages/${_name}-$pkgver.dist-info/licenses/LICENSE" \
     "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
 }
 # vim:set ts=2 sw=2 et: