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, 16 Mar 2023 03:33:29
Message-Id: 1678935978.735561b7366ed7271ebda464c156fe8e51a234c5.mgorny@gentoo
1 commit: 735561b7366ed7271ebda464c156fe8e51a234c5
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Mar 16 03:06:18 2023 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Mar 16 03:06:18 2023 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=735561b7
7
8 dev-python/typeguard: Bump to 3.0.1
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/typeguard/Manifest | 1 +
13 dev-python/typeguard/typeguard-3.0.1.ebuild | 45 +++++++++++++++++++++++++++++
14 2 files changed, 46 insertions(+)
15
16 diff --git a/dev-python/typeguard/Manifest b/dev-python/typeguard/Manifest
17 index 93485c5f8f65..4c5fc9fdeec2 100644
18 --- a/dev-python/typeguard/Manifest
19 +++ b/dev-python/typeguard/Manifest
20 @@ -1,2 +1,3 @@
21 DIST typeguard-2.13.3.gh.tar.gz 37436 BLAKE2B a3cb616692119c64a9dc0d0bae25cc661b7974a0b6cf6632fa403f7c5430873570b1aaa310bc03843deee6f77a831c303ea9d9091db596eb565fce43980bbb13 SHA512 26c31ee9670650d1969320187a924d29d986894a38f1026af58f705b132b64be3b6e2ac34729f966f5d302d486334b5a5d9e65fb206245b82b0ff0852020b609
22 DIST typeguard-3.0.0.tar.gz 55330 BLAKE2B b0b764414c70e109e5bdddd1bfac06af5b0db8d8913e2777b4bec94598ae70f5ed323686f54d902c541c606e7ae32129b3a29099e59cfe5ff2ecad4e6991409e SHA512 367ffea6636817bf9ce492de575b38b1f15aec323d415476bdea271f01ee60073274fd955bdad0e554eb306fb4e516b80a29e5db10015cf47856279235e36c24
23 +DIST typeguard-3.0.1.tar.gz 56196 BLAKE2B f53bfc7571063bc74588356cbff513311b0100079f42c3d8188ae430ffc1cf3ff2b7599a6ed0973ae02bb9d5d1818abc1c63a24d453592e630a4ac794ef4a5e4 SHA512 07d0276033730a6fc345aeabcbeb68f3b9740cb8336ed8ad731f75925d3bd9007ce050514bd98d39c1b85a4615ddf503420686ccd8ff6513c2610e40b8f89504
24
25 diff --git a/dev-python/typeguard/typeguard-3.0.1.ebuild b/dev-python/typeguard/typeguard-3.0.1.ebuild
26 new file mode 100644
27 index 000000000000..45c5399f1af2
28 --- /dev/null
29 +++ b/dev-python/typeguard/typeguard-3.0.1.ebuild
30 @@ -0,0 +1,45 @@
31 +# Copyright 2021-2023 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=8
35 +
36 +DISTUTILS_USE_PEP517=setuptools
37 +PYTHON_COMPAT=( python3_{9..11} )
38 +
39 +inherit distutils-r1 pypi
40 +
41 +DESCRIPTION="Run-time type checker for Python"
42 +HOMEPAGE="
43 + https://pypi.org/project/typeguard/
44 + https://github.com/agronholm/typeguard/
45 +"
46 +
47 +LICENSE="MIT"
48 +SLOT="0"
49 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
50 +
51 +RDEPEND="
52 + $(python_gen_cond_dep '
53 + >=dev-python/importlib_metadata-3.6[${PYTHON_USEDEP}]
54 + ' 3.{8..9})
55 + $(python_gen_cond_dep '
56 + >=dev-python/typing-extensions-4.4.0[${PYTHON_USEDEP}]
57 + ' 3.{8..10})
58 +"
59 +BDEPEND="
60 + >=dev-python/setuptools-scm-6.4[${PYTHON_USEDEP}]
61 +"
62 +
63 +distutils_enable_tests pytest
64 +
65 +python_test() {
66 + local EPYTEST_IGNORE=(
67 + # mypy changes results from version to version
68 + tests/mypy
69 + )
70 +
71 + local -x PYTHONDONTWRITEBYTECODE=
72 + local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
73 + # the XFAIL test pass due to some package being installed
74 + epytest -o xfail_strict=False
75 +}