mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-04-07 03:10:15 -04:00
dev-python/pydantic-settings: treeclean (moved to ::gentoo)
Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo@sysrq.in>
This commit is contained in:
@@ -1,3 +0,0 @@
|
||||
DIST pydantic_settings-2.12.0.tar.gz 194184 BLAKE2B 57434affa3bd1115113a63c4e785c78aad32e0d8c2140201335a843fae393e189ba1236e4177cc09d6d94faa2775d232d2b76d88600e0d19fb384b9dff4f3c29 SHA512 0a3ab07e0e427573e82b8bffa7db7ef91af41fe60445a3a5ac321cb328e6ebd3a1f78de2575a4d87ee3fbf93852d30d6eaced34a434287b1778678e0b7735a5c
|
||||
DIST pydantic_settings-2.13.1.tar.gz 223826 BLAKE2B 0b58da3891e6ba63f7be5a18340293ea1d0fe0e112f880e992e1dab90018adb32b9334b2d8ce8f861be6780bf4657b3c7352fc822c9e8ae97766d8cde08ed455 SHA512 bf800b27afd3cfdd14e3cbc65573274f6bcdfd261f3398097c73473ca49abe3f8f53fbaf01acbac844dc9a86b3c44f27e0d0ec6e6f207cec2c9f2cd22debb986
|
||||
DIST pydantic_settings-2.13.1.tar.gz.provenance 9329 BLAKE2B 26ace0f7f5ff172f0cab598a91223e2fef4240424ecae97ad02e184bf53aa72b90da6e89e0ed2381335d59f13750758c0bdff90f6e09f1229ef76c97d330ac8a SHA512 9983cff4dbc7e65824713db8823aa8945adca233415c27d0a2604007060b049aab0ffd588d0cdd56e1fa89ce1284d451e5b62064d6187c72f18583f58cbadd28
|
||||
@@ -1,30 +0,0 @@
|
||||
<?xml version='1.0' encoding='UTF-8'?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<maintainer type="person">
|
||||
<email>cyber+gentoo@sysrq.in</email>
|
||||
<name>Anna</name>
|
||||
</maintainer>
|
||||
<use>
|
||||
<flag name="aws">Enable Amazon AWS Secrets Manager support</flag>
|
||||
<flag name="yaml">Enable YAML support</flag>
|
||||
</use>
|
||||
<stabilize-allarches/>
|
||||
<upstream>
|
||||
<remote-id type="pypi">pydantic-settings</remote-id>
|
||||
<remote-id type="github">pydantic/pydantic-settings</remote-id>
|
||||
<doc>https://docs.pydantic.dev/dev/concepts/pydantic_settings/</doc>
|
||||
<maintainer>
|
||||
<name>Samuel Colvin</name>
|
||||
<email>s@muelcolvin.com</email>
|
||||
</maintainer>
|
||||
<maintainer>
|
||||
<name>Eric Jolibois</name>
|
||||
<email>em.jolibois@gmail.com</email>
|
||||
</maintainer>
|
||||
<maintainer>
|
||||
<name>Hasan Ramezani</name>
|
||||
<email>hasan.r67@gmail.com</email>
|
||||
</maintainer>
|
||||
</upstream>
|
||||
</pkgmetadata>
|
||||
@@ -1,47 +0,0 @@
|
||||
# Copyright 2024-2026 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
DISTUTILS_USE_PEP517=hatchling
|
||||
PYTHON_COMPAT=( python3_{12..13} )
|
||||
|
||||
inherit distutils-r1 pypi
|
||||
|
||||
DESCRIPTION="Settings management using Pydantic"
|
||||
HOMEPAGE="
|
||||
https://pypi.org/project/pydantic-settings/
|
||||
https://github.com/pydantic/pydantic-settings
|
||||
"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
IUSE="aws yaml"
|
||||
|
||||
RDEPEND="
|
||||
>=dev-python/pydantic-2.7.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/python-dotenv-0.21.0[${PYTHON_USEDEP}]
|
||||
dev-python/typing-extensions[${PYTHON_USEDEP}]
|
||||
>=dev-python/typing-inspection-0.4.0[${PYTHON_USEDEP}]
|
||||
aws? ( dev-python/boto3[${PYTHON_USEDEP}] )
|
||||
yaml? ( dev-python/pyyaml[${PYTHON_USEDEP}] )
|
||||
"
|
||||
BDEPEND="
|
||||
test? (
|
||||
dev-python/annotated-types[${PYTHON_USEDEP}]
|
||||
dev-python/boto3[${PYTHON_USEDEP}]
|
||||
dev-python/moto[${PYTHON_USEDEP}]
|
||||
)
|
||||
"
|
||||
|
||||
EPYTEST_PLUGINS=( pytest-mock )
|
||||
EPYTEST_IGNORE=(
|
||||
# Dependencies not packaged: pytest-examples
|
||||
tests/test_docs.py
|
||||
)
|
||||
EPYTEST_DESELECT=(
|
||||
tests/test_precedence_and_merging.py::test_merging_preserves_earlier_values
|
||||
)
|
||||
|
||||
distutils_enable_tests pytest
|
||||
@@ -1,55 +0,0 @@
|
||||
# Copyright 2024-2026 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
DISTUTILS_USE_PEP517=hatchling
|
||||
PYTHON_COMPAT=( python3_{12..13} )
|
||||
PYPI_VERIFY_REPO="https://github.com/pydantic/pydantic-settings"
|
||||
|
||||
inherit distutils-r1 pypi
|
||||
|
||||
DESCRIPTION="Settings management using Pydantic"
|
||||
HOMEPAGE="
|
||||
https://pypi.org/project/pydantic-settings/
|
||||
https://github.com/pydantic/pydantic-settings
|
||||
"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
IUSE="aws yaml"
|
||||
|
||||
RDEPEND="
|
||||
>=dev-python/pydantic-2.7.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/python-dotenv-0.21.0[${PYTHON_USEDEP}]
|
||||
dev-python/typing-extensions[${PYTHON_USEDEP}]
|
||||
>=dev-python/typing-inspection-0.4.0[${PYTHON_USEDEP}]
|
||||
aws? ( dev-python/boto3[${PYTHON_USEDEP}] )
|
||||
yaml? ( dev-python/pyyaml[${PYTHON_USEDEP}] )
|
||||
"
|
||||
BDEPEND="
|
||||
test? (
|
||||
dev-python/annotated-types[${PYTHON_USEDEP}]
|
||||
dev-python/boto3[${PYTHON_USEDEP}]
|
||||
dev-python/moto[${PYTHON_USEDEP}]
|
||||
)
|
||||
"
|
||||
|
||||
EPYTEST_PLUGINS=( pytest-mock )
|
||||
EPYTEST_IGNORE=(
|
||||
# Dependencies not packaged: pytest-examples
|
||||
tests/test_docs.py
|
||||
)
|
||||
EPYTEST_DESELECT=(
|
||||
tests/test_precedence_and_merging.py::test_merging_preserves_earlier_values
|
||||
)
|
||||
|
||||
distutils_enable_tests pytest
|
||||
|
||||
src_test() {
|
||||
local A
|
||||
unset A
|
||||
|
||||
distutils-r1_src_test
|
||||
}
|
||||
Reference in New Issue
Block a user