1
0
mirror of https://github.com/bertptrs/aur.git synced 2025-12-25 12:40:30 +01:00

upgpkg: python-opnieuw 3.1.0-2

PEP 517 rebuild
This commit is contained in:
2025-08-09 15:42:52 +02:00
parent 2f4c25df74
commit 7851b0111b
2 changed files with 13 additions and 10 deletions

View File

@@ -1,11 +1,14 @@
pkgbase = python-opnieuw pkgbase = python-opnieuw
pkgdesc = A general-purpose retrying library, written in pure Python pkgdesc = A general-purpose retrying library, written in pure Python
pkgver = 3.1.0 pkgver = 3.1.0
pkgrel = 1 pkgrel = 2
url = https://github.com/channable/opnieuw url = https://github.com/channable/opnieuw
arch = any arch = any
license = BSD-3-Clause license = BSD-3-Clause
makedepends = python-build
makedepends = python-installer
makedepends = python-setuptools makedepends = python-setuptools
makedepends = python-setuptools-scm
depends = python depends = python
depends = python-typing_extensions depends = python-typing_extensions
source = python-opnieuw-3.1.0.tar.gz::https://github.com/channable/opnieuw/archive/refs/tags/v3.1.0.tar.gz source = python-opnieuw-3.1.0.tar.gz::https://github.com/channable/opnieuw/archive/refs/tags/v3.1.0.tar.gz

View File

@@ -1,28 +1,28 @@
# Maintainer: Bert Peters <bert@bertptrs.nl> # Maintainer: Bert Peters <bert@bertptrs.nl>
pkgname=python-opnieuw pkgname=python-opnieuw
pkgver=3.1.0 pkgver=3.1.0
pkgrel=1 pkgrel=2
pkgdesc="A general-purpose retrying library, written in pure Python" pkgdesc="A general-purpose retrying library, written in pure Python"
arch=('any') arch=('any')
url="https://github.com/channable/opnieuw" url="https://github.com/channable/opnieuw"
license=('BSD-3-Clause') license=('BSD-3-Clause')
depends=('python' 'python-typing_extensions') depends=('python' 'python-typing_extensions')
makedepends=('python-setuptools') makedepends=(python-build python-installer python-setuptools{,-scm})
source=("$pkgname-$pkgver.tar.gz::$url/archive/refs/tags/v$pkgver.tar.gz") source=("$pkgname-$pkgver.tar.gz::$url/archive/refs/tags/v$pkgver.tar.gz")
sha256sums=('d57ca44672b4a81a6fd73e8d8f039e4cab0149e361c8b0e3a036fa5588544802') sha256sums=('d57ca44672b4a81a6fd73e8d8f039e4cab0149e361c8b0e3a036fa5588544802')
build() { build() {
cd "opnieuw-$pkgver" cd "opnieuw-$pkgver"
python setup.py build python -m build --wheel --no-isolation
} }
check() { check() {
cd "opnieuw-$pkgver" cd "opnieuw-$pkgver"
python -m unittest python -m unittest
} }
package() { package() {
cd "opnieuw-$pkgver" cd "opnieuw-$pkgver"
python setup.py install --root="$pkgdir" --optimize=1 python -m installer --destdir="$pkgdir" dist/*.whl
install -Dm644 -t "$pkgdir/usr/share/licenses/$pkgname" LICENSE install -Dm644 -t "$pkgdir/usr/share/licenses/$pkgname" LICENSE
} }