commit:     d82f5a12a4164fa6fe12a45362117eae98cb52e0
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Thu Mar  7 15:25:30 2024 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Thu Mar  7 15:39:05 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d82f5a12

dev-python/sentry-sdk: Bump to 1.41.0

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/sentry-sdk/Manifest                 |   1 +
 dev-python/sentry-sdk/sentry-sdk-1.41.0.ebuild | 153 +++++++++++++++++++++++++
 2 files changed, 154 insertions(+)

diff --git a/dev-python/sentry-sdk/Manifest b/dev-python/sentry-sdk/Manifest
index 535c0c567f06..8cf71a0beb5c 100644
--- a/dev-python/sentry-sdk/Manifest
+++ b/dev-python/sentry-sdk/Manifest
@@ -1,2 +1,3 @@
 DIST sentry-python-1.40.4.gh.tar.gz 458601 BLAKE2B 
d2d7ab718b461418bb5a54afe5998dcc0e95d76d5975673c7470fa0f2bbb79e5f8999b254ff406b026d86422fbbe4d3395f07be1224afd00d02ce6d5f170a8f6
 SHA512 
2c62618e102f754ca838c54aa90bc4d00d8a98903ee2ac3118741bb38f0dd808c8deb8254581c820b086a06415c8adf62862e4c4b2dad393faf7d977a1015cfb
 DIST sentry-python-1.40.6.gh.tar.gz 460979 BLAKE2B 
c1df8479e8464480985a722cbbb078af071087e2f8f8c99cdd2675c732ae88c721bc99c5f16aa409552620fe1c89d0668b52b4d2662a6e53bec8eebbb56960c1
 SHA512 
6eb8237a5cdcd0e10f52cfb660b45f4873da9c10dd0f249d5c4d3a714def4256433a16835a17562dbd2f77b39dc7d50fd7d1b9807bdcac634763879c0a0c9aa3
+DIST sentry-python-1.41.0.gh.tar.gz 462664 BLAKE2B 
6c0b8256d639682124db51e27f81458930a53885682c3441edcfe12bdff4e63aec5fed78a88f9c13002efb9ea1ed064d8694c4e80bbcdf14c3fa4f394a884273
 SHA512 
5e58d5a7f06e3afb35645186373a9e6ef87ced3c11ddafcaa45e6a6760d08a812ef1c839d28e91ffd9844c64255e48001bd503536c15ba43366518685b764936

diff --git a/dev-python/sentry-sdk/sentry-sdk-1.41.0.ebuild 
b/dev-python/sentry-sdk/sentry-sdk-1.41.0.ebuild
new file mode 100644
index 000000000000..bd77eeba0b1a
--- /dev/null
+++ b/dev-python/sentry-sdk/sentry-sdk-1.41.0.ebuild
@@ -0,0 +1,153 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{11..12} )
+
+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-8[${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"
+)
+
+python_test() {
+       local 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
+               # requires AWS access
+               tests/integrations/aws_lambda
+               # requires quart_auth
+               tests/integrations/quart
+       )
+
+       local 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
+               
tests/integrations/django/test_data_scrubbing.py::test_scrub_django_session_cookies_{filtered,removed}
+               # 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/test_utils.py::test_installed_modules
+               # flaky hypothesis stuff
+               tests/test_serializer.py::test_bytes_serialization_repr_many
+               # TODO
+               tests/integrations/aiohttp/test_aiohttp.py::test_basic
+               
tests/tracing/test_decorator_py3.py::test_trace_decorator_{,a}sync_py3
+               # crashes Python
+               tests/integrations/grpc/test_grpc_aio.py
+               # hangs
+               
tests/integrations/threading/test_threading.py::test_propagates_threadpool_hub
+               # TODO
+               tests/test_utils.py::test_default_release
+               
tests/integrations/sqlalchemy/test_sqlalchemy.py::test_orm_queries
+               
tests/integrations/sqlalchemy/test_sqlalchemy.py::test_transactions
+               
tests/integrations/sqlalchemy/test_sqlalchemy.py::test_query_source
+               
tests/integrations/stdlib/test_subprocess.py::test_subprocess_basic
+               tests/integrations/threading/test_threading.py
+               tests/integrations/wsgi/test_wsgi.py
+               'tests/utils/test_contextvars.py::test_leaks[threads]'
+               # skipped without gevent but breaks stuff via broken teardown?
+               tests/test_metrics.py::test_no_metrics_with_gevent
+               # TODO
+               tests/utils/test_contextvars.py::test_leaks
+               # broken teardown?
+               tests/test_client.py::test_uwsgi_warnings
+       )
+
+       local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
+       epytest -p asyncio -p aiohttp -p pytest_forked
+}

Reply via email to