test/fixtures/mailing-list-header.eml (3089B) - raw
1 Return-Path: <bounce+67613+84234+3618174+8024896@lists.openembedded.org>
2 Delivered-To: unknown
3 Received: (qmail 702 invoked from network); 7 May 2020 06:15:54 -0000
4 Received: from web01.groups.io (HELO web01.groups.io) (66.175.222.12) by
5 server-33.tower-414.messagelabs.com with ECDHE-RSA-AES256-GCM-SHA384
6 encrypted SMTP; 7 May 2020 06:15:54 -0000
7 From: "Yu, Mingli" <mingli.yu@windriver.com>
8 To: <openembedded-devel@lists.openembedded.org>
9 Subject:
10 [oe] [meta-python][PATCH] python3-ntplib: add missing python3-io RDEPENDS
11 Date: Thu, 7 May 2020 14:15:26 +0800
12 Message-ID: <1588832126-393701-1-git-send-email-mingli.yu@windriver.com>
13 Precedence: Bulk
14 List-Unsubscribe: <https://lists.openembedded.org/g/openembedded-devel/unsub>
15 Sender: <openembedded-devel@lists.openembedded.org>
16 List-Id: <openembedded-devel.lists.openembedded.org>
17 Mailing-List: list openembedded-devel@lists.openembedded.org; contact
18 openembedded-devel+owner@lists.openembedded.org
19 Delivered-To: mailing list openembedded-devel@lists.openembedded.org
20 Reply-To: <openembedded-devel@lists.openembedded.org>
21 Content-Type: multipart/mixed; boundary="YleAvGBsp4tLsYxU5fi4"
22 MIME-Version: 1.0
23
24 --YleAvGBsp4tLsYxU5fi4
25 Content-Type: text/plain; charset="utf-8"
26 Content-Transfer-Encoding: 7bit
27 MIME-Version: 1.0
28
29 From: Mingli Yu <mingli.yu@windriver.com>
30
31 Add the missing python3-io RDEPENDS to fix
32 below error:
33 # python3
34 Python 3.8.2 (default, Apr 27 2020, 08:51:00)
35 [GCC 9.3.0] on linux
36 Type "help", "copyright", "credits" or "license" for more information.
37 >>> import ntplib
38 Traceback (most recent call last):
39 File "<stdin>", line 1, in <module>
40 File "/usr/lib64/python3.8/site-packages/ntplib.py", line 32, in <module>
41 import socket
42 ModuleNotFoundError: No module named 'socket'
43
44 Signed-off-by: Mingli Yu <mingli.yu@windriver.com>
45 ---
46 meta-python/recipes-devtools/python/python3-ntplib_0.3.3.bb | 2 +-
47 1 file changed, 1 insertion(+), 1 deletion(-)
48
49 diff --git a/meta-python/recipes-devtools/python/python3-ntplib_0.3.3.bb b/meta-python/recipes-devtools/python/python3-ntplib_0.3.3.bb
50 index 93df83a..ce2618b 100644
51 --- a/meta-python/recipes-devtools/python/python3-ntplib_0.3.3.bb
52 +++ b/meta-python/recipes-devtools/python/python3-ntplib_0.3.3.bb
53 @@ -11,4 +11,4 @@ S = "${WORKDIR}/${SRCNAME}-${PV}"
54
55 inherit setuptools3 python3native pypi
56
57 -RDEPENDS_${PN} += "${PYTHON_PN}-datetime"
58 +RDEPENDS_${PN} += "${PYTHON_PN}-datetime ${PYTHON_PN}-io"
59 --
60 2.7.4
61
62
63 --YleAvGBsp4tLsYxU5fi4
64 Content-Type: text/plain; charset="utf-8"
65 Content-Transfer-Encoding: quoted-printable
66 Content-Disposition: inline
67
68 -=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-
69 Links: You receive all messages sent to this group.
70
71 View/Reply Online (#84234): https://lists.openembedded.org/g/openembedded-d=
72 evel/message/84234
73 Mute This Topic: https://lists.openembedded.org/mt/74045486/3618174
74 Group Owner: openembedded-devel+owner@lists.openembedded.org
75 Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/leave/8024=
76 896/1667129725/xyzzy [dan.callaghan@opengear.com]
77 -=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-
78
79 --YleAvGBsp4tLsYxU5fi4--
80