commit:     bf36b1c0f7cd6286ab70aa9016e3973d0eceda65
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Tue Aug 29 18:12:26 2023 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Tue Aug 29 18:53:31 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bf36b1c0

dev-python/sentry-sdk: add 1.30.0

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 dev-python/sentry-sdk/Manifest                 |   1 +
 dev-python/sentry-sdk/sentry-sdk-1.30.0.ebuild | 118 +++++++++++++++++++++++++
 2 files changed, 119 insertions(+)

diff --git a/dev-python/sentry-sdk/Manifest b/dev-python/sentry-sdk/Manifest
index 3695a0dac9a6..426c74ff0f59 100644
--- a/dev-python/sentry-sdk/Manifest
+++ b/dev-python/sentry-sdk/Manifest
@@ -1 +1,2 @@
 DIST sentry-python-1.29.2.gh.tar.gz 382177 BLAKE2B 
1fa42e53ed1115fb50b3a5d4a49ca7f851cc487ecb638b7add2d261ed207c9c8d4ccc1ca20760516e82e5a5cd52b1582271b81e52977b87944b0df55365a9800
 SHA512 
56fd53f3a43acc1c2fe5bd6f44c7a5a63b4ab944919fa5a4539239230c3c64eb75e75414e26809d12bcb601a779b661d6dec73dededa07e10f120438ea3ad5c7
+DIST sentry-python-1.30.0.gh.tar.gz 387394 BLAKE2B 
2b3e41e209d162406b3c2d216ca65616b88db137f51bda8b22fb8be730deb07ffa05d75e674e86a94b772e739ec5b8d1c0c96efe20cb49355d8d96271af3169d
 SHA512 
50590b0553b803b0555b9e562eda4d84edc8bfd02a7beaf9e0a17dec76ff5c22b4d618a7dfc4fc05ad9c2c0d14f8e34f9c5a39795aacb9e8872c1a3e3f9a0219

diff --git a/dev-python/sentry-sdk/sentry-sdk-1.30.0.ebuild 
b/dev-python/sentry-sdk/sentry-sdk-1.30.0.ebuild
new file mode 100644
index 000000000000..1335788113ac
--- /dev/null
+++ b/dev-python/sentry-sdk/sentry-sdk-1.30.0.ebuild
@@ -0,0 +1,118 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_11 )
+
+inherit distutils-r1
+
+MY_P=sentry-python-${PV}
+DESCRIPTION="Python client for Sentry"
+HOMEPAGE="
+       https://sentry.io/
+       https://github.com/getsentry/sentry-python/
+       https://pypi.org/project/sentry-sdk/
+"
+SRC_URI="
+       https://github.com/getsentry/sentry-python/archive/${PV}.tar.gz
+               -> ${MY_P}.gh.tar.gz
+"
+S=${WORKDIR}/${MY_P}
+
+LICENSE="PSF-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~sparc ~x86"
+
+RDEPEND="
+       dev-python/urllib3[${PYTHON_USEDEP}]
+       dev-python/certifi[${PYTHON_USEDEP}]
+"
+BDEPEND="
+       test? (
+               dev-python/asttokens[${PYTHON_USEDEP}]
+               dev-python/django[${PYTHON_USEDEP}]
+               dev-python/executing[${PYTHON_USEDEP}]
+               dev-python/fakeredis[${PYTHON_USEDEP}]
+               dev-python/flask-login[${PYTHON_USEDEP}]
+               dev-python/jsonschema[${PYTHON_USEDEP}]
+               dev-python/pyrsistent[${PYTHON_USEDEP}]
+               dev-python/pytest-aiohttp[${PYTHON_USEDEP}]
+               dev-python/pytest-django[${PYTHON_USEDEP}]
+               dev-python/pytest-forked[${PYTHON_USEDEP}]
+               dev-python/pytest-localserver[${PYTHON_USEDEP}]
+               dev-python/python-socks[${PYTHON_USEDEP}]
+               dev-python/responses[${PYTHON_USEDEP}]
+               dev-python/werkzeug[${PYTHON_USEDEP}]
+               dev-python/zope-event[${PYTHON_USEDEP}]
+       )
+"
+
+distutils_enable_tests pytest
+
+PATCHES=(
+       "${FILESDIR}/sentry-sdk-1.21.0-ignore-warnings.patch"
+)
+
+EPYTEST_IGNORE=(
+       # tests require Internet access
+       tests/integrations/httpx/test_httpx.py
+       tests/integrations/requests/test_requests.py
+       tests/integrations/stdlib/test_httplib.py
+       tests/integrations/flask/test_flask.py
+       tests/integrations/django/test_basic.py
+       tests/integrations/socket/test_socket.py
+       # wtf is it supposed to do?!
+       tests/integrations/gcp/test_gcp.py
+       # broken by rq-1.10.1 (optional dep)
+       tests/integrations/rq/test_rq.py
+       # fastapi is not packaged
+       tests/integrations/asgi/test_fastapi.py
+       # TODO
+       tests/integrations/bottle
+       # TODO: causes breakage in other tests
+       tests/integrations/starlette
+       # TODO
+       tests/integrations/tornado
+       # requires mockupdb
+       tests/integrations/pymongo
+)
+
+EPYTEST_DESELECT=(
+       # hangs
+       'tests/test_transport.py::test_transport_works'
+       # TODO
+       
'tests/test_basics.py::test_auto_enabling_integrations_catches_import_error'
+       tests/test_client.py::test_databag_depth_stripping
+       tests/test_client.py::test_databag_string_stripping
+       tests/test_client.py::test_databag_breadth_stripping
+       
tests/integrations/asgi/test_asgi.py::test_auto_session_tracking_with_aggregates
+       tests/integrations/asgi/test_asgi.py::test_websocket
+       tests/integrations/aiohttp/test_aiohttp.py::test_transaction_style
+       
tests/integrations/aiohttp/test_aiohttp.py::test_traces_sampler_gets_request_object_in_sampling_context
+       
tests/integrations/django/test_data_scrubbing.py::test_scrub_django_custom_session_cookies_filtered
+       # incompatible version?
+       tests/integrations/falcon/test_falcon.py
+       
tests/integrations/sqlalchemy/test_sqlalchemy.py::test_large_event_not_truncated
+       # test_circular_references: apparently fragile
+       
'tests/integrations/threading/test_threading.py::test_circular_references'
+       # test for new feature, fails with IndexError
+       
tests/integrations/wsgi/test_wsgi.py::test_session_mode_defaults_to_request_mode_in_wsgi_handler
+       # TODO
+       
tests/integrations/wsgi/test_wsgi.py::test_auto_session_tracking_with_aggregates
+       
tests/integrations/wsgi/test_wsgi.py::test_profile_sent_when_profiling_enabled
+       tests/test_profiler.py::test_sample_buffer
+       tests/test_profiler.py::test_thread_scheduler_takes_first_samples
+       tests/test_profiler.py::test_thread_scheduler_takes_more_samples
+       tests/test_profiler.py::test_thread_scheduler_single_background_thread
+       # broken with py3.11, *shrug*
+       tests/test_profiler.py::test_extract_stack_with_max_depth
+       # TODO
+       
tests/integrations/sqlalchemy/test_sqlalchemy.py::test_long_sql_query_preserved
+       
tests/integrations/sqlalchemy/test_sqlalchemy.py::test_engine_name_not_string
+       tests/test_scrubber.py::test_breadcrumb_extra_scrubbing
+       tests/test_scrubber.py::test_span_data_scrubbing
+       # this is not even funny
+       tests/integrations/modules/test_modules.py::test_installed_modules
+)

Reply via email to