mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 21:37:15 +02:00
32 lines
902 B
Plaintext
32 lines
902 B
Plaintext
# Contributor: Francesco Colista <fcolista@alpinelinux.org>
|
|
# Maintainer: Francesco Colista <fcolista@alpinelinux.org>
|
|
pkgname=py3-sentry-sdk
|
|
pkgver=1.22.2
|
|
pkgrel=1
|
|
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"
|
|
subpackages="$pkgname-pyc"
|
|
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="
|
|
71d4235a0a5f6df0e18f0f0e04530ce225c218cc1018d48c7a419f3a118ea9d89df3635d62ae2a5a34632a58163ac317f41167e40b2ea172f2bd0467de3a8196 py3-sentry-sdk-1.22.2.tar.gz
|
|
"
|