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, 28 Jul 2021 05:32:02
Message-Id: 1627450313.3614a74c54a8def8e022e86df2b68a3188516ba4.mgorny@gentoo
1 commit: 3614a74c54a8def8e022e86df2b68a3188516ba4
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jul 28 05:14:22 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed Jul 28 05:31:53 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3614a74c
7
8 dev-python/sentry-sdk: Bump to 1.3.1
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.3.1.ebuild | 71 +++++++++++++++++++++++++++
14 2 files changed, 72 insertions(+)
15
16 diff --git a/dev-python/sentry-sdk/Manifest b/dev-python/sentry-sdk/Manifest
17 index 4483d80ed47..24ca5f10728 100644
18 --- a/dev-python/sentry-sdk/Manifest
19 +++ b/dev-python/sentry-sdk/Manifest
20 @@ -1,3 +1,4 @@
21 DIST sentry-sdk-1.1.0.tar.gz 215946 BLAKE2B 486f32430a03d42c73814195ef16ec4efc71512faca197d8020fad7b3d1e7350ec619ef453075bc4fc4e0e454f3aa6eda41ec29b88af19d75b5f6a10273db325 SHA512 500d0d3add4bf8e74f2e34d6c00491f4bbd45a2226cc0ee93ca0f63f5ae5aea61be6730f845d50e10909c9ede6918ec6cfb90e5ebe80b753dd634ac9a9238061
22 DIST sentry-sdk-1.2.0.tar.gz 218371 BLAKE2B dcba23b246d4620f93b82a07a9fa9c73ae8b67d54e9a690fc53c1b08580433b2d37a50f29a47e01c7cdcc29eef45cc0b67e96f1e9b333496002ceea5ce7388a9 SHA512 86705fab17331bf5cbe4dbb25562d80b5b080d2bee0a9bb2c153bb379e63ada10465bd5fdfa24d71fc50cc1d80d5afd3e569a779f2a11bde671cc6782ddca347
23 DIST sentry-sdk-1.3.0.tar.gz 219259 BLAKE2B d1da04dc80653f1f55e03e43f71e19b27588110e34dfd3c8b6968e8966e3ee6df1818bf7d0e23dab2534723b9ea93488933bd23ec763935c5683aa800b335152 SHA512 44e96654a3e4288e63e0fc780ccdf16e5a105ab51af32de146159b9affcc42fbc7004df6673e84369f802e8fdb4e060d1f756945afbe0465dca078d28ad242fb
24 +DIST sentry-sdk-1.3.1.tar.gz 219705 BLAKE2B 3fc8f81a5f762f400c70ae1c83ab46e97ec4641a61b86dc5b5a2cdbc22395b60fd53cef2d3d2dbfaaceb2d0bd32b842344fcaab898900b7dee2bd34ae3660f8b SHA512 60d819880b3d5316cad1ae4d236820f410c22c75c97d54d681f43ac6dfb503d3c5817314dd2db37107902b4e28d4f981ade200413388ecaf534135829723ef38
25
26 diff --git a/dev-python/sentry-sdk/sentry-sdk-1.3.1.ebuild b/dev-python/sentry-sdk/sentry-sdk-1.3.1.ebuild
27 new file mode 100644
28 index 00000000000..1d3e482c7e7
29 --- /dev/null
30 +++ b/dev-python/sentry-sdk/sentry-sdk-1.3.1.ebuild
31 @@ -0,0 +1,71 @@
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 + )
70 +"
71 +
72 +distutils_enable_tests pytest
73 +
74 +python_test() {
75 + local deselect=(
76 + # tests require Internet access
77 + tests/integrations/httpx/test_httpx.py
78 + tests/integrations/requests/test_requests.py
79 + tests/integrations/stdlib/test_httplib.py
80 + # wtf is it supposed to do?!
81 + tests/integrations/gcp/test_gcp.py
82 + # hangs
83 + 'tests/test_transport.py::test_transport_works[eventlet'
84 + # TODO
85 + 'tests/test_basics.py::test_auto_enabling_integrations_catches_import_error'
86 + tests/test_client.py::test_databag_depth_stripping
87 + tests/test_client.py::test_databag_string_stripping
88 + tests/test_client.py::test_databag_breadth_stripping
89 + # incompatible version?
90 + tests/integrations/falcon/test_falcon.py
91 + # test_circular_references: apparently fragile
92 + 'tests/integrations/threading/test_threading.py::test_circular_references'
93 + # test for new feature, fails with IndexError
94 + tests/integrations/wsgi/test_wsgi.py::test_session_mode_defaults_to_request_mode_in_wsgi_handler
95 + )
96 +
97 + # Prevent tests/integrations/modules/test_modules.py:test_basic failure
98 + # Needs to detect sentry-sdk in the installed modules
99 + distutils_install_for_testing
100 +
101 + epytest ${deselect[@]/#/--deselect }
102 +}