package/python-sentry-sdk: new package

Signed-off-by: Joseph Kogut <joseph.kogut@gmail.com>
Reviewed-by: Yegor Yefremov <yegorslists@googlemail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
Joseph Kogut 2018-12-10 11:22:28 -08:00 committed by Thomas Petazzoni
parent b24340bef7
commit af3e16949e
5 changed files with 29 additions and 0 deletions

View file

@ -1153,6 +1153,7 @@ F: package/llvm/
F: package/python-cython/
F: package/python-raven/
F: package/python-schedule/
F: package/python-sentry-sdk/
F: package/python-websockets/
F: package/python-xlib/

View file

@ -1024,6 +1024,7 @@ menu "External python modules"
source "package/python-secretstorage/Config.in"
source "package/python-see/Config.in"
source "package/python-semver/Config.in"
source "package/python-sentry-sdk/Config.in"
source "package/python-serial/Config.in"
source "package/python-serial-asyncio/Config.in"
source "package/python-service-identity/Config.in"

View file

@ -0,0 +1,8 @@
config BR2_PACKAGE_PYTHON_SENTRY_SDK
bool "python-sentry-sdk"
select BR2_PACKAGE_PYTHON_URLLIB3 # runtime
select BR2_PACKAGE_PYTHON_CERTIFI # runtime
help
Python client for Sentry (https://getsentry.com).
https://github.com/getsentry/sentry-python

View file

@ -0,0 +1,5 @@
# md5, sha256 from https://pypi.org/pypi/sentry-sdk/json
md5 78642322818c1ce47e80938fe1f40b5f sentry-sdk-0.6.2.tar.gz
sha256 56118f4c3bd3412e47d1969997580df2f27ae951df949d07f0c2120cefe40b00 sentry-sdk-0.6.2.tar.gz
# Locally computed sha256 checksums
sha256 59404d4c854e579097d41bfccd5006afde9d6d70e646cf55074cdbfead5ecf1c LICENSE

View file

@ -0,0 +1,14 @@
################################################################################
#
# python-sentry-sdk
#
################################################################################
PYTHON_SENTRY_SDK_VERSION = 0.6.2
PYTHON_SENTRY_SDK_SOURCE = sentry-sdk-$(PYTHON_SENTRY_SDK_VERSION).tar.gz
PYTHON_SENTRY_SDK_SITE = https://files.pythonhosted.org/packages/92/6f/b7b74d7635e220660c06897213fc6df894d291900c8e2710d72fb67528a7
PYTHON_SENTRY_SDK_SETUP_TYPE = setuptools
PYTHON_SENTRY_SDK_LICENSE = BSD-2-Clause
PYTHON_SENTRY_SDK_LICENSE_FILES = LICENSE
$(eval $(python-package))