summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta-oe/recipes-support/fuse/fuse3_3.17.4.bb3
-rw-r--r--meta-python/recipes-devtools/python/python3-fastapi_0.122.0.bb19
2 files changed, 19 insertions, 3 deletions
diff --git a/meta-oe/recipes-support/fuse/fuse3_3.17.4.bb b/meta-oe/recipes-support/fuse/fuse3_3.17.4.bb
index 85991ff7be..fcd09059ab 100644
--- a/meta-oe/recipes-support/fuse/fuse3_3.17.4.bb
+++ b/meta-oe/recipes-support/fuse/fuse3_3.17.4.bb
@@ -25,6 +25,9 @@ CVE_PRODUCT = "fuse_project:fuse"
25 25
26inherit meson pkgconfig ptest 26inherit meson pkgconfig ptest
27 27
28# fix riscv32-yoe-linux-musl-ld.lld: error: undefined symbol: __atomic_fetch_add_8
29LDFLAGS:append:toolchain-clang:riscv32 = " -latomic"
30
28SRC_URI += " \ 31SRC_URI += " \
29 file://run-ptest \ 32 file://run-ptest \
30 file://fuse3.conf \ 33 file://fuse3.conf \
diff --git a/meta-python/recipes-devtools/python/python3-fastapi_0.122.0.bb b/meta-python/recipes-devtools/python/python3-fastapi_0.122.0.bb
index 37a475ef8f..7dc5d833bc 100644
--- a/meta-python/recipes-devtools/python/python3-fastapi_0.122.0.bb
+++ b/meta-python/recipes-devtools/python/python3-fastapi_0.122.0.bb
@@ -9,6 +9,12 @@ SRC_URI += "file://run-ptest"
9 9
10inherit pypi python_pdm ptest-python-pytest 10inherit pypi python_pdm ptest-python-pytest
11 11
12PACKAGECONFIG ?= ""
13# swagger-ui is in meta-webserver that meta-python does not depend upon
14# Users can still enable it in their distros explicitly but its disabled
15# by default
16PACKAGECONFIG[swagger-ui] = ",,,swagger-ui"
17
12RDEPENDS:${PN} += "\ 18RDEPENDS:${PN} += "\
13 python3-annotated-doc \ 19 python3-annotated-doc \
14 python3-fastapi-cli \ 20 python3-fastapi-cli \
@@ -18,6 +24,13 @@ RDEPENDS:${PN} += "\
18 python3-typing-extensions \ 24 python3-typing-extensions \
19" 25"
20 26
21RRECOMMENDS:${PN} += "swagger-ui" 27RDEPENDS:${PN}-ptest += "\
22 28 python3-coverage \
23RDEPENDS:${PN}-ptest += "python3-orjson" 29 python3-httpx \
30 python3-orjson \
31 python3-dirty-equals \
32 python3-pytest-httpx \
33 python3-python-multipart \
34 python3-sqlalchemy \
35 python3-trio \
36"