Date: Wednesday, May 12, 2021 @ 15:51:40 Author: arojas Revision: 415043
Update to 6.1.0 Modified: sip/trunk/PKGBUILD ----------+ PKGBUILD | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2021-05-12 15:48:35 UTC (rev 415042) +++ PKGBUILD 2021-05-12 15:51:40 UTC (rev 415043) @@ -1,10 +1,10 @@ # Maintainer: Antonio Rojas <[email protected]> pkgname=sip -pkgver=6.0.3 +pkgver=6.1.0 pkgrel=1 arch=(x86_64) -pkgdesc="A tool that makes it easy to create Python bindings for C and C++ libraries" +pkgdesc='A tool that makes it easy to create Python bindings for C and C++ libraries' url='https://www.riverbankcomputing.com/software/sip/intro' license=('custom:"sip"') depends=(python-toml python-packaging) @@ -11,15 +11,15 @@ makedepends=(python-setuptools) conflicts=(sip5) replaces=(sip5) -source=("https://pypi.python.org/packages/source/s/sip/sip-$pkgver.tar.gz") -sha256sums=('929e3515428ea962003ccf6795244a5fe4fa6e2c94dc9ab8cb2c58fcd368c34c') +source=(https://pypi.python.org/packages/source/s/sip/$pkgname-$pkgver.tar.gz) +sha256sums=('f069d550dd819609e019e5dc58fc5193e081c7f3fb4f7dc8f9be734e34d4e56e') build() { - cd sip-$pkgver + cd $pkgname-$pkgver python setup.py build } package() { - cd sip-$pkgver + cd $pkgname-$pkgver python setup.py install --skip-build --root="$pkgdir" --optimize=1 }
