diff options
author | Francesco Colista <fcolista@alpinelinux.org> | 2017-09-24 13:52:25 +0000 |
---|---|---|
committer | Francesco Colista <fcolista@alpinelinux.org> | 2017-09-25 07:11:33 +0000 |
commit | 881a80abcbf005ecdfa04fda4e28f988b6323266 (patch) | |
tree | 28976a5e470004b011f64e8ffd075c9879e246e2 /community | |
parent | e57f43c5b9aac2b61fce2b0f28bc4388d2197cf2 (diff) | |
download | aports-881a80abcbf005ecdfa04fda4e28f988b6323266.tar.bz2 aports-881a80abcbf005ecdfa04fda4e28f988b6323266.tar.xz |
community/py-raven: upgrade to 6.2.0, added check()
Diffstat (limited to 'community')
-rw-r--r-- | community/py-raven/APKBUILD | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/community/py-raven/APKBUILD b/community/py-raven/APKBUILD index 5fa9649c92..fbed1170e0 100644 --- a/community/py-raven/APKBUILD +++ b/community/py-raven/APKBUILD @@ -2,7 +2,7 @@ # Maintainer: Francesco Colista <fcolista@alpinelinux.org> pkgname=py-raven _pkgname=raven-python -pkgver=6.1.0 +pkgver=6.2.0 pkgrel=0 pkgdesc="Python client for Sentry" url="https://github.com/getsentry/raven-python" @@ -16,8 +16,14 @@ builddir="$srcdir"/$_pkgname-$pkgver build() { cd "$builddir" - python2 setup.py build || return 1 - python3 setup.py build || return 1 + python2 setup.py build + python3 setup.py build +} + +check() { + cd "$builddir" + python2 setup.py check + python3 setup.py check } package() { @@ -43,4 +49,4 @@ _py() { $python setup.py install --prefix=/usr --root="$subpkgdir" } -sha512sums="72e016d010a75a59d26a4ebe51e0a3ca80edb7eebcb3539750b4b229f66b0ce3cbcc33c24624a922cedc2063e2f9a70fca3ec80721c1bd3d5785b5c9719dcf2f py-raven-6.1.0.tar.gz" +sha512sums="31c6beaadbd16e6cf8cd50b97157426966c15c86745ab3c7e909f6850c243544e0c33750f2b474c24b779b2281944d90b9d286952d327978a1acb34c045e4d8c py-raven-6.2.0.tar.gz" |