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/pydantic/
Date: Fri, 30 Dec 2022 07:08:27
Message-Id: 1672384097.c4d8f218cca25641ed9d2ce513b8910dfc36e2f2.mgorny@gentoo
1 commit: c4d8f218cca25641ed9d2ce513b8910dfc36e2f2
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri Dec 30 06:35:13 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri Dec 30 07:08:17 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c4d8f218
7
8 dev-python/pydantic: Bump to 1.10.3
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/pydantic/Manifest | 1 +
13 dev-python/pydantic/pydantic-1.10.3.ebuild | 82 ++++++++++++++++++++++++++++++
14 2 files changed, 83 insertions(+)
15
16 diff --git a/dev-python/pydantic/Manifest b/dev-python/pydantic/Manifest
17 index b8a0f2569946..83a961beb5b7 100644
18 --- a/dev-python/pydantic/Manifest
19 +++ b/dev-python/pydantic/Manifest
20 @@ -1 +1,2 @@
21 DIST pydantic-1.10.2.gh.tar.gz 888288 BLAKE2B 9aac69ace185ccc56255cf36f9af472caf4c6bcbdcbb81eec66353f755673e9a240e7713c0a2ecff00a02e07b0069e4b3f1edda41f345698a979b79dd54b354a SHA512 dc2acfb271cd62b6de08bbaa48dbc76ec8d3a3f3142778ffa2cb9a2a1cad62dbdb3c7470a50e9a2825837b65a48c6aefb8736411f32c398aa9ca779841b53ac5
22 +DIST pydantic-1.10.3.gh.tar.gz 898768 BLAKE2B e8cec71f0d3f66e2c71e421505f624f7e92827f8fe4ef3a7c637b4f2cbc543d43e63739f8fed1a84246458d6675f19de9f83c7fc2a1d8f6e9fb18807ad5ace6f SHA512 7c9db4a010f14ab41b0e7782e59e51caded5de31798e4dd83e01037e3365e34537b30c79c12a6451fdee875e1bfe1a3d981cae58aa373917f71489231df2e6a6
23
24 diff --git a/dev-python/pydantic/pydantic-1.10.3.ebuild b/dev-python/pydantic/pydantic-1.10.3.ebuild
25 new file mode 100644
26 index 000000000000..6f11c38ea2f5
27 --- /dev/null
28 +++ b/dev-python/pydantic/pydantic-1.10.3.ebuild
29 @@ -0,0 +1,82 @@
30 +# Copyright 1999-2022 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +DISTUTILS_USE_PEP517=setuptools
36 +PYTHON_COMPAT=( pypy3 python3_{8..11} )
37 +
38 +inherit distutils-r1
39 +
40 +MY_P=${P/_beta/b}
41 +DESCRIPTION="Data parsing and validation using Python type hints"
42 +HOMEPAGE="
43 + https://github.com/pydantic/pydantic/
44 + https://pypi.org/project/pydantic/
45 +"
46 +SRC_URI="
47 + https://github.com/pydantic/pydantic/archive/v${PV/_beta/b}.tar.gz
48 + -> ${MY_P}.gh.tar.gz
49 +"
50 +S=${WORKDIR}/${MY_P}
51 +
52 +LICENSE="MIT"
53 +SLOT="0"
54 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
55 +IUSE="+native-extensions"
56 +
57 +RDEPEND="
58 + >=dev-python/typing-extensions-4.1.0[${PYTHON_USEDEP}]
59 +"
60 +BDEPEND="
61 + native-extensions? (
62 + dev-python/cython[${PYTHON_USEDEP}]
63 + )
64 + test? (
65 + dev-python/hypothesis[${PYTHON_USEDEP}]
66 + dev-python/pytest-mock[${PYTHON_USEDEP}]
67 + dev-python/python-dotenv[${PYTHON_USEDEP}]
68 + >=dev-python/python-email-validator-1.2.1[${PYTHON_USEDEP}]
69 + )
70 +"
71 +
72 +distutils_enable_tests pytest
73 +
74 +src_prepare() {
75 + sed -i -e '/CFLAGS/d' setup.py || die
76 + distutils-r1_src_prepare
77 +}
78 +
79 +python_compile() {
80 + if [[ ${EPYTHON} == pypy3 ]] || ! use native-extensions; then
81 + # do not build extensions on PyPy to workaround
82 + # https://github.com/cython/cython/issues/4763
83 + local -x SKIP_CYTHON=1
84 + fi
85 + distutils-r1_python_compile
86 +}
87 +
88 +python_test() {
89 + local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
90 + local -x PYTEST_PLUGINS=pytest_mock
91 +
92 + local EPYTEST_DESELECT=(
93 + # flaky test, known upstream
94 + tests/test_hypothesis_plugin.py::test_can_construct_models_with_all_fields
95 + # mypy linting causes regressions with new mypy versions
96 + tests/mypy
97 + )
98 + case ${EPYTHON} in
99 + pypy3)
100 + EPYTEST_DESELECT+=(
101 + tests/test_private_attributes.py::test_private_attribute
102 + tests/test_private_attributes.py::test_private_attribute_annotation
103 + tests/test_private_attributes.py::test_private_attribute_factory
104 + tests/test_private_attributes.py::test_private_attribute_multiple_inheritance
105 + tests/test_private_attributes.py::test_underscore_attrs_are_private
106 + )
107 + ;;
108 + esac
109 + rm -rf pydantic || die
110 + epytest
111 +}