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/typeguard/
Date: Thu, 23 Jun 2022 08:17:31
Message-Id: 1655972238.4c4169bc33ec0c9a1fb0e50d2009e7d337123621.mgorny@gentoo
1 commit: 4c4169bc33ec0c9a1fb0e50d2009e7d337123621
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jun 23 08:00:38 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Jun 23 08:17:18 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4c4169bc
7
8 dev-python/typeguard: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/typeguard/typeguard-2.13.3.ebuild | 39 ----------------------------
13 1 file changed, 39 deletions(-)
14
15 diff --git a/dev-python/typeguard/typeguard-2.13.3.ebuild b/dev-python/typeguard/typeguard-2.13.3.ebuild
16 deleted file mode 100644
17 index ea613cada856..000000000000
18 --- a/dev-python/typeguard/typeguard-2.13.3.ebuild
19 +++ /dev/null
20 @@ -1,39 +0,0 @@
21 -# Copyright 2021-2022 Gentoo Authors
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=8
25 -
26 -PYTHON_COMPAT=( python3_{8..10} )
27 -inherit distutils-r1
28 -
29 -DESCRIPTION="Run-time type checker for Python"
30 -HOMEPAGE="
31 - https://pypi.org/project/typeguard/
32 - https://github.com/agronholm/typeguard/"
33 -SRC_URI="
34 - https://github.com/agronholm/typeguard/archive/${PV}.tar.gz
35 - -> ${P}.gh.tar.gz"
36 -
37 -LICENSE="MIT"
38 -SLOT="0"
39 -KEYWORDS="amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc x86"
40 -
41 -BDEPEND="
42 - dev-python/setuptools_scm[${PYTHON_USEDEP}]
43 - test? (
44 - dev-python/typing-extensions[${PYTHON_USEDEP}]
45 - )"
46 -
47 -distutils_enable_tests pytest
48 -
49 -export SETUPTOOLS_SCM_PRETEND_VERSION=${PV}
50 -
51 -python_test() {
52 - local EPYTEST_IGNORE=(
53 - # mypy changes results from version to version
54 - tests/mypy
55 - )
56 -
57 - local -x PYTHONDONTWRITEBYTECODE=
58 - epytest
59 -}