commit:     740e0b0e3becb489807fea6cd3f72dab7a1961b5
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Tue Oct 31 17:49:27 2023 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Tue Oct 31 19:12:28 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=740e0b0e

dev-python/sentry-sdk: Bump to 1.33.1

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

 dev-python/sentry-sdk/Manifest                 |   1 +
 dev-python/sentry-sdk/sentry-sdk-1.33.1.ebuild | 125 +++++++++++++++++++++++++
 2 files changed, 126 insertions(+)

diff --git a/dev-python/sentry-sdk/Manifest b/dev-python/sentry-sdk/Manifest
index 643c8e35bb00..85b2f54d1a7d 100644
--- a/dev-python/sentry-sdk/Manifest
+++ b/dev-python/sentry-sdk/Manifest
@@ -1,2 +1,3 @@
 DIST sentry-python-1.31.0.gh.tar.gz 399341 BLAKE2B 
e5162a619335bd7e089ed01c938d29233b5a19315f11e414a1e51d4539ea3a371a3dd743ad0dafedaff7bf8ca801855e016ea62d38a02fcab8702c8fbf879e0b
 SHA512 
29504e3f94d994512e52c18df7dc156fcf86a67e68c2f11f0be007577b61e4a3b606cf7b58ef0488c3b764fa9193d8f7672e2c9515c0099a9a44574fd8c5c07e
 DIST sentry-python-1.32.0.gh.tar.gz 422326 BLAKE2B 
f2753d958599462a3b6134872072ccfbca0e2dbeedffeffb2c430c46c3ea19cdbd9add0789cd77b0971444edcc1d87f2082f33b5bd8798c81ca226ac92d565c6
 SHA512 
ff29adb1b0fdec3864c2291ddea533e4aa5b8cd1d5ba7381954cd4d3f873a47c58fd7b6997479552e43e229a5e282d61c926185b79266801f731a3c4289c83c0
+DIST sentry-python-1.33.1.gh.tar.gz 431232 BLAKE2B 
8f08e2ae58fa7d55384be9102a6f2f70eea550c6b53794013ff7326a0dd32358782db1e0c15b9837c688a85dae36f16538bc2d7c1516c1de4e75aa5c1ee35d55
 SHA512 
e86d20f1d8736175340bfd850560055342fd234709d1c4c5f931274e2e0d31b6bc0bb559593aff2ec4aaf508aefb0d8e1025d8eedc1dbb2d13c41b019721ce9f

diff --git a/dev-python/sentry-sdk/sentry-sdk-1.33.1.ebuild 
b/dev-python/sentry-sdk/sentry-sdk-1.33.1.ebuild
new file mode 100644
index 000000000000..76d347486601
--- /dev/null
+++ b/dev-python/sentry-sdk/sentry-sdk-1.33.1.ebuild
@@ -0,0 +1,125 @@
+# 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"
+)
+
+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
+       )
+
+       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
+               # 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
+       )
+
+       local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
+       epytest -p asyncio -p aiohttp -p pytest_forked
+}

Reply via email to