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: Sun, 29 Mar 2020 08:20:27
Message-Id: 1585469942.586201e50524d770f243d8b18d4ccb13ab705d62.mgorny@gentoo
1 commit: 586201e50524d770f243d8b18d4ccb13ab705d62
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Mar 29 07:51:28 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Mar 29 08:19:02 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=586201e5
7
8 dev-python/sentry-sdk: Remove redundant versions
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-0.13.2.ebuild | 28 --------------------------
14 2 files changed, 29 deletions(-)
15
16 diff --git a/dev-python/sentry-sdk/Manifest b/dev-python/sentry-sdk/Manifest
17 index a9debc63f91..bd3425caa5d 100644
18 --- a/dev-python/sentry-sdk/Manifest
19 +++ b/dev-python/sentry-sdk/Manifest
20 @@ -1,2 +1 @@
21 -DIST sentry-sdk-0.13.2.tar.gz 64962 BLAKE2B 3ae730d850c7762558e0155045e6b3a931e5aa26ff068eaee8f1974a79aadc417f484788f10cd20ff3c02c406dfd5d868b13a08e6501ccb0d1d169290e1f4c17 SHA512 27068c5da6074757a7d75add0458a036a7d349a6b7ee680aae0fd94df5eb04b7fd106c111af4f85b9aedd2b48151ba2c3e0a5c9723946a45b947a60cc92ed1bb
22 DIST sentry-sdk-0.14.1.tar.gz 66829 BLAKE2B f675dc46d300c68ecbf2fd0d698daeed2e48645ae69df249aae79557d9a80dafe5eb9fe8a22f6087019eb416d9e760e12f54926e4767a2036278bd6311788de3 SHA512 bcbd478715abfdfa8c583af2ee6fd1110280cca4cd54cdf425f49e22acf7351871c304dfa25b8932fd0fae9ea981db6786c5dec7acf352b98c00f2cca7dc6c1f
23
24 diff --git a/dev-python/sentry-sdk/sentry-sdk-0.13.2.ebuild b/dev-python/sentry-sdk/sentry-sdk-0.13.2.ebuild
25 deleted file mode 100644
26 index 6687c9c45aa..00000000000
27 --- a/dev-python/sentry-sdk/sentry-sdk-0.13.2.ebuild
28 +++ /dev/null
29 @@ -1,28 +0,0 @@
30 -# Copyright 1999-2020 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=7
34 -
35 -PYTHON_COMPAT=( python3_{5,6,7,8} )
36 -
37 -inherit distutils-r1
38 -
39 -DESCRIPTION="Python client for Sentry"
40 -HOMEPAGE="https://getsentry.com https://pypi.org/project/sentry-sdk/"
41 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
42 -
43 -LICENSE="PSF-2"
44 -SLOT="0"
45 -KEYWORDS="~amd64 ~arm ~arm64 ~x86"
46 -IUSE=""
47 -
48 -BDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
49 -RDEPEND="
50 - dev-python/urllib3
51 - dev-python/certifi
52 -"
53 -
54 -python_test() {
55 - cd "${S}"/src || die
56 - "${PYTHON}" test_typing.py || die "tests failed under ${EPYTHON}"
57 -}