upgpkg: python-string-utils 1.0.0-1
adopted and updated
This commit is contained in:
parent
cce713e38e
commit
37f08502e9
2 changed files with 22 additions and 17 deletions
|
@ -1,14 +1,16 @@
|
||||||
pkgbase = python-string-utils
|
pkgbase = python-string-utils
|
||||||
pkgdesc = Utility functions for strings checking and manipulation
|
pkgdesc = Utility functions for strings validation and manipulation
|
||||||
pkgver = 0.6.0
|
pkgver = 1.0.0
|
||||||
pkgrel = 1
|
pkgrel = 1
|
||||||
url = https://github.com/openshift/openshift-restclient-python
|
url = https://pypi.org/project/python-string-utils/
|
||||||
arch = any
|
arch = any
|
||||||
license = APACHE
|
license = APACHE
|
||||||
|
makedepends = python-build
|
||||||
|
makedepends = python-installer
|
||||||
|
makedepends = python-wheel
|
||||||
makedepends = python-setuptools
|
makedepends = python-setuptools
|
||||||
depends = python
|
depends = python
|
||||||
source = https://files.pythonhosted.org/packages/source/p/python-string-utils/python-string-utils-0.6.0.tar.gz
|
source = https://files.pythonhosted.org/packages/source/p/python-string-utils/python-string-utils-1.0.0.tar.gz
|
||||||
md5sums = 76ae6911f4bf0f1e76cd9be749c16745
|
sha256sums = dcf9060b03f07647c0a603408dc8b03f807f3b54a05c6e19eb14460256fac0cb
|
||||||
|
|
||||||
pkgname = python-string-utils
|
pkgname = python-string-utils
|
||||||
|
|
||||||
|
|
|
@ -1,22 +1,25 @@
|
||||||
# Maintainer: Giacomo Longo <gabibbo97@gmail.com>
|
# Maintainer: Cedric Girard <cgirard [dot] archlinux [at] valinor [dot] fr>
|
||||||
|
# Contributor: Giacomo Longo <gabibbo97@gmail.com>
|
||||||
pkgname=python-string-utils
|
pkgname=python-string-utils
|
||||||
pkgver=0.6.0
|
pkgver=1.0.0
|
||||||
pkgrel=1
|
pkgrel=1
|
||||||
pkgdesc="Utility functions for strings checking and manipulation"
|
pkgdesc="Utility functions for strings validation and manipulation"
|
||||||
url="https://github.com/openshift/openshift-restclient-python"
|
url="https://pypi.org/project/python-string-utils/"
|
||||||
license=('APACHE')
|
license=('APACHE')
|
||||||
source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/${pkgname}/${pkgname}-${pkgver}.tar.gz")
|
|
||||||
arch=('any')
|
arch=('any')
|
||||||
makedepends=('python-setuptools')
|
makedepends=(python-build python-installer python-wheel python-setuptools)
|
||||||
depends=('python')
|
depends=('python')
|
||||||
|
source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/${pkgname}/${pkgname}-${pkgver}.tar.gz")
|
||||||
|
sha256sums=('dcf9060b03f07647c0a603408dc8b03f807f3b54a05c6e19eb14460256fac0cb')
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
cd "$srcdir/$pkgname-$pkgver"
|
cd "$srcdir/$pkgname-$pkgver"
|
||||||
python setup.py build
|
python -m build --wheel --no-isolation
|
||||||
}
|
}
|
||||||
|
|
||||||
package() {
|
package() {
|
||||||
cd "$srcdir/$pkgname-$pkgver"
|
cd "$srcdir/$pkgname-$pkgver"
|
||||||
python setup.py install --root="$pkgdir/" --optimize=1 --skip-build
|
python -m installer --destdir="$pkgdir" dist/*.whl
|
||||||
|
rm "$pkgdir"/usr/README/README.md
|
||||||
|
rmdir "$pkgdir"/usr/README
|
||||||
}
|
}
|
||||||
md5sums=('76ae6911f4bf0f1e76cd9be749c16745')
|
|
||||||
|
|
Loading…
Reference in a new issue