* [PATCH] python: Add tk to DEPENDS
@ 2012-03-23 23:14 Andrei Gherzan
2012-03-23 23:33 ` Andreas Oberritter
0 siblings, 1 reply; 3+ messages in thread
From: Andrei Gherzan @ 2012-03-23 23:14 UTC (permalink / raw)
To: openembedded-core
This is needed for _tkinter python module.
[YOCTO #1937]
Signed-off-by: Andrei Gherzan <andrei@gherzan.ro>
---
meta/recipes-devtools/python/python_2.7.2.bb | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/meta/recipes-devtools/python/python_2.7.2.bb b/meta/recipes-devtools/python/python_2.7.2.bb
index cb0a1d5..6969929 100644
--- a/meta/recipes-devtools/python/python_2.7.2.bb
+++ b/meta/recipes-devtools/python/python_2.7.2.bb
@@ -1,5 +1,5 @@
require python.inc
-DEPENDS = "python-native bzip2 db gdbm openssl readline sqlite3 zlib"
+DEPENDS = "python-native bzip2 db gdbm openssl readline sqlite3 zlib tk"
DEPENDS_sharprom = "python-native db readline zlib gdbm openssl"
PR = "${INC_PR}.8"
--
1.7.5.4
^ permalink raw reply related [flat|nested] 3+ messages in thread* Re: [PATCH] python: Add tk to DEPENDS
2012-03-23 23:14 [PATCH] python: Add tk to DEPENDS Andrei Gherzan
@ 2012-03-23 23:33 ` Andreas Oberritter
2012-03-23 23:39 ` Andreas Oberritter
0 siblings, 1 reply; 3+ messages in thread
From: Andreas Oberritter @ 2012-03-23 23:33 UTC (permalink / raw)
To: openembedded-core
On 24.03.2012 00:14, Andrei Gherzan wrote:
> This is needed for _tkinter python module.
>
> [YOCTO #1937]
>
> Signed-off-by: Andrei Gherzan <andrei@gherzan.ro>
> ---
> meta/recipes-devtools/python/python_2.7.2.bb | 2 +-
> 1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/meta/recipes-devtools/python/python_2.7.2.bb b/meta/recipes-devtools/python/python_2.7.2.bb
> index cb0a1d5..6969929 100644
> --- a/meta/recipes-devtools/python/python_2.7.2.bb
> +++ b/meta/recipes-devtools/python/python_2.7.2.bb
> @@ -1,5 +1,5 @@
> require python.inc
> -DEPENDS = "python-native bzip2 db gdbm openssl readline sqlite3 zlib"
> +DEPENDS = "python-native bzip2 db gdbm openssl readline sqlite3 zlib tk"
Andrei,
this breaks builds without x11:
ERROR: Nothing PROVIDES 'virtual/libx11' (but .../meta-oe/recipes-devtools/tcltk/tk_8.5.8.bb DEPENDS on or otherwise requires it)
ERROR: libx11-diet PROVIDES virtual/libx11 but was skipped: 'x11' not in DISTRO_FEATURES
ERROR: libx11-trim PROVIDES virtual/libx11 but was skipped: 'x11' not in DISTRO_FEATURES
ERROR: libx11 PROVIDES virtual/libx11 but was skipped: 'x11' not in DISTRO_FEATURES
ERROR: libx11-nativesdk PROVIDES virtual/libx11 but was skipped: 'x11' not in DISTRO_FEATURES
ERROR: Required build target 'tk' has no buildable providers.
Missing or unbuildable dependency chain was: ['tk', 'virtual/libx11']
Besides that, tk is not part of OE-core.
Regards,
Andreas
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] python: Add tk to DEPENDS
2012-03-23 23:33 ` Andreas Oberritter
@ 2012-03-23 23:39 ` Andreas Oberritter
0 siblings, 0 replies; 3+ messages in thread
From: Andreas Oberritter @ 2012-03-23 23:39 UTC (permalink / raw)
To: openembedded-core
On 24.03.2012 00:33, Andreas Oberritter wrote:
> On 24.03.2012 00:14, Andrei Gherzan wrote:
>> This is needed for _tkinter python module.
>>
>> [YOCTO #1937]
>>
>> Signed-off-by: Andrei Gherzan <andrei@gherzan.ro>
>> ---
>> meta/recipes-devtools/python/python_2.7.2.bb | 2 +-
>> 1 files changed, 1 insertions(+), 1 deletions(-)
>>
>> diff --git a/meta/recipes-devtools/python/python_2.7.2.bb b/meta/recipes-devtools/python/python_2.7.2.bb
>> index cb0a1d5..6969929 100644
>> --- a/meta/recipes-devtools/python/python_2.7.2.bb
>> +++ b/meta/recipes-devtools/python/python_2.7.2.bb
>> @@ -1,5 +1,5 @@
>> require python.inc
>> -DEPENDS = "python-native bzip2 db gdbm openssl readline sqlite3 zlib"
>> +DEPENDS = "python-native bzip2 db gdbm openssl readline sqlite3 zlib tk"
>
> Andrei,
>
> this breaks builds without x11:
>
> ERROR: Nothing PROVIDES 'virtual/libx11' (but .../meta-oe/recipes-devtools/tcltk/tk_8.5.8.bb DEPENDS on or otherwise requires it)
> ERROR: libx11-diet PROVIDES virtual/libx11 but was skipped: 'x11' not in DISTRO_FEATURES
> ERROR: libx11-trim PROVIDES virtual/libx11 but was skipped: 'x11' not in DISTRO_FEATURES
> ERROR: libx11 PROVIDES virtual/libx11 but was skipped: 'x11' not in DISTRO_FEATURES
> ERROR: libx11-nativesdk PROVIDES virtual/libx11 but was skipped: 'x11' not in DISTRO_FEATURES
> ERROR: Required build target 'tk' has no buildable providers.
> Missing or unbuildable dependency chain was: ['tk', 'virtual/libx11']
>
> Besides that, tk is not part of OE-core.
Sorry, I missed your patch adding tk to OE-core. Please disregard my
previous message. xproto doesn't seem to depend on libx11, so the
DEPENDS listed in your patch should be OK.
Regards,
Andreas
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2012-03-23 23:49 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-03-23 23:14 [PATCH] python: Add tk to DEPENDS Andrei Gherzan
2012-03-23 23:33 ` Andreas Oberritter
2012-03-23 23:39 ` Andreas Oberritter
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox