Openembedded Core Discussions
 help / color / mirror / Atom feed
* [PATCH 1/2] python2-manifest.json: add logging to rdepends
@ 2019-01-17  2:26 mingli.yu
  2019-01-17  2:26 ` [PATCH 2/2] python3-manifest.json: " mingli.yu
  2019-01-23  2:46 ` [PATCH 1/2] python2-manifest.json: " Yu, Mingli
  0 siblings, 2 replies; 3+ messages in thread
From: mingli.yu @ 2019-01-17  2:26 UTC (permalink / raw)
  To: openembedded-core, richard.purdie

From: Mingli Yu <mingli.yu@windriver.com>

Add loggging to rdepends for python-2to3
and python-multiprocessing.

before patch:
 # python
 Python 2.7.15 (default, Jan 15 2019, 03:09:01)
 [GCC 8.2.0] on linux2
 Type "help", "copyright", "credits" or "license" for more information.
 >>> from multiprocessing import util
 >>> util.get_logger()
 Traceback (most recent call last):
   File "<stdin>", line 1, in <module>
   File "/usr/lib/python2.7/multiprocessing/util.py", line 89, in get_logger
     import logging, atexit
 ImportError: No module named logging
 >>>

After patch:
 # python
 Python 2.7.15 (default, Jan 15 2019, 09:05:49)
 [GCC 8.2.0] on linux2
 Type "help", "copyright", "credits" or "license" for more information.
 >>> from multiprocessing import util
 >>> util.get_logger()
 <logging.Logger object at 0xb78cf86c>
 >>>

 Steps to reproduce:
 1, add below line to local.conf
 IMAGE_INSTALL_append += " python-multiprocessing"
 2, bitbake core-image-base
 3, runqemu qemux86 slirp nographic core-image-base

Signed-off-by: Mingli Yu <mingli.yu@windriver.com>
---
 meta/recipes-devtools/python/python/python2-manifest.json | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/meta/recipes-devtools/python/python/python2-manifest.json b/meta/recipes-devtools/python/python/python2-manifest.json
index 4fff54a95bf..abaa10dbd2e 100644
--- a/meta/recipes-devtools/python/python/python2-manifest.json
+++ b/meta/recipes-devtools/python/python/python2-manifest.json
@@ -106,7 +106,8 @@
     "2to3": {
         "summary": "Python automated Python 2 to 3 code translator", 
         "rdepends": [
-            "core"
+            "core",
+            "logging"
         ], 
         "files": [
             "${bindir}/2to3", 
@@ -728,6 +729,7 @@
             "core", 
             "fcntl", 
             "io", 
+            "logging",
             "pickle", 
             "subprocess", 
             "threading"
-- 
2.17.1



^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [PATCH 2/2] python3-manifest.json: add logging to rdepends
  2019-01-17  2:26 [PATCH 1/2] python2-manifest.json: add logging to rdepends mingli.yu
@ 2019-01-17  2:26 ` mingli.yu
  2019-01-23  2:46 ` [PATCH 1/2] python2-manifest.json: " Yu, Mingli
  1 sibling, 0 replies; 3+ messages in thread
From: mingli.yu @ 2019-01-17  2:26 UTC (permalink / raw)
  To: openembedded-core, richard.purdie

From: Mingli Yu <mingli.yu@windriver.com>

Add loggging to rdepends for python3-2to3
and python3-multiprocessing.

before patch:
 # python3
 Python 3.5.6 (default, Jan 15 2019, 03:09:16)
 [GCC 8.2.0] on linux
 Type "help", "copyright", "credits" or "license" for more information.
 >>> from multiprocessing import util
 >>> util.get_logger()
 Traceback (most recent call last):
   File "<stdin>", line 1, in <module>
   File "/usr/lib/python3.5/multiprocessing/util.py", line 65, in get_logger
     import logging
 ImportError: No module named 'logging'
 >>>

after patch:
 # python3
 Python 3.5.6 (default, Jan 15 2019, 09:26:38)
 [GCC 8.2.0] on linux
 Type "help", "copyright", "credits" or "license" for more information.
 >>> from multiprocessing import util
 >>> util.get_logger()
 <logging.Logger object at 0xb792d94c>
 >>>

 Steps to reproduce:
 1, add below line to local.conf
 IMAGE_INSTALL_append += " python3-multiprocessing"
 2, bitbake core-image-base
 3, runqemu qemux86 slirp nographic core-image-base

Signed-off-by: Mingli Yu <mingli.yu@windriver.com>
---
 meta/recipes-devtools/python/python3/python3-manifest.json | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/meta/recipes-devtools/python/python3/python3-manifest.json b/meta/recipes-devtools/python/python3/python3-manifest.json
index 3641d5bd7b1..174eac63d0c 100644
--- a/meta/recipes-devtools/python/python3/python3-manifest.json
+++ b/meta/recipes-devtools/python/python3/python3-manifest.json
@@ -106,7 +106,8 @@
     "2to3": {
         "summary": "Python automated Python 2 to 3 code translator",
         "rdepends": [
-            "core"
+            "core",
+            "logging"
         ],
         "files": [
             "${bindir}/2to3-*",
@@ -820,7 +821,8 @@
     "multiprocessing": {
         "summary": "Python multiprocessing support",
         "rdepends": [
-            "core"
+            "core",
+            "logging"
         ],
         "files": [
             "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_multiprocessing.*.so",
-- 
2.17.1



^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH 1/2] python2-manifest.json: add logging to rdepends
  2019-01-17  2:26 [PATCH 1/2] python2-manifest.json: add logging to rdepends mingli.yu
  2019-01-17  2:26 ` [PATCH 2/2] python3-manifest.json: " mingli.yu
@ 2019-01-23  2:46 ` Yu, Mingli
  1 sibling, 0 replies; 3+ messages in thread
From: Yu, Mingli @ 2019-01-23  2:46 UTC (permalink / raw)
  To: openembedded-core, richard.purdie

Ping.

On 2019年01月17日 10:26, mingli.yu@windriver.com wrote:
> From: Mingli Yu <mingli.yu@windriver.com>
>
> Add loggging to rdepends for python-2to3
> and python-multiprocessing.
>
> before patch:
>   # python
>   Python 2.7.15 (default, Jan 15 2019, 03:09:01)
>   [GCC 8.2.0] on linux2
>   Type "help", "copyright", "credits" or "license" for more information.
>   >>> from multiprocessing import util
>   >>> util.get_logger()
>   Traceback (most recent call last):
>     File "<stdin>", line 1, in <module>
>     File "/usr/lib/python2.7/multiprocessing/util.py", line 89, in get_logger
>       import logging, atexit
>   ImportError: No module named logging
>   >>>
>
> After patch:
>   # python
>   Python 2.7.15 (default, Jan 15 2019, 09:05:49)
>   [GCC 8.2.0] on linux2
>   Type "help", "copyright", "credits" or "license" for more information.
>   >>> from multiprocessing import util
>   >>> util.get_logger()
>   <logging.Logger object at 0xb78cf86c>
>   >>>
>
>   Steps to reproduce:
>   1, add below line to local.conf
>   IMAGE_INSTALL_append += " python-multiprocessing"
>   2, bitbake core-image-base
>   3, runqemu qemux86 slirp nographic core-image-base
>
> Signed-off-by: Mingli Yu <mingli.yu@windriver.com>
> ---
>   meta/recipes-devtools/python/python/python2-manifest.json | 4 +++-
>   1 file changed, 3 insertions(+), 1 deletion(-)
>
> diff --git a/meta/recipes-devtools/python/python/python2-manifest.json b/meta/recipes-devtools/python/python/python2-manifest.json
> index 4fff54a95bf..abaa10dbd2e 100644
> --- a/meta/recipes-devtools/python/python/python2-manifest.json
> +++ b/meta/recipes-devtools/python/python/python2-manifest.json
> @@ -106,7 +106,8 @@
>       "2to3": {
>           "summary": "Python automated Python 2 to 3 code translator",
>           "rdepends": [
> -            "core"
> +            "core",
> +            "logging"
>           ],
>           "files": [
>               "${bindir}/2to3",
> @@ -728,6 +729,7 @@
>               "core",
>               "fcntl",
>               "io",
> +            "logging",
>               "pickle",
>               "subprocess",
>               "threading"
>


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2019-01-23  2:45 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-01-17  2:26 [PATCH 1/2] python2-manifest.json: add logging to rdepends mingli.yu
2019-01-17  2:26 ` [PATCH 2/2] python3-manifest.json: " mingli.yu
2019-01-23  2:46 ` [PATCH 1/2] python2-manifest.json: " Yu, Mingli

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox