All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] python3: add tcl rdepends for python3-idle
@ 2020-06-05  8:47 Yu, Mingli
  2020-06-05  9:01 ` ✗ patchtest: failure for " Patchwork
  2020-06-06 22:16 ` [OE-core] [PATCH] " Richard Purdie
  0 siblings, 2 replies; 4+ messages in thread
From: Yu, Mingli @ 2020-06-05  8:47 UTC (permalink / raw)
  To: openembedded-core

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

Add tcl rdepends for python3-idle to fix
below error:
 # /usr/bin/idle3 -h
 [snip]
 _tkinter.TclError: Can't find a usable init.tcl
 [snip]

Signed-off-by: Mingli Yu <mingli.yu@windriver.com>
---
 meta/recipes-devtools/python/python3_3.8.2.bb | 1 +
 1 file changed, 1 insertion(+)

diff --git a/meta/recipes-devtools/python/python3_3.8.2.bb b/meta/recipes-devtools/python/python3_3.8.2.bb
index 0474f07214..0ddf88699c 100644
--- a/meta/recipes-devtools/python/python3_3.8.2.bb
+++ b/meta/recipes-devtools/python/python3_3.8.2.bb
@@ -346,6 +346,7 @@ RDEPENDS_libpython3_append_libc-glibc = " libgcc"
 RDEPENDS_${PN}-ptest = "${PN}-modules ${PN}-tests unzip bzip2 libgcc tzdata-europe coreutils sed"
 RDEPENDS_${PN}-ptest_append_libc-glibc = " locale-base-tr-tr.iso-8859-9"
 RDEPENDS_${PN}-tkinter += "${@bb.utils.contains('PACKAGECONFIG', 'tk', 'tk tk-lib', '', d)}"
+RDEPENDS_${PN}-idle += "tcl"
 RDEPENDS_${PN}-dev = ""
 
 RDEPENDS_${PN}-tests_append_class-target = " ${MLPREFIX}bash"
-- 
2.24.1


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

* ✗ patchtest: failure for python3: add tcl rdepends for python3-idle
  2020-06-05  8:47 [PATCH] python3: add tcl rdepends for python3-idle Yu, Mingli
@ 2020-06-05  9:01 ` Patchwork
  2020-06-06 22:16 ` [OE-core] [PATCH] " Richard Purdie
  1 sibling, 0 replies; 4+ messages in thread
From: Patchwork @ 2020-06-05  9:01 UTC (permalink / raw)
  To: mingli.yu; +Cc: openembedded-core

== Series Details ==

Series: python3: add tcl rdepends for python3-idle
Revision: 1
URL   : https://patchwork.openembedded.org/series/24497/
State : failure

== Summary ==


Thank you for submitting this patch series to OpenEmbedded Core. This is
an automated response. Several tests have been executed on the proposed
series by patchtest resulting in the following failures:



* Issue             Series does not apply on top of target branch [test_series_merge_on_head] 
  Suggested fix    Rebase your series on top of targeted branch
  Targeted branch  master (currently at 56e211d0f3)



If you believe any of these test results are incorrect, please reply to the
mailing list (openembedded-core@lists.openembedded.org) raising your concerns.
Otherwise we would appreciate you correcting the issues and submitting a new
version of the patchset if applicable. Please ensure you add/increment the
version number when sending the new version (i.e. [PATCH] -> [PATCH v2] ->
[PATCH v3] -> ...).

---
Guidelines:     https://www.openembedded.org/wiki/Commit_Patch_Message_Guidelines
Test framework: http://git.yoctoproject.org/cgit/cgit.cgi/patchtest
Test suite:     http://git.yoctoproject.org/cgit/cgit.cgi/patchtest-oe


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

* Re: [OE-core] [PATCH] python3: add tcl rdepends for python3-idle
  2020-06-05  8:47 [PATCH] python3: add tcl rdepends for python3-idle Yu, Mingli
  2020-06-05  9:01 ` ✗ patchtest: failure for " Patchwork
@ 2020-06-06 22:16 ` Richard Purdie
  2020-06-11  5:48   ` Yu, Mingli
  1 sibling, 1 reply; 4+ messages in thread
From: Richard Purdie @ 2020-06-06 22:16 UTC (permalink / raw)
  To: Yu, Mingli, openembedded-core

On Fri, 2020-06-05 at 16:47 +0800, Yu, Mingli wrote:
> From: Mingli Yu <mingli.yu@windriver.com>
> 
> Add tcl rdepends for python3-idle to fix
> below error:
>  # /usr/bin/idle3 -h
>  [snip]
>  _tkinter.TclError: Can't find a usable init.tcl
>  [snip]
> 
> Signed-off-by: Mingli Yu <mingli.yu@windriver.com>
> ---
>  meta/recipes-devtools/python/python3_3.8.2.bb | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/meta/recipes-devtools/python/python3_3.8.2.bb b/meta/recipes-devtools/python/python3_3.8.2.bb
> index 0474f07214..0ddf88699c 100644
> --- a/meta/recipes-devtools/python/python3_3.8.2.bb
> +++ b/meta/recipes-devtools/python/python3_3.8.2.bb
> @@ -346,6 +346,7 @@ RDEPENDS_libpython3_append_libc-glibc = " libgcc"
>  RDEPENDS_${PN}-ptest = "${PN}-modules ${PN}-tests unzip bzip2 libgcc tzdata-europe coreutils sed"
>  RDEPENDS_${PN}-ptest_append_libc-glibc = " locale-base-tr-tr.iso-8859-9"
>  RDEPENDS_${PN}-tkinter += "${@bb.utils.contains('PACKAGECONFIG', 'tk', 'tk tk-lib', '', d)}"
> +RDEPENDS_${PN}-idle += "tcl"

Shouldn't this be using the tk packageconfig too? or depending on
${PN}-tkinter?

Cheers,

Richard


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

* Re: [OE-core] [PATCH] python3: add tcl rdepends for python3-idle
  2020-06-06 22:16 ` [OE-core] [PATCH] " Richard Purdie
@ 2020-06-11  5:48   ` Yu, Mingli
  0 siblings, 0 replies; 4+ messages in thread
From: Yu, Mingli @ 2020-06-11  5:48 UTC (permalink / raw)
  To: Richard Purdie, openembedded-core

Hi RP,

On 6/7/20 6:16 AM, Richard Purdie wrote:
> On Fri, 2020-06-05 at 16:47 +0800, Yu, Mingli wrote:
>> From: Mingli Yu <mingli.yu@windriver.com>
>>
>> Add tcl rdepends for python3-idle to fix
>> below error:
>>   # /usr/bin/idle3 -h
>>   [snip]
>>   _tkinter.TclError: Can't find a usable init.tcl
>>   [snip]
>>
>> Signed-off-by: Mingli Yu <mingli.yu@windriver.com>
>> ---
>>   meta/recipes-devtools/python/python3_3.8.2.bb | 1 +
>>   1 file changed, 1 insertion(+)
>>
>> diff --git a/meta/recipes-devtools/python/python3_3.8.2.bb b/meta/recipes-devtools/python/python3_3.8.2.bb
>> index 0474f07214..0ddf88699c 100644
>> --- a/meta/recipes-devtools/python/python3_3.8.2.bb
>> +++ b/meta/recipes-devtools/python/python3_3.8.2.bb
>> @@ -346,6 +346,7 @@ RDEPENDS_libpython3_append_libc-glibc = " libgcc"
>>   RDEPENDS_${PN}-ptest = "${PN}-modules ${PN}-tests unzip bzip2 libgcc tzdata-europe coreutils sed"
>>   RDEPENDS_${PN}-ptest_append_libc-glibc = " locale-base-tr-tr.iso-8859-9"
>>   RDEPENDS_${PN}-tkinter += "${@bb.utils.contains('PACKAGECONFIG', 'tk', 'tk tk-lib', '', d)}"
>> +RDEPENDS_${PN}-idle += "tcl"
> 
> Shouldn't this be using the tk packageconfig too? or depending on

Will use tk packageconfig in v2, apart from rdepends on ${PN}-tkinter, 
it also rdepends on tcl.

Thanks,

> ${PN}-tkinter?
> 
> Cheers,
> 
> Richard
> 

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

end of thread, other threads:[~2020-06-11  5:49 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-06-05  8:47 [PATCH] python3: add tcl rdepends for python3-idle Yu, Mingli
2020-06-05  9:01 ` ✗ patchtest: failure for " Patchwork
2020-06-06 22:16 ` [OE-core] [PATCH] " Richard Purdie
2020-06-11  5:48   ` Yu, Mingli

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.