diff options
author | Clément Péron <peron.clem@gmail.com> | 2025-06-23 21:55:57 +0200 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2025-06-26 07:26:20 -0700 |
commit | 5e04477eff55a8c02dd3cd7f604697ef1490f720 (patch) | |
tree | 5cbef980dd110120ce1e93de2fea849cf6c17366 /meta-python | |
parent | 3ccd1ffae81a1d2af6308c71d18c09ca44af20ec (diff) | |
download | meta-openembedded-5e04477eff55a8c02dd3cd7f604697ef1490f720.tar.gz |
python3-supervisor: Add missing runtime dependencies
Add python3-fcntl and python3-unixadmin to RDEPENDS as these are
required runtime dependencies for supervisor functionality.
Also reorder RDEPENDS alphabetically for better maintainability.
Signed-off-by: Clément Péron <peron.clem@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python')
-rw-r--r-- | meta-python/recipes-devtools/python/python3-supervisor_4.2.5.bb | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/meta-python/recipes-devtools/python/python3-supervisor_4.2.5.bb b/meta-python/recipes-devtools/python/python3-supervisor_4.2.5.bb index e104e1c0ce..ca6203c755 100644 --- a/meta-python/recipes-devtools/python/python3-supervisor_4.2.5.bb +++ b/meta-python/recipes-devtools/python/python3-supervisor_4.2.5.bb | |||
@@ -12,11 +12,13 @@ SRC_URI[sha256sum] = "34761bae1a23c58192281a5115fb07fbf22c9b0133c08166beffc70fed | |||
12 | PYPI_PACKAGE = "supervisor" | 12 | PYPI_PACKAGE = "supervisor" |
13 | inherit pypi systemd setuptools3 | 13 | inherit pypi systemd setuptools3 |
14 | RDEPENDS:${PN} = "\ | 14 | RDEPENDS:${PN} = "\ |
15 | python3-meld3 \ | 15 | python3-fcntl \ |
16 | python3-io \ | 16 | python3-io \ |
17 | python3-xmlrpc \ | 17 | python3-meld3 \ |
18 | python3-resource \ | 18 | python3-resource \ |
19 | python3-setuptools \ | 19 | python3-setuptools \ |
20 | python3-unixadmin \ | ||
21 | python3-xmlrpc \ | ||
20 | " | 22 | " |
21 | 23 | ||
22 | SRC_URI += "file://supervisord.conf \ | 24 | SRC_URI += "file://supervisord.conf \ |