This commit is contained in:
TriForceX
2021-03-13 22:13:38 -03:00
parent c77595adbd
commit b3ecc6e32d
7043 changed files with 119373 additions and 73690 deletions
+2 -2
View File
@@ -1,8 +1,8 @@
config BR2_PACKAGE_PYTHON_SENTRY_SDK
bool "python-sentry-sdk"
select BR2_PACKAGE_PYTHON_URLLIB3 # runtime
select BR2_PACKAGE_PYTHON_CERTIFI # runtime
select BR2_PACKAGE_PYTHON_URLLIB3 # runtime
help
Python client for Sentry (https://getsentry.com).
Python client for Sentry (https://sentry.io).
https://github.com/getsentry/sentry-python
@@ -1,5 +1,5 @@
# md5, sha256 from https://pypi.org/pypi/sentry_sdk/json
md5 3380bb835596517261c4f0f6d6851e36 sentry-sdk-0.7.10.tar.gz
sha256 ca2723556c102a1fabdf461b9a038d1d8631608c4d10085a7c06a0b590e79ad4 sentry-sdk-0.7.10.tar.gz
# md5, sha256 from https://pypi.org/pypi/sentry-sdk/json
md5 5d4abcc416cbd0b9443bf56588b02b55 sentry-sdk-0.17.3.tar.gz
sha256 0af429c221670e602f960fca85ca3f607c85510a91f11e8be8f742a978127f78 sentry-sdk-0.17.3.tar.gz
# Locally computed sha256 checksums
sha256 59404d4c854e579097d41bfccd5006afde9d6d70e646cf55074cdbfead5ecf1c LICENSE
sha256 59404d4c854e579097d41bfccd5006afde9d6d70e646cf55074cdbfead5ecf1c LICENSE
+12 -2
View File
@@ -4,11 +4,21 @@
#
################################################################################
PYTHON_SENTRY_SDK_VERSION = 0.7.10
PYTHON_SENTRY_SDK_VERSION = 0.17.3
PYTHON_SENTRY_SDK_SOURCE = sentry-sdk-$(PYTHON_SENTRY_SDK_VERSION).tar.gz
PYTHON_SENTRY_SDK_SITE = https://files.pythonhosted.org/packages/22/82/81445c38c82511d7bc4187669f04de74fde05c1dff0705f362cf1af3c4f0
PYTHON_SENTRY_SDK_SITE = https://files.pythonhosted.org/packages/64/7e/f1725d8649ef8f7d58cbec582157c454884238e59fef00b1707d555c7bea
PYTHON_SENTRY_SDK_SETUP_TYPE = setuptools
PYTHON_SENTRY_SDK_LICENSE = BSD-2-Clause
PYTHON_SENTRY_SDK_LICENSE_FILES = LICENSE
ifeq ($(BR2_PACKAGE_PYTHON),y)
# only needed/valid for python 3.x
define PYTHON_SENTRY_SDK_RM_PY3_FILES
rm -f $(addprefix $(TARGET_DIR)/usr/lib/python*/site-packages/sentry_sdk/integrations/,\
aiohttp.py asgi.py django/asgi.py sanic.py tornado.py)
endef
PYTHON_SENTRY_SDK_POST_INSTALL_TARGET_HOOKS += PYTHON_SENTRY_SDK_RM_PY3_FILES
endif
$(eval $(python-package))