mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2025-07-19 15:29:08 +02:00

Add the missing python3-io RDEPENDS to fix below error: # python3 Python 3.8.2 (default, Apr 27 2020, 08:51:00) [GCC 9.3.0] on linux Type "help", "copyright", "credits" or "license" for more information. >>> import ntplib Traceback (most recent call last): File "<stdin>", line 1, in <module> File "/usr/lib64/python3.8/site-packages/ntplib.py", line 32, in <module> import socket ModuleNotFoundError: No module named 'socket' Signed-off-by: Mingli Yu <mingli.yu@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
15 lines
522 B
BlitzBasic
15 lines
522 B
BlitzBasic
DESCRIPTION = "This module offers a simple interface to query NTP servers from Python."
|
|
SECTION = "devel/python"
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://ntplib.py;beginline=1;endline=23;md5=afa07338a9595257e94c205c3e72224d"
|
|
|
|
SRCNAME = "ntplib"
|
|
SRC_URI[md5sum] = "c7cc8e9b09f40c84819859d70b7784ca"
|
|
SRC_URI[sha256sum] = "c4621b64d50be9461d9bd9a71ba0b4af06fbbf818bbd483752d95c1a4e273ede"
|
|
|
|
S = "${WORKDIR}/${SRCNAME}-${PV}"
|
|
|
|
inherit setuptools3 python3native pypi
|
|
|
|
RDEPENDS_${PN} += "${PYTHON_PN}-datetime ${PYTHON_PN}-io"
|