Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/sentry-sdk/
Date: Tue, 21 Sep 2021 19:11:53
Message-Id: 1632251504.af2a6c687da95db43608d76b15476871b25a3c5f.mgorny@gentoo
1 commit: af2a6c687da95db43608d76b15476871b25a3c5f
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Tue Sep 21 18:16:40 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue Sep 21 19:11:44 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=af2a6c68
7
8 dev-python/sentry-sdk: Bump to 1.4.0
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/sentry-sdk/Manifest | 1 +
13 dev-python/sentry-sdk/sentry-sdk-1.4.0.ebuild | 72 +++++++++++++++++++++++++++
14 2 files changed, 73 insertions(+)
15
16 diff --git a/dev-python/sentry-sdk/Manifest b/dev-python/sentry-sdk/Manifest
17 index afbe92eee44..23a01375909 100644
18 --- a/dev-python/sentry-sdk/Manifest
19 +++ b/dev-python/sentry-sdk/Manifest
20 @@ -1 +1,2 @@
21 DIST sentry-sdk-1.3.1.tar.gz 219705 BLAKE2B 3fc8f81a5f762f400c70ae1c83ab46e97ec4641a61b86dc5b5a2cdbc22395b60fd53cef2d3d2dbfaaceb2d0bd32b842344fcaab898900b7dee2bd34ae3660f8b SHA512 60d819880b3d5316cad1ae4d236820f410c22c75c97d54d681f43ac6dfb503d3c5817314dd2db37107902b4e28d4f981ade200413388ecaf534135829723ef38
22 +DIST sentry-sdk-1.4.0.tar.gz 230870 BLAKE2B 8cad1f0046219b60af982d3a01ae67aa1b018c4c8815c2adae834beeea6015057791abff6e1213a4a5902fe62e56f232dcb0cb355927c2f986751145dc633962 SHA512 b1f3021b4a67c2c4e13109ec3e189d1e133f07ecad18bc3e0ebd7b99e90b53aa83cac2cc567b8b47763892a9e06e1795aca497f146cbaae15952c880f9c160cd
23
24 diff --git a/dev-python/sentry-sdk/sentry-sdk-1.4.0.ebuild b/dev-python/sentry-sdk/sentry-sdk-1.4.0.ebuild
25 new file mode 100644
26 index 00000000000..d0881dad90d
27 --- /dev/null
28 +++ b/dev-python/sentry-sdk/sentry-sdk-1.4.0.ebuild
29 @@ -0,0 +1,72 @@
30 +# Copyright 1999-2021 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +PYTHON_COMPAT=( python3_{8..9} )
36 +inherit distutils-r1
37 +
38 +DESCRIPTION="Python client for Sentry"
39 +HOMEPAGE="https://sentry.io/ https://pypi.org/project/sentry-sdk/"
40 +SRC_URI="https://github.com/getsentry/sentry-python/archive/${PV}.tar.gz -> ${P}.tar.gz"
41 +S="${WORKDIR}/sentry-python-${PV}"
42 +
43 +LICENSE="PSF-2"
44 +SLOT="0"
45 +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~sparc ~x86"
46 +
47 +RDEPEND="
48 + dev-python/urllib3[${PYTHON_USEDEP}]
49 + dev-python/certifi[${PYTHON_USEDEP}]
50 +"
51 +BDEPEND="
52 + test? (
53 + dev-python/asttokens[${PYTHON_USEDEP}]
54 + dev-python/django[${PYTHON_USEDEP}]
55 + dev-python/executing[${PYTHON_USEDEP}]
56 + dev-python/eventlet[${PYTHON_USEDEP}]
57 + dev-python/fakeredis[${PYTHON_USEDEP}]
58 + dev-python/flask-login[${PYTHON_USEDEP}]
59 + dev-python/gevent[${PYTHON_USEDEP}]
60 + dev-python/jsonschema[${PYTHON_USEDEP}]
61 + dev-python/pyrsistent[${PYTHON_USEDEP}]
62 + dev-python/pytest-aiohttp[${PYTHON_USEDEP}]
63 + dev-python/pytest-django[${PYTHON_USEDEP}]
64 + dev-python/pytest-forked[${PYTHON_USEDEP}]
65 + dev-python/pytest-localserver[${PYTHON_USEDEP}]
66 + dev-python/werkzeug[${PYTHON_USEDEP}]
67 + dev-python/zope-event[${PYTHON_USEDEP}]
68 + )
69 +"
70 +
71 +distutils_enable_tests pytest
72 +
73 +python_test() {
74 + local deselect=(
75 + # tests require Internet access
76 + tests/integrations/httpx/test_httpx.py
77 + tests/integrations/requests/test_requests.py
78 + tests/integrations/stdlib/test_httplib.py
79 + # wtf is it supposed to do?!
80 + tests/integrations/gcp/test_gcp.py
81 + # hangs
82 + 'tests/test_transport.py::test_transport_works[eventlet'
83 + # TODO
84 + 'tests/test_basics.py::test_auto_enabling_integrations_catches_import_error'
85 + tests/test_client.py::test_databag_depth_stripping
86 + tests/test_client.py::test_databag_string_stripping
87 + tests/test_client.py::test_databag_breadth_stripping
88 + # incompatible version?
89 + tests/integrations/falcon/test_falcon.py
90 + # test_circular_references: apparently fragile
91 + 'tests/integrations/threading/test_threading.py::test_circular_references'
92 + # test for new feature, fails with IndexError
93 + tests/integrations/wsgi/test_wsgi.py::test_session_mode_defaults_to_request_mode_in_wsgi_handler
94 + )
95 +
96 + # Prevent tests/integrations/modules/test_modules.py:test_basic failure
97 + # Needs to detect sentry-sdk in the installed modules
98 + distutils_install_for_testing
99 +
100 + epytest ${deselect[@]/#/--deselect }
101 +}