* update python-yarl to 1.12.0-1

This commit is contained in:
Alexander Baldeck 2025-02-17 21:11:29 +01:00
parent 20dca51c89
commit e4f8db21a5
2 changed files with 27 additions and 13 deletions

View File

@ -1,7 +1,7 @@
pkgbase = python-yarl
pkgdesc = Yet another URL library
pkgver = 1.9.4
pkgrel = 4
pkgver = 1.12.0
pkgrel = 1
url = https://github.com/aio-libs/yarl/
arch = x86_64
arch = powerpc64le
@ -21,8 +21,8 @@ pkgbase = python-yarl
depends = python
depends = python-multidict
depends = python-idna
source = https://github.com/aio-libs/yarl/archive/v1.9.4/python-yarl-1.9.4.tar.gz
sha512sums = e31a36539166034f3b231e1f9fc47b7d0d1aea0424b6054e1858eefa9f290350ee8b1c74bb90a120d6b9f3c13fe7b675d6e0676272b3222b788d479ae9fd3ff5
b2sums = c0022b32b41c1125d788c656883b3552314b138601fef72cc55ce90fc9986f44912395977ba6ac27d344c0a3593172265fb664eb6a696de9787a2474f61d14ce
source = https://github.com/aio-libs/yarl/archive/v1.12.0/python-yarl-1.12.0.tar.gz
sha512sums = d2028e44741bc1b47669ec9dfa2264a190d5f16d223d132fe8247011e54f41b3640e53387ae93256f82f186c2abd61718f81a45ae180e96eabedb050e83bda9e
b2sums = 3814505c8ca9176f737b204bab92df24c63adf054ed7625ec7bacb83697fa5d3098ad16681b3729c45fd3205e04238ed5663e18dc1f25a24e31ba30cfb5c1962
pkgname = python-yarl

View File

@ -3,18 +3,33 @@
_pkgname=yarl
pkgname=python-yarl
pkgver=1.9.4
pkgrel=4
pkgver=1.12.0
pkgrel=1
pkgdesc='Yet another URL library'
url='https://github.com/aio-libs/yarl/'
arch=(x86_64 powerpc64le powerpc64 powerpc riscv64)
license=('Apache-2.0')
depends=('glibc' 'python' 'python-multidict' 'python-idna')
makedepends=('cython' 'python-setuptools' 'python-build' 'python-installer' 'python-wheel' 'python-expandvars')
checkdepends=('python-pytest' 'python-pytest-xdist')
depends=(
'glibc'
'python'
'python-multidict'
'python-idna'
)
makedepends=(
'cython'
'python-setuptools'
'python-build'
'python-installer'
'python-wheel'
'python-expandvars'
)
checkdepends=(
'python-pytest'
'python-pytest-xdist'
)
source=(https://github.com/aio-libs/yarl/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
sha512sums=('e31a36539166034f3b231e1f9fc47b7d0d1aea0424b6054e1858eefa9f290350ee8b1c74bb90a120d6b9f3c13fe7b675d6e0676272b3222b788d479ae9fd3ff5')
b2sums=('c0022b32b41c1125d788c656883b3552314b138601fef72cc55ce90fc9986f44912395977ba6ac27d344c0a3593172265fb664eb6a696de9787a2474f61d14ce')
sha512sums=('d2028e44741bc1b47669ec9dfa2264a190d5f16d223d132fe8247011e54f41b3640e53387ae93256f82f186c2abd61718f81a45ae180e96eabedb050e83bda9e')
b2sums=('3814505c8ca9176f737b204bab92df24c63adf054ed7625ec7bacb83697fa5d3098ad16681b3729c45fd3205e04238ed5663e18dc1f25a24e31ba30cfb5c1962')
prepare() {
cd ${_pkgname}-${pkgver}
@ -38,7 +53,6 @@ check() {
package() {
cd ${_pkgname}-${pkgver}
#LANG=en_US.UTF-8 python setup.py install --root="${pkgdir}" -O1 --skip-build
export LANG=en_US.UTF-8
python -m installer --destdir="$pkgdir" dist/*.whl
}