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