diff options
| author | Tim Orling <ticotimo@gmail.com> | 2023-12-07 15:23:53 -0800 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2023-12-21 08:00:41 -0800 |
| commit | 537a9e24c6d5e2a5a0b177bb572b8a3ce95a485e (patch) | |
| tree | afe462762f24672fd45b7e6c9c8454a59ea43bb4 | |
| parent | 0b1b5efeb521fde8cd684605d21adba9db2e1bc9 (diff) | |
| download | meta-openembedded-537a9e24c6d5e2a5a0b177bb572b8a3ce95a485e.tar.gz | |
python3-pydantic: fix RDEPENDS
* Newer python3-pydantic offloaded some of its code to python3-pydantic-core
* Add python3-annotated-types to RDEPENDS.
* Add DESCRIPTION and trim SUMMARY.
Signed-off-by: Tim Orling <ticotimo@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
| -rw-r--r-- | meta-python/recipes-devtools/python/python3-pydantic_2.5.2.bb | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/meta-python/recipes-devtools/python/python3-pydantic_2.5.2.bb b/meta-python/recipes-devtools/python/python3-pydantic_2.5.2.bb index 3750d49a97..226c58e876 100644 --- a/meta-python/recipes-devtools/python/python3-pydantic_2.5.2.bb +++ b/meta-python/recipes-devtools/python/python3-pydantic_2.5.2.bb | |||
| @@ -1,4 +1,10 @@ | |||
| 1 | SUMMARY = "Data validation and settings management using Python type hinting" | 1 | SUMMARY = "Data validation using Python type hinting" |
| 2 | DESCRIPTION = "Data validation and settings management using Python \ | ||
| 3 | type hints.\ | ||
| 4 | \ | ||
| 5 | Fast and extensible, Pydantic plays nicely with your linters/IDE/brain. \ | ||
| 6 | Define how data should be in pure, canonical Python 3.7+; validate it with \ | ||
| 7 | Pydantic." | ||
| 2 | HOMEPAGE = "https://github.com/samuelcolvin/pydantic" | 8 | HOMEPAGE = "https://github.com/samuelcolvin/pydantic" |
| 3 | LICENSE = "MIT" | 9 | LICENSE = "MIT" |
| 4 | LIC_FILES_CHKSUM = "file://LICENSE;md5=09280955509d1c4ca14bae02f21d49a6" | 10 | LIC_FILES_CHKSUM = "file://LICENSE;md5=09280955509d1c4ca14bae02f21d49a6" |
| @@ -10,6 +16,7 @@ SRC_URI[sha256sum] = "ff177ba64c6faf73d7afa2e8cad38fd456c0dbe01c9954e71038001cd1 | |||
| 10 | DEPENDS += "python3-hatch-fancy-pypi-readme-native" | 16 | DEPENDS += "python3-hatch-fancy-pypi-readme-native" |
| 11 | 17 | ||
| 12 | RDEPENDS:${PN} += "\ | 18 | RDEPENDS:${PN} += "\ |
| 19 | python3-annotated-types \ | ||
| 13 | python3-core \ | 20 | python3-core \ |
| 14 | python3-datetime \ | 21 | python3-datetime \ |
| 15 | python3-image \ | 22 | python3-image \ |
| @@ -19,5 +26,6 @@ RDEPENDS:${PN} += "\ | |||
| 19 | python3-netclient \ | 26 | python3-netclient \ |
| 20 | python3-numbers \ | 27 | python3-numbers \ |
| 21 | python3-profile \ | 28 | python3-profile \ |
| 29 | python3-pydantic-core \ | ||
| 22 | python3-typing-extensions \ | 30 | python3-typing-extensions \ |
| 23 | " | 31 | " |
