mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-23 03:05:48 +03:00
30 lines
875 B
Text
30 lines
875 B
Text
# Contributor: Francesco Colista <fcolista@alpinelinux.org>
|
|
# Maintainer: Francesco Colista <fcolista@alpinelinux.org>
|
|
pkgname=py3-sentry-sdk
|
|
pkgver=1.15.0
|
|
pkgrel=0
|
|
pkgdesc="The new Python SDK for Sentry.io"
|
|
url="https://sentry.io/for/python/"
|
|
arch="noarch"
|
|
license="BSD-2-Clause"
|
|
options="!check" # test depends on sanic that is not avail atm
|
|
depends="python3 py3-certifi py3-urllib3"
|
|
makedepends="py3-setuptools"
|
|
source="$pkgname-$pkgver.tar.gz::https://github.com/getsentry/sentry-python/archive/$pkgver.tar.gz"
|
|
builddir="$srcdir"/sentry-python-$pkgver
|
|
|
|
build() {
|
|
python3 setup.py build
|
|
}
|
|
|
|
check() {
|
|
python3 setup.py test
|
|
}
|
|
|
|
package() {
|
|
python3 setup.py install --skip-build --root="$pkgdir"
|
|
}
|
|
|
|
sha512sums="
|
|
9ae477c3ddc90c4189f4cbcca8756d7b0bd2df0358afa553467b431a2a131f32c9a9df9ce0ca3cca4d98b5a14746222f21476c164bf6da09bc06d94ce7ed0afe py3-sentry-sdk-1.15.0.tar.gz
|
|
"
|