diff options
author | Oleg Titov <oleg.titov@gmail.com> | 2019-05-02 18:01:17 -0500 |
---|---|---|
committer | prspkt <prspkt@protonmail.com> | 2019-05-06 14:43:34 +0300 |
commit | b0e649725d1edc7ff5dd8cb647c18fed7507a0b4 (patch) | |
tree | f403716659788c1b063bf8318a8c8579d14c00ab /community | |
parent | 2b17e52599512cd24c7ee55ec5a52c835e057617 (diff) | |
download | aports-b0e649725d1edc7ff5dd8cb647c18fed7507a0b4.tar.bz2 aports-b0e649725d1edc7ff5dd8cb647c18fed7507a0b4.tar.xz |
community/cython: upgrade to 0.29.7
- https://github.com/cython/cython/releases 0.29.7
- Modernize
Diffstat (limited to 'community')
-rw-r--r-- | community/cython/APKBUILD | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/community/cython/APKBUILD b/community/cython/APKBUILD index 9f2fc7c1f5..d748f8e914 100644 --- a/community/cython/APKBUILD +++ b/community/cython/APKBUILD @@ -2,8 +2,8 @@ # Contributor: Oleg Titov <oleg.titov@gmail.com> # Maintainer: Stuart Cardall <developer@it-offshore.co.uk> pkgname=cython -pkgver=0.29.6 -pkgrel=2 +pkgver=0.29.7 +pkgrel=0 pkgdesc="Cython is an optimising static compiler for both the Python & the extended Cython programming languages." url="https://cython.org" arch="all" @@ -12,7 +12,6 @@ options="!check" # several tests fail makedepends="py2-setuptools py3-setuptools python2-dev python3-dev" subpackages="cython2:_py2 cython3:_py3 cython-doc" source="cython-$pkgver.tar.gz::https://github.com/cython/cython/archive/$pkgver.tar.gz" -builddir="$srcdir/cython-$pkgver" # compatible fix for removing dev subpkg from apkbuild # cython is not a library but a compiler and does not need a dev subpackage @@ -23,7 +22,6 @@ prepare() { } build() { - cd "$builddir" python3 setup.py build cd "$builddir"-py2 @@ -31,7 +29,6 @@ build() { } check() { - cd "$builddir" make test } @@ -68,7 +65,6 @@ _py() { install_if="cython=$pkgver-r$pkgrel $_python" $_python setup.py install --prefix=/usr --root="$subpkgdir" --optimize=1 - } -sha512sums="0fdf2bb7cf269a2251b08639f73ab03a98fbb5b616de18eba810ba6e6eb9a3706f8f265f7389ae34d2a701ca86920779ae533c1c68c9119aec1fbdfeea83ddb0 cython-0.29.6.tar.gz" +sha512sums="ad566d5c9aa22db9998cd822b00fec1811222fbb6c4c764964b7e970d2b89edda11021193a59d4b21ae55795807edc3feadbe21b21063c7354ee01dc721fea45 cython-0.29.7.tar.gz" |