dev-python/pydantic: drop 1.10.5, 1.10.7
Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
parent
cdbbd198e5
commit
6373fd20d9
@ -612,11 +612,11 @@ A daily compile test is run at Github with Python 3.9 to catch general faults. E
|
||||
|
||||
## Licenses
|
||||
This repository itself is released under GPL-3 (like most Gentoo repositories), all work on the depending components under the licenses they came from. Perhaps you came here because I filed an issue at your component about a bad or missing license. It is easy to [assign a license](https://docs.github.com/en/communities/setting-up-your-project-for-healthy-contributions/adding-a-license-to-a-repository). During cleanups and license investigations I have been asked often which license to choose. I am not a lawyer, but I can offer the following table, counted over this repository, perhaps this helps your decision. If a package has more than one license listed, all of them are counted.
|
||||
There are 1699 Ebuilds in total, 1688 of them have in total 1702 (40 different) licenses assigned.
|
||||
There are 1697 Ebuilds in total, 1686 of them have in total 1700 (40 different) licenses assigned.
|
||||
|
||||
|License| Ebuilds using it|
|
||||
|-------|-----|
|
||||
|MIT|974|
|
||||
|MIT|972|
|
||||
|Apache-2.0|365|
|
||||
|GPL-3|100|
|
||||
|BSD|99|
|
||||
|
@ -1,7 +1,3 @@
|
||||
DIST pydantic-1.10.12.gh.tar.gz 766366 BLAKE2B b00885b86ef331f3f8531d1514f4e3e1ef10d009b35453c6d5a6295ecfe2d2b842f66c7ea2a79ca1d235d54fa38b42432e14804163f944c4455f05c06869815a SHA512 413d433decfa3bb7173d6f4e6e06f746cfbf95f6d27c6a17098216ba81d64d7f8bb956cda195d0676559f96278f3800c77be53ecf46496ac009f130120642cc2
|
||||
DIST pydantic-1.10.5.gh.tar.gz 900106 BLAKE2B 6ad75bc0e58b2fea8e0e4c2e23e7b8de39779ec6f1acf05b693201f6ef63e2e6765cac2320ecf694086facdc5d38d9213cead7dc267b53bbec97f11e0f6ff67e SHA512 2f25e5ed3016a64af05674a21dd8dccf3af7e075237b0d078433fa347e58482113e243f9c21ddd55677432d22da692cbb24a682c5af2f09bfdb6fb5cbd53d408
|
||||
DIST pydantic-1.10.7.gh.tar.gz 903379 BLAKE2B b2dd75a640ca54024a2bf141117a1d738a30a4630bed8f4d0169fc5a6a55ded719727d88c7e78b9a2acc3aec68482e9be8c8bf4776fef668fe4acc3e1fd775df SHA512 948a7935b374719773df50243aed708b3c6789243b9aa0ba239cf1502ddd0e0cec4d701e108f1cc78090c088f3cb1c78b840c39f5e7ad0e61739776f552f284d
|
||||
EBUILD pydantic-1.10.12.ebuild 2518 BLAKE2B 84f7ee9b095b56518792f81df308652cdc725c6accef3388615bfea735c676f45e449e0c60ec030349b067a8a97833669071f493325c6644c7a73d08d348dcc3 SHA512 7fedbe4158ce80d41e8686ed19618bb818d3efdf8d508a8d4fdef7f8525a3e4e1364a340ba0d710f2b33327a280e33e5df15c0ea2920446dfee3d1b95cc4862f
|
||||
EBUILD pydantic-1.10.5.ebuild 2052 BLAKE2B 010799984264b0fb0bd58cd798e242d28cbfd293287c2b50165bf90417d1fc78292f35f9a11a714530a1806dfaf60da3665a55374fb10e1f5e4eadbec05d8a8f SHA512 eb8e88ea1a02e6703b609008e6578b8246e0518a1029e9929fc544a157a761da7190bdfc3d525a35c84a44b96217a89f8d1699f4e0ad849d2a8eb49923deb38e
|
||||
EBUILD pydantic-1.10.7.ebuild 2052 BLAKE2B 010799984264b0fb0bd58cd798e242d28cbfd293287c2b50165bf90417d1fc78292f35f9a11a714530a1806dfaf60da3665a55374fb10e1f5e4eadbec05d8a8f SHA512 eb8e88ea1a02e6703b609008e6578b8246e0518a1029e9929fc544a157a761da7190bdfc3d525a35c84a44b96217a89f8d1699f4e0ad849d2a8eb49923deb38e
|
||||
MISC metadata.xml 561 BLAKE2B 9cb2851ece8c8bd005a45008efe6d14d990f82832700f641418c15921f368de9bf2b20f9713362f5308a871a10c60a54ddce4e095a4a60209c89bde964c71ef7 SHA512 2f26f32c0d937153966ffbc3b9bb67252043dabfd9ca96b2ba854b111300a0c8bc89a664e439cda3bcc39597c3a29d28b3aa84172ece0f1d818b49cda746ee33
|
||||
|
@ -1,82 +0,0 @@
|
||||
# Copyright 1999-2023 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
DISTUTILS_USE_PEP517=setuptools
|
||||
PYTHON_COMPAT=( python3_{10..12} )
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
MY_P=${P/_beta/b}
|
||||
DESCRIPTION="Data parsing and validation using Python type hints"
|
||||
HOMEPAGE="
|
||||
https://github.com/pydantic/pydantic/
|
||||
https://pypi.org/project/pydantic/
|
||||
"
|
||||
SRC_URI="
|
||||
https://github.com/pydantic/pydantic/archive/v${PV/_beta/b}.tar.gz
|
||||
-> ${MY_P}.gh.tar.gz
|
||||
"
|
||||
S=${WORKDIR}/${MY_P}
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="amd64 arm arm64 x86"
|
||||
IUSE="+native-extensions"
|
||||
|
||||
RDEPEND="
|
||||
>=dev-python/typing-extensions-4.1.0[${PYTHON_USEDEP}]
|
||||
"
|
||||
BDEPEND="
|
||||
native-extensions? (
|
||||
dev-python/cython[${PYTHON_USEDEP}]
|
||||
)
|
||||
test? (
|
||||
dev-python/hypothesis[${PYTHON_USEDEP}]
|
||||
dev-python/pytest-mock[${PYTHON_USEDEP}]
|
||||
dev-python/python-dotenv[${PYTHON_USEDEP}]
|
||||
>=dev-python/python-email-validator-1.2.1[${PYTHON_USEDEP}]
|
||||
)
|
||||
"
|
||||
|
||||
distutils_enable_tests pytest
|
||||
|
||||
src_prepare() {
|
||||
sed -i -e '/CFLAGS/d' setup.py || die
|
||||
distutils-r1_src_prepare
|
||||
}
|
||||
|
||||
python_compile() {
|
||||
if [[ ${EPYTHON} == pypy3 ]] || ! use native-extensions; then
|
||||
# do not build extensions on PyPy to workaround
|
||||
# https://github.com/cython/cython/issues/4763
|
||||
local -x SKIP_CYTHON=1
|
||||
fi
|
||||
distutils-r1_python_compile
|
||||
}
|
||||
|
||||
python_test() {
|
||||
local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
|
||||
local -x PYTEST_PLUGINS=pytest_mock
|
||||
|
||||
local EPYTEST_DESELECT=(
|
||||
# flaky test, known upstream
|
||||
tests/test_hypothesis_plugin.py::test_can_construct_models_with_all_fields
|
||||
# mypy linting causes regressions with new mypy versions
|
||||
tests/mypy
|
||||
)
|
||||
case ${EPYTHON} in
|
||||
pypy3)
|
||||
EPYTEST_DESELECT+=(
|
||||
tests/test_private_attributes.py::test_private_attribute
|
||||
tests/test_private_attributes.py::test_private_attribute_annotation
|
||||
tests/test_private_attributes.py::test_private_attribute_factory
|
||||
tests/test_private_attributes.py::test_private_attribute_multiple_inheritance
|
||||
tests/test_private_attributes.py::test_underscore_attrs_are_private
|
||||
)
|
||||
;;
|
||||
esac
|
||||
rm -rf pydantic || die
|
||||
epytest
|
||||
}
|
@ -1,82 +0,0 @@
|
||||
# Copyright 1999-2023 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
DISTUTILS_USE_PEP517=setuptools
|
||||
PYTHON_COMPAT=( python3_{10..12} )
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
MY_P=${P/_beta/b}
|
||||
DESCRIPTION="Data parsing and validation using Python type hints"
|
||||
HOMEPAGE="
|
||||
https://github.com/pydantic/pydantic/
|
||||
https://pypi.org/project/pydantic/
|
||||
"
|
||||
SRC_URI="
|
||||
https://github.com/pydantic/pydantic/archive/v${PV/_beta/b}.tar.gz
|
||||
-> ${MY_P}.gh.tar.gz
|
||||
"
|
||||
S=${WORKDIR}/${MY_P}
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="amd64 arm arm64 x86"
|
||||
IUSE="+native-extensions"
|
||||
|
||||
RDEPEND="
|
||||
>=dev-python/typing-extensions-4.1.0[${PYTHON_USEDEP}]
|
||||
"
|
||||
BDEPEND="
|
||||
native-extensions? (
|
||||
dev-python/cython[${PYTHON_USEDEP}]
|
||||
)
|
||||
test? (
|
||||
dev-python/hypothesis[${PYTHON_USEDEP}]
|
||||
dev-python/pytest-mock[${PYTHON_USEDEP}]
|
||||
dev-python/python-dotenv[${PYTHON_USEDEP}]
|
||||
>=dev-python/python-email-validator-1.2.1[${PYTHON_USEDEP}]
|
||||
)
|
||||
"
|
||||
|
||||
distutils_enable_tests pytest
|
||||
|
||||
src_prepare() {
|
||||
sed -i -e '/CFLAGS/d' setup.py || die
|
||||
distutils-r1_src_prepare
|
||||
}
|
||||
|
||||
python_compile() {
|
||||
if [[ ${EPYTHON} == pypy3 ]] || ! use native-extensions; then
|
||||
# do not build extensions on PyPy to workaround
|
||||
# https://github.com/cython/cython/issues/4763
|
||||
local -x SKIP_CYTHON=1
|
||||
fi
|
||||
distutils-r1_python_compile
|
||||
}
|
||||
|
||||
python_test() {
|
||||
local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
|
||||
local -x PYTEST_PLUGINS=pytest_mock
|
||||
|
||||
local EPYTEST_DESELECT=(
|
||||
# flaky test, known upstream
|
||||
tests/test_hypothesis_plugin.py::test_can_construct_models_with_all_fields
|
||||
# mypy linting causes regressions with new mypy versions
|
||||
tests/mypy
|
||||
)
|
||||
case ${EPYTHON} in
|
||||
pypy3)
|
||||
EPYTEST_DESELECT+=(
|
||||
tests/test_private_attributes.py::test_private_attribute
|
||||
tests/test_private_attributes.py::test_private_attribute_annotation
|
||||
tests/test_private_attributes.py::test_private_attribute_factory
|
||||
tests/test_private_attributes.py::test_private_attribute_multiple_inheritance
|
||||
tests/test_private_attributes.py::test_underscore_attrs_are_private
|
||||
)
|
||||
;;
|
||||
esac
|
||||
rm -rf pydantic || die
|
||||
epytest
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user