diff options
| author | Frieder Schrempf <frieder.schrempf@kontron.de> | 2023-08-10 14:47:30 +0200 |
|---|---|---|
| committer | Armin Kuster <akuster808@gmail.com> | 2023-08-11 10:30:50 -0400 |
| commit | 3e80d586ef0cff70a1db1a839cbd6a7f10f8a724 (patch) | |
| tree | 31ff02a57d92edbcb83317d976cb1debd58bed67 /meta-python/recipes-devtools | |
| parent | 08079dd0c2c5c287f133fcc9d8dd7d20297fd94e (diff) | |
| download | meta-openembedded-3e80d586ef0cff70a1db1a839cbd6a7f10f8a724.tar.gz | |
python3-can: Add missing runtime dependencies
According to the setup.py of v4.0.0 [1] the following runtime
dependencies are currently missing. Add them.
* packaging
* setuptools
* typing_extensions
While at it, also reorder the list alphabetically.
[1] https://github.com/hardbyte/python-can/blob/4.0.0/setup.py
Signed-off-by: Frieder Schrempf <frieder.schrempf@kontron.de>
Signed-off-by: Armin Kuster <akuster808@gmail.com>
Diffstat (limited to 'meta-python/recipes-devtools')
| -rw-r--r-- | meta-python/recipes-devtools/python/python3-can_4.0.0.bb | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/meta-python/recipes-devtools/python/python3-can_4.0.0.bb b/meta-python/recipes-devtools/python/python3-can_4.0.0.bb index 2cd2e624b9..79aa3e19ec 100644 --- a/meta-python/recipes-devtools/python/python3-can_4.0.0.bb +++ b/meta-python/recipes-devtools/python/python3-can_4.0.0.bb | |||
| @@ -11,16 +11,19 @@ inherit pypi setuptools3 | |||
| 11 | 11 | ||
| 12 | RDEPENDS:${PN}:class-target += "\ | 12 | RDEPENDS:${PN}:class-target += "\ |
| 13 | ${PYTHON_PN}-aenum \ | 13 | ${PYTHON_PN}-aenum \ |
| 14 | ${PYTHON_PN}-ctypes \ | ||
| 15 | ${PYTHON_PN}-codecs \ | 14 | ${PYTHON_PN}-codecs \ |
| 16 | ${PYTHON_PN}-compression \ | 15 | ${PYTHON_PN}-compression \ |
| 16 | ${PYTHON_PN}-ctypes \ | ||
| 17 | ${PYTHON_PN}-fcntl \ | 17 | ${PYTHON_PN}-fcntl \ |
| 18 | ${PYTHON_PN}-logging \ | 18 | ${PYTHON_PN}-logging \ |
| 19 | ${PYTHON_PN}-misc \ | 19 | ${PYTHON_PN}-misc \ |
| 20 | ${PYTHON_PN}-netserver \ | 20 | ${PYTHON_PN}-netserver \ |
| 21 | ${PYTHON_PN}-packaging \ | ||
| 22 | ${PYTHON_PN}-pkg-resources \ | ||
| 23 | ${PYTHON_PN}-setuptools \ | ||
| 21 | ${PYTHON_PN}-sqlite3 \ | 24 | ${PYTHON_PN}-sqlite3 \ |
| 25 | ${PYTHON_PN}-typing-extensions \ | ||
| 22 | ${PYTHON_PN}-wrapt \ | 26 | ${PYTHON_PN}-wrapt \ |
| 23 | ${PYTHON_PN}-pkg-resources \ | ||
| 24 | " | 27 | " |
| 25 | 28 | ||
| 26 | BBCLASSEXTEND = "native nativesdk" | 29 | BBCLASSEXTEND = "native nativesdk" |
