* [meta-oe][PATCH] system-config-keyboard: fix depends to work correctly with RSS
@ 2017-02-24 23:39 Derek Straka
2017-02-25 0:03 ` Martin Jansa
0 siblings, 1 reply; 4+ messages in thread
From: Derek Straka @ 2017-02-24 23:39 UTC (permalink / raw)
To: openembedded-devel
Resolves build issue exposed by RSS
See http://errors.yoctoproject.org/Errors/Details/132829/
and http://errors.yoctoproject.org/Errors/Details/132855/
Signed-off-by: Derek Straka <derek@asterius.io>
---
.../system-config-keyboard/system-config-keyboard_1.4.0.bb | 6 +-----
1 file changed, 1 insertion(+), 5 deletions(-)
diff --git a/meta-oe/recipes-support/system-config-keyboard/system-config-keyboard_1.4.0.bb b/meta-oe/recipes-support/system-config-keyboard/system-config-keyboard_1.4.0.bb
index f52b594..26b4412 100644
--- a/meta-oe/recipes-support/system-config-keyboard/system-config-keyboard_1.4.0.bb
+++ b/meta-oe/recipes-support/system-config-keyboard/system-config-keyboard_1.4.0.bb
@@ -5,10 +5,9 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"
SRC_URI = "https://fedorahosted.org/releases/s/y/${BPN}/${BP}.tar.bz2"
SRC_URI[md5sum] = "c267db0ee7a2131ba418399dc17f9e72"
SRC_URI[sha256sum] = "218c883e4e2bfcc82bfe07e785707b5c2ece28df772f2155fd044b9bb1614284"
-inherit python-dir
inherit python-dir gettext
-DEPENDS = "intltool-native"
+DEPENDS += "intltool-native gettext-native"
EXTRA_OEMAKE = " \
PYTHON='${STAGING_BINDIR_NATIVE}'/python-native/python \
@@ -27,6 +26,3 @@ FILES_${PN} += " \
${datadir}/* \
"
BBCLASSEXTEND = "native"
-
-PNBLACKLIST[system-config-keyboard] ?= "Fails to build with RSS http://errors.yoctoproject.org/Errors/Details/132829/"
-PNBLACKLIST[system-config-keyboard-native] ?= "Fails to build with RSS http://errors.yoctoproject.org/Errors/Details/132855/"
--
2.7.4
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [meta-oe][PATCH] system-config-keyboard: fix depends to work correctly with RSS
2017-02-24 23:39 [meta-oe][PATCH] system-config-keyboard: fix depends to work correctly with RSS Derek Straka
@ 2017-02-25 0:03 ` Martin Jansa
2017-02-25 0:08 ` Derek Straka
0 siblings, 1 reply; 4+ messages in thread
From: Martin Jansa @ 2017-02-25 0:03 UTC (permalink / raw)
To: Derek Straka; +Cc: openembedded-devel
isn't gettext-native already added by gettext inherit? Strange
On Sat, Feb 25, 2017 at 12:39 AM, Derek Straka <derek@asterius.io> wrote:
> Resolves build issue exposed by RSS
>
> See http://errors.yoctoproject.org/Errors/Details/132829/
> and http://errors.yoctoproject.org/Errors/Details/132855/
>
> Signed-off-by: Derek Straka <derek@asterius.io>
> ---
> .../system-config-keyboard/system-config-keyboard_1.4.0.bb | 6
> +-----
> 1 file changed, 1 insertion(+), 5 deletions(-)
>
> diff --git a/meta-oe/recipes-support/system-config-keyboard/system-
> config-keyboard_1.4.0.bb b/meta-oe/recipes-support/system-config-keyboard/
> system-config-keyboard_1.4.0.bb
> index f52b594..26b4412 100644
> --- a/meta-oe/recipes-support/system-config-keyboard/system-
> config-keyboard_1.4.0.bb
> +++ b/meta-oe/recipes-support/system-config-keyboard/system-
> config-keyboard_1.4.0.bb
> @@ -5,10 +5,9 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=
> b234ee4d69f5fce4486a80fdaf4a4263"
> SRC_URI = "https://fedorahosted.org/releases/s/y/${BPN}/${BP}.tar.bz2"
> SRC_URI[md5sum] = "c267db0ee7a2131ba418399dc17f9e72"
> SRC_URI[sha256sum] = "218c883e4e2bfcc82bfe07e785707b
> 5c2ece28df772f2155fd044b9bb1614284"
> -inherit python-dir
>
> inherit python-dir gettext
> -DEPENDS = "intltool-native"
> +DEPENDS += "intltool-native gettext-native"
>
> EXTRA_OEMAKE = " \
> PYTHON='${STAGING_BINDIR_NATIVE}'/python-native/python \
> @@ -27,6 +26,3 @@ FILES_${PN} += " \
> ${datadir}/* \
> "
> BBCLASSEXTEND = "native"
> -
> -PNBLACKLIST[system-config-keyboard] ?= "Fails to build with RSS
> http://errors.yoctoproject.org/Errors/Details/132829/"
> -PNBLACKLIST[system-config-keyboard-native] ?= "Fails to build with RSS
> http://errors.yoctoproject.org/Errors/Details/132855/"
> --
> 2.7.4
>
> --
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-devel
>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [meta-oe][PATCH] system-config-keyboard: fix depends to work correctly with RSS
2017-02-25 0:03 ` Martin Jansa
@ 2017-02-25 0:08 ` Derek Straka
2017-02-25 0:12 ` Derek Straka
0 siblings, 1 reply; 4+ messages in thread
From: Derek Straka @ 2017-02-25 0:08 UTC (permalink / raw)
To: Martin Jansa; +Cc: openembedded-devel
I'll pull it out and give it a shot. It is probably that I just needed the
'+=' vs the '='; I just tried both at once
On Fri, Feb 24, 2017 at 7:03 PM, Martin Jansa <martin.jansa@gmail.com>
wrote:
> isn't gettext-native already added by gettext inherit? Strange
>
> On Sat, Feb 25, 2017 at 12:39 AM, Derek Straka <derek@asterius.io> wrote:
>
>> Resolves build issue exposed by RSS
>>
>> See http://errors.yoctoproject.org/Errors/Details/132829/
>> and http://errors.yoctoproject.org/Errors/Details/132855/
>>
>> Signed-off-by: Derek Straka <derek@asterius.io>
>> ---
>> .../system-config-keyboard/system-config-keyboard_1.4.0.bb | 6
>> +-----
>> 1 file changed, 1 insertion(+), 5 deletions(-)
>>
>> diff --git a/meta-oe/recipes-support/system-config-keyboard/system-conf
>> ig-keyboard_1.4.0.bb b/meta-oe/recipes-support/system-config-keyboard/
>> system-config-keyboard_1.4.0.bb
>> index f52b594..26b4412 100644
>> --- a/meta-oe/recipes-support/system-config-keyboard/system-conf
>> ig-keyboard_1.4.0.bb
>> +++ b/meta-oe/recipes-support/system-config-keyboard/system-conf
>> ig-keyboard_1.4.0.bb
>> @@ -5,10 +5,9 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69
>> f5fce4486a80fdaf4a4263"
>> SRC_URI = "https://fedorahosted.org/releases/s/y/${BPN}/${BP}.tar.bz2"
>> SRC_URI[md5sum] = "c267db0ee7a2131ba418399dc17f9e72"
>> SRC_URI[sha256sum] = "218c883e4e2bfcc82bfe07e785707
>> b5c2ece28df772f2155fd044b9bb1614284"
>> -inherit python-dir
>>
>> inherit python-dir gettext
>> -DEPENDS = "intltool-native"
>> +DEPENDS += "intltool-native gettext-native"
>>
>> EXTRA_OEMAKE = " \
>> PYTHON='${STAGING_BINDIR_NATIVE}'/python-native/python \
>> @@ -27,6 +26,3 @@ FILES_${PN} += " \
>> ${datadir}/* \
>> "
>> BBCLASSEXTEND = "native"
>> -
>> -PNBLACKLIST[system-config-keyboard] ?= "Fails to build with RSS
>> http://errors.yoctoproject.org/Errors/Details/132829/"
>> -PNBLACKLIST[system-config-keyboard-native] ?= "Fails to build with RSS
>> http://errors.yoctoproject.org/Errors/Details/132855/"
>> --
>> 2.7.4
>>
>> --
>> _______________________________________________
>> Openembedded-devel mailing list
>> Openembedded-devel@lists.openembedded.org
>> http://lists.openembedded.org/mailman/listinfo/openembedded-devel
>>
>
>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [meta-oe][PATCH] system-config-keyboard: fix depends to work correctly with RSS
2017-02-25 0:08 ` Derek Straka
@ 2017-02-25 0:12 ` Derek Straka
0 siblings, 0 replies; 4+ messages in thread
From: Derek Straka @ 2017-02-25 0:12 UTC (permalink / raw)
To: Martin Jansa; +Cc: openembedded-devel
Using the inherit worked fine for the target, but the native failed without
explicitly adding depends for gettext-native.
On Fri, Feb 24, 2017 at 7:08 PM, Derek Straka <derek@asterius.io> wrote:
> I'll pull it out and give it a shot. It is probably that I just needed
> the '+=' vs the '='; I just tried both at once
>
> On Fri, Feb 24, 2017 at 7:03 PM, Martin Jansa <martin.jansa@gmail.com>
> wrote:
>
>> isn't gettext-native already added by gettext inherit? Strange
>>
>> On Sat, Feb 25, 2017 at 12:39 AM, Derek Straka <derek@asterius.io> wrote:
>>
>>> Resolves build issue exposed by RSS
>>>
>>> See http://errors.yoctoproject.org/Errors/Details/132829/
>>> and http://errors.yoctoproject.org/Errors/Details/132855/
>>>
>>> Signed-off-by: Derek Straka <derek@asterius.io>
>>> ---
>>> .../system-config-keyboard/system-config-keyboard_1.4.0.bb |
>>> 6 +-----
>>> 1 file changed, 1 insertion(+), 5 deletions(-)
>>>
>>> diff --git a/meta-oe/recipes-support/system-config-keyboard/system-conf
>>> ig-keyboard_1.4.0.bb b/meta-oe/recipes-support/system-config-keyboard/
>>> system-config-keyboard_1.4.0.bb
>>> index f52b594..26b4412 100644
>>> --- a/meta-oe/recipes-support/system-config-keyboard/system-conf
>>> ig-keyboard_1.4.0.bb
>>> +++ b/meta-oe/recipes-support/system-config-keyboard/system-conf
>>> ig-keyboard_1.4.0.bb
>>> @@ -5,10 +5,9 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69
>>> f5fce4486a80fdaf4a4263"
>>> SRC_URI = "https://fedorahosted.org/releases/s/y/${BPN}/${BP}.tar.bz2"
>>> SRC_URI[md5sum] = "c267db0ee7a2131ba418399dc17f9e72"
>>> SRC_URI[sha256sum] = "218c883e4e2bfcc82bfe07e785707
>>> b5c2ece28df772f2155fd044b9bb1614284"
>>> -inherit python-dir
>>>
>>> inherit python-dir gettext
>>> -DEPENDS = "intltool-native"
>>> +DEPENDS += "intltool-native gettext-native"
>>>
>>> EXTRA_OEMAKE = " \
>>> PYTHON='${STAGING_BINDIR_NATIVE}'/python-native/python \
>>> @@ -27,6 +26,3 @@ FILES_${PN} += " \
>>> ${datadir}/* \
>>> "
>>> BBCLASSEXTEND = "native"
>>> -
>>> -PNBLACKLIST[system-config-keyboard] ?= "Fails to build with RSS
>>> http://errors.yoctoproject.org/Errors/Details/132829/"
>>> -PNBLACKLIST[system-config-keyboard-native] ?= "Fails to build with RSS
>>> http://errors.yoctoproject.org/Errors/Details/132855/"
>>> --
>>> 2.7.4
>>>
>>> --
>>> _______________________________________________
>>> Openembedded-devel mailing list
>>> Openembedded-devel@lists.openembedded.org
>>> http://lists.openembedded.org/mailman/listinfo/openembedded-devel
>>>
>>
>>
>
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2017-02-25 0:12 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-02-24 23:39 [meta-oe][PATCH] system-config-keyboard: fix depends to work correctly with RSS Derek Straka
2017-02-25 0:03 ` Martin Jansa
2017-02-25 0:08 ` Derek Straka
2017-02-25 0:12 ` Derek Straka
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.