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, 15 Jun 2021 05:40:36
Message-Id: 1623735412.b6c43f75f02f1d938ba0d093daba65c97fa54b8c.mgorny@gentoo
1 commit: b6c43f75f02f1d938ba0d093daba65c97fa54b8c
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jun 15 05:34:36 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue Jun 15 05:36:52 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b6c43f75
7
8 dev-python/sentry-sdk: Remove old
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.0.0.ebuild | 69 ---------------------------
14 2 files changed, 70 deletions(-)
15
16 diff --git a/dev-python/sentry-sdk/Manifest b/dev-python/sentry-sdk/Manifest
17 index d5e140d98be..8346db363c9 100644
18 --- a/dev-python/sentry-sdk/Manifest
19 +++ b/dev-python/sentry-sdk/Manifest
20 @@ -1,2 +1 @@
21 -DIST sentry-sdk-1.0.0.tar.gz 213707 BLAKE2B 9fa3dfac7d82c9e2c81be6f4edafbc27ab19a2a96876885dabe72d2dbd6cf392b80e453c640affb94d84f35b227b12d56927bec88e01a0ebfdcf8a466470a909 SHA512 e91ede3e5e31c2acba7094bd5c6a95280aa8367b1fcd524fc9b100d2a3a253efec1ed3d9c72465f5b2ef5276c834906d622b84e1650b65d2032f4acaf2fd1ab8
22 DIST sentry-sdk-1.1.0.tar.gz 215946 BLAKE2B 486f32430a03d42c73814195ef16ec4efc71512faca197d8020fad7b3d1e7350ec619ef453075bc4fc4e0e454f3aa6eda41ec29b88af19d75b5f6a10273db325 SHA512 500d0d3add4bf8e74f2e34d6c00491f4bbd45a2226cc0ee93ca0f63f5ae5aea61be6730f845d50e10909c9ede6918ec6cfb90e5ebe80b753dd634ac9a9238061
23
24 diff --git a/dev-python/sentry-sdk/sentry-sdk-1.0.0.ebuild b/dev-python/sentry-sdk/sentry-sdk-1.0.0.ebuild
25 deleted file mode 100644
26 index b0bc738254e..00000000000
27 --- a/dev-python/sentry-sdk/sentry-sdk-1.0.0.ebuild
28 +++ /dev/null
29 @@ -1,69 +0,0 @@
30 -# Copyright 1999-2021 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=7
34 -
35 -PYTHON_COMPAT=( python3_{7..9} )
36 -
37 -inherit distutils-r1
38 -
39 -DESCRIPTION="Python client for Sentry"
40 -HOMEPAGE="https://sentry.io/ https://pypi.org/project/sentry-sdk/"
41 -SRC_URI="https://github.com/getsentry/sentry-python/archive/${PV}.tar.gz -> ${P}.tar.gz"
42 -S="${WORKDIR}/sentry-python-${PV}"
43 -
44 -LICENSE="PSF-2"
45 -SLOT="0"
46 -KEYWORDS="amd64 arm arm64 ~ppc ~ppc64 ~sparc x86"
47 -
48 -RDEPEND="
49 - dev-python/urllib3[${PYTHON_USEDEP}]
50 - dev-python/certifi[${PYTHON_USEDEP}]
51 -"
52 -BDEPEND="
53 - test? (
54 - dev-python/asttokens[${PYTHON_USEDEP}]
55 - dev-python/django[${PYTHON_USEDEP}]
56 - dev-python/executing[${PYTHON_USEDEP}]
57 - dev-python/eventlet[${PYTHON_USEDEP}]
58 - dev-python/fakeredis[${PYTHON_USEDEP}]
59 - dev-python/flask-login[${PYTHON_USEDEP}]
60 - dev-python/gevent[${PYTHON_USEDEP}]
61 - dev-python/jsonschema[${PYTHON_USEDEP}]
62 - dev-python/pyrsistent[${PYTHON_USEDEP}]
63 - dev-python/pytest-aiohttp[${PYTHON_USEDEP}]
64 - dev-python/pytest-django[${PYTHON_USEDEP}]
65 - dev-python/pytest-forked[${PYTHON_USEDEP}]
66 - dev-python/pytest-localserver[${PYTHON_USEDEP}]
67 - dev-python/werkzeug[${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/stdlib/test_httplib.py
77 - tests/integrations/requests/test_requests.py
78 - # wtf is it supposed to do?!
79 - tests/integrations/gcp/test_gcp.py
80 - # hangs
81 - 'tests/test_transport.py::test_transport_works[eventlet'
82 - # TODO
83 - 'tests/test_basics.py::test_auto_enabling_integrations_catches_import_error'
84 - tests/test_client.py::test_databag_depth_stripping
85 - tests/test_client.py::test_databag_string_stripping
86 - tests/test_client.py::test_databag_breadth_stripping
87 - # test_circular_references: apparently fragile
88 - 'tests/integrations/threading/test_threading.py::test_circular_references'
89 - # test for new feature, fails with IndexError
90 - tests/integrations/wsgi/test_wsgi.py::test_session_mode_defaults_to_request_mode_in_wsgi_handler
91 - )
92 -
93 - # Prevent tests/integrations/modules/test_modules.py:test_basic failure
94 - # Needs to detect sentry-sdk in the installed modules
95 - distutils_install_for_testing
96 -
97 - pytest -vv ${deselect[@]/#/--deselect } || die "Tests failed with ${EPYTHON}"
98 -}