diff mbox series

[meta-python] python3-uvicorn: add Uvicorn (0.34.2)

Message ID 20250423143540.453271-1-fleuryhugo7@gmail.com
State Under Review
Headers show
Series [meta-python] python3-uvicorn: add Uvicorn (0.34.2) | expand

Commit Message

Hugo April 23, 2025, 2:35 p.m. UTC
This patch introduces version 0.34.2 of Uvicorn to the OpenEmbedded build system.

The addition includes the necessary recipe to build Uvicorn from PyPI.

Signed-off-by: Hugo FLEURY <fleuryhugo7@gmail.com>
---
 .../python/python3-uvicorn_0.34.2.bb          | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)
 create mode 100644 meta-python/recipes-devtools/python/python3-uvicorn_0.34.2.bb

Comments

Khem Raj April 23, 2025, 3:54 p.m. UTC | #1
On 4/23/25 7:35 AM, Hugo via lists.openembedded.org wrote:
> This patch introduces version 0.34.2 of Uvicorn to the OpenEmbedded build system.
> 
> The addition includes the necessary recipe to build Uvicorn from PyPI.
> 
> Signed-off-by: Hugo FLEURY <fleuryhugo7@gmail.com>
> ---
>   .../python/python3-uvicorn_0.34.2.bb          | 19 +++++++++++++++++++
>   1 file changed, 19 insertions(+)
>   create mode 100644 meta-python/recipes-devtools/python/python3-uvicorn_0.34.2.bb
> 
> diff --git a/meta-python/recipes-devtools/python/python3-uvicorn_0.34.2.bb b/meta-python/recipes-devtools/python/python3-uvicorn_0.34.2.bb
> new file mode 100644
> index 0000000000..2b3c362463
> --- /dev/null
> +++ b/meta-python/recipes-devtools/python/python3-uvicorn_0.34.2.bb
> @@ -0,0 +1,19 @@
> +SUMMARY = "Lightning-fast ASGI server implementation."
> +HOMEPAGE = "https://www.uvicorn.org/"
> +LICENSE = "BSD-3-Clause"
> +LIC_FILES_CHKSUM = "file://LICENSE.md;md5=5c778842f66a649636561c423c0eec2e"
> +
> +SRC_URI[sha256sum] = "0e929828f6186353a80b58ea719861d2629d766293b6d19baf086ba31d4f3328"
> +
> +inherit pypi python_hatchling python_setuptools_build_meta
> +
> +PYPI_PACKAGE = "uvicorn"
> +
> +RDEPENDS:${PN} += " \
> +    ${PYTHON_PN}-typing-extensions \
> +    ${PYTHON_PN}-click \
> +    ${PYTHON_PN}-h11 \
> +    ${PYTHON_PN}-anyio \
> +"

PYTHON_PN is deprecated these days, just use python3- here
secondly, does it have tests ?  if so I would prefer to have them 
enabled via ptest

> +
> +S = "${WORKDIR}/uvicorn-${PV}"
> 
> 
> 
> -=-=-=-=-=-=-=-=-=-=-=-
> Links: You receive all messages sent to this group.
> View/Reply Online (#117079): https://lists.openembedded.org/g/openembedded-devel/message/117079
> Mute This Topic: https://lists.openembedded.org/mt/112415213/1997914
> Group Owner: openembedded-devel+owner@lists.openembedded.org
> Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub [raj.khem@gmail.com]
> -=-=-=-=-=-=-=-=-=-=-=-
>
Hugo April 25, 2025, 3:18 p.m. UTC | #2
Added required tests, and fixed the issue related to ${PYTHON_PN} for Uvicorn.

Signed-off-by: Hugo FLEURY <fleuryhugo7@gmail.com>
---
.../python/python3-uvicorn/run-ptest          |  6 +++
.../python/python3-uvicorn_0.34.2.bb          | 37 +++++++++++++++++++
2 files changed, 43 insertions(+)
create mode 100644 meta-python/recipes-devtools/python/python3-uvicorn/run-ptest
create mode 100644 meta-python/recipes-devtools/python/python3-uvicorn_0.34.2.bb
diff --git a/meta-python/recipes-devtools/python/python3-uvicorn/run-ptest b/meta-python/recipes-devtools/python/python3-uvicorn/run-ptest
new file mode 100644
index 0000000000..d75b4cd4c9
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-uvicorn/run-ptest
@@ -0,0 +1,6 @@
+#!/bin/sh
+
+# based on the gunicorn ptest
+echo "nameserver 8.8.8.8" >> /etc/resolv.conf
+
+pytest
diff --git a/meta-python/recipes-devtools/python/python3-uvicorn_0.34.2.bb b/meta-python/recipes-devtools/python/python3-uvicorn_0.34.2.bb
new file mode 100644
index 0000000000..cd2691a5ee
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-uvicorn_0.34.2.bb
@@ -0,0 +1,37 @@
+SUMMARY = "Lightning-fast ASGI server implementation."
+HOMEPAGE = "https://www.uvicorn.org/"
+LICENSE = "BSD-3-Clause"
+LIC_FILES_CHKSUM = "file://LICENSE.md;md5=5c778842f66a649636561c423c0eec2e"
+
+SRC_URI[sha256sum] = "0e929828f6186353a80b58ea719861d2629d766293b6d19baf086ba31d4f3328"
+
+inherit pypi python_hatchling python_setuptools_build_meta ptest
+
+SRC_URI += "file://run-ptest"
+
+RDEPENDS:${PN}-ptest += " \
+    python3-pytest \
+    python3-httptools \
+    python3-dotenv \
+    python3-httpx \
+    python3-pyyaml \
+    python3-websockets \
+    python3-a2wsgi \
+    python3-pytest-mock \
+"
+
+do_install_ptest() {
+        install -d ${D}${PTEST_PATH}/tests
+        cp -rf ${S}/tests/* ${D}${PTEST_PATH}/tests/
+}
+
+PYPI_PACKAGE = "uvicorn"
+
+RDEPENDS:${PN} += " \
+    python3-typing-extensions \
+    python3-click \
+    python3-h11 \
+    python3-anyio \
+"
+
+S = "${WORKDIR}/uvicorn-${PV}"
--
2.43.0
diff mbox series

Patch

diff --git a/meta-python/recipes-devtools/python/python3-uvicorn_0.34.2.bb b/meta-python/recipes-devtools/python/python3-uvicorn_0.34.2.bb
new file mode 100644
index 0000000000..2b3c362463
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-uvicorn_0.34.2.bb
@@ -0,0 +1,19 @@ 
+SUMMARY = "Lightning-fast ASGI server implementation."
+HOMEPAGE = "https://www.uvicorn.org/"
+LICENSE = "BSD-3-Clause"
+LIC_FILES_CHKSUM = "file://LICENSE.md;md5=5c778842f66a649636561c423c0eec2e"
+
+SRC_URI[sha256sum] = "0e929828f6186353a80b58ea719861d2629d766293b6d19baf086ba31d4f3328"
+
+inherit pypi python_hatchling python_setuptools_build_meta
+
+PYPI_PACKAGE = "uvicorn"
+
+RDEPENDS:${PN} += " \
+    ${PYTHON_PN}-typing-extensions \
+    ${PYTHON_PN}-click \
+    ${PYTHON_PN}-h11 \
+    ${PYTHON_PN}-anyio \
+"
+
+S = "${WORKDIR}/uvicorn-${PV}"