* [meta-raspberrypi][PATCH 1/1] rpi-first-run-wizard: Fix RDEPENDS warning
@ 2013-02-10 17:55 Andrei Gherzan
2013-02-19 14:03 ` Philipp Wagner
0 siblings, 1 reply; 4+ messages in thread
From: Andrei Gherzan @ 2013-02-10 17:55 UTC (permalink / raw)
To: yocto
WARNING: QA Issue: [...]/rpi-first-run-wizard.bb:
Variable RDEPENDS is set as not being package specific, please fix this.
Signed-off-by: Andrei Gherzan <andrei@gherzan.ro>
---
recipes-extra/startup/rpi-first-run-wizard.bb | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/recipes-extra/startup/rpi-first-run-wizard.bb b/recipes-extra/startup/rpi-first-run-wizard.bb
index c5cef7c..6ede56e 100644
--- a/recipes-extra/startup/rpi-first-run-wizard.bb
+++ b/recipes-extra/startup/rpi-first-run-wizard.bb
@@ -3,11 +3,11 @@ LICENSE = "GPLV2"
LIC_FILES_CHKSUM = "file://${WORKDIR}/LICENSE;md5=b234ee4d69f5fce4486a80fdaf4a4263"
DEPENDS = "zenity dbus"
-RDEPENDS = "slim sudo zenity dbus"
+RDEPENDS_${PN} = "slim sudo zenity dbus"
COMPATIBLE_MACHINE = "raspberrypi"
-PR = "r1"
+PR = "r2"
SRC_URI = " \
file://LICENSE \
--
1.7.9.5
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [meta-raspberrypi][PATCH 1/1] rpi-first-run-wizard: Fix RDEPENDS warning
2013-02-10 17:55 [meta-raspberrypi][PATCH 1/1] rpi-first-run-wizard: Fix RDEPENDS warning Andrei Gherzan
@ 2013-02-19 14:03 ` Philipp Wagner
2013-02-20 11:16 ` Andrei Gherzan
0 siblings, 1 reply; 4+ messages in thread
From: Philipp Wagner @ 2013-02-19 14:03 UTC (permalink / raw)
To: Andrei Gherzan; +Cc: yocto
Am 10.02.2013 18:55, schrieb Andrei Gherzan:
> WARNING: QA Issue: [...]/rpi-first-run-wizard.bb:
> Variable RDEPENDS is set as not being package specific, please fix this.
>
> Signed-off-by: Andrei Gherzan <andrei@gherzan.ro>
> ---
> recipes-extra/startup/rpi-first-run-wizard.bb | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/recipes-extra/startup/rpi-first-run-wizard.bb b/recipes-extra/startup/rpi-first-run-wizard.bb
> index c5cef7c..6ede56e 100644
> --- a/recipes-extra/startup/rpi-first-run-wizard.bb
> +++ b/recipes-extra/startup/rpi-first-run-wizard.bb
> @@ -3,11 +3,11 @@ LICENSE = "GPLV2"
> LIC_FILES_CHKSUM = "file://${WORKDIR}/LICENSE;md5=b234ee4d69f5fce4486a80fdaf4a4263"
>
> DEPENDS = "zenity dbus"
> -RDEPENDS = "slim sudo zenity dbus"
> +RDEPENDS_${PN} = "slim sudo zenity dbus"
>
> COMPATIBLE_MACHINE = "raspberrypi"
>
> -PR = "r1"
> +PR = "r2"
>
> SRC_URI = " \
> file://LICENSE \
>
I've applied this patch and it works as expected.
Philipp
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [meta-raspberrypi][PATCH 1/1] rpi-first-run-wizard: Fix RDEPENDS warning
2013-02-19 14:03 ` Philipp Wagner
@ 2013-02-20 11:16 ` Andrei Gherzan
2013-03-13 17:49 ` Andrei Gherzan
0 siblings, 1 reply; 4+ messages in thread
From: Andrei Gherzan @ 2013-02-20 11:16 UTC (permalink / raw)
To: Philipp Wagner; +Cc: Yocto Project
[-- Attachment #1: Type: text/plain, Size: 1445 bytes --]
Thanks.
On Tue, Feb 19, 2013 at 4:03 PM, Philipp Wagner <lists@philipp-wagner.com>wrote:
> Am 10.02.2013 18:55, schrieb Andrei Gherzan:
>
> WARNING: QA Issue: [...]/rpi-first-run-wizard.bb:
>> Variable RDEPENDS is set as not being package specific, please fix this.
>>
>> Signed-off-by: Andrei Gherzan <andrei@gherzan.ro>
>> ---
>> recipes-extra/startup/rpi-**first-run-wizard.bb<http://rpi-first-run-wizard.bb>| 4 ++--
>> 1 file changed, 2 insertions(+), 2 deletions(-)
>>
>> diff --git a/recipes-extra/startup/rpi-**first-run-wizard.bb<http://rpi-first-run-wizard.bb>b/recipes-extra/startup/
>> rpi-**first-run-wizard.bb <http://rpi-first-run-wizard.bb>
>> index c5cef7c..6ede56e 100644
>> --- a/recipes-extra/startup/rpi-**first-run-wizard.bb<http://rpi-first-run-wizard.bb>
>> +++ b/recipes-extra/startup/rpi-**first-run-wizard.bb<http://rpi-first-run-wizard.bb>
>> @@ -3,11 +3,11 @@ LICENSE = "GPLV2"
>> LIC_FILES_CHKSUM = "file://${WORKDIR}/LICENSE;**md5=**
>> b234ee4d69f5fce4486a80fdaf4a42**63"
>>
>> DEPENDS = "zenity dbus"
>> -RDEPENDS = "slim sudo zenity dbus"
>> +RDEPENDS_${PN} = "slim sudo zenity dbus"
>>
>> COMPATIBLE_MACHINE = "raspberrypi"
>>
>> -PR = "r1"
>> +PR = "r2"
>>
>> SRC_URI = " \
>> file://LICENSE \
>>
>>
> I've applied this patch and it works as expected.
>
> Philipp
>
--
*Andrei Gherzan*
m: +40.744.478.414 | f: +40.31.816.28.12
[-- Attachment #2: Type: text/html, Size: 2798 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [meta-raspberrypi][PATCH 1/1] rpi-first-run-wizard: Fix RDEPENDS warning
2013-02-20 11:16 ` Andrei Gherzan
@ 2013-03-13 17:49 ` Andrei Gherzan
0 siblings, 0 replies; 4+ messages in thread
From: Andrei Gherzan @ 2013-03-13 17:49 UTC (permalink / raw)
To: Philipp Wagner; +Cc: Yocto Project
[-- Attachment #1: Type: text/plain, Size: 1662 bytes --]
Merged.
On Wed, Feb 20, 2013 at 1:16 PM, Andrei Gherzan <andrei@gherzan.ro> wrote:
> Thanks.
>
>
> On Tue, Feb 19, 2013 at 4:03 PM, Philipp Wagner <lists@philipp-wagner.com>wrote:
>
>> Am 10.02.2013 18:55, schrieb Andrei Gherzan:
>>
>> WARNING: QA Issue: [...]/rpi-first-run-wizard.bb:
>>> Variable RDEPENDS is set as not being package specific, please fix this.
>>>
>>> Signed-off-by: Andrei Gherzan <andrei@gherzan.ro>
>>> ---
>>> recipes-extra/startup/rpi-**first-run-wizard.bb<http://rpi-first-run-wizard.bb>| 4 ++--
>>> 1 file changed, 2 insertions(+), 2 deletions(-)
>>>
>>> diff --git a/recipes-extra/startup/rpi-**first-run-wizard.bb<http://rpi-first-run-wizard.bb>b/recipes-extra/startup/
>>> rpi-**first-run-wizard.bb <http://rpi-first-run-wizard.bb>
>>> index c5cef7c..6ede56e 100644
>>> --- a/recipes-extra/startup/rpi-**first-run-wizard.bb<http://rpi-first-run-wizard.bb>
>>> +++ b/recipes-extra/startup/rpi-**first-run-wizard.bb<http://rpi-first-run-wizard.bb>
>>> @@ -3,11 +3,11 @@ LICENSE = "GPLV2"
>>> LIC_FILES_CHKSUM = "file://${WORKDIR}/LICENSE;**md5=**
>>> b234ee4d69f5fce4486a80fdaf4a42**63"
>>>
>>> DEPENDS = "zenity dbus"
>>> -RDEPENDS = "slim sudo zenity dbus"
>>> +RDEPENDS_${PN} = "slim sudo zenity dbus"
>>>
>>> COMPATIBLE_MACHINE = "raspberrypi"
>>>
>>> -PR = "r1"
>>> +PR = "r2"
>>>
>>> SRC_URI = " \
>>> file://LICENSE \
>>>
>>>
>> I've applied this patch and it works as expected.
>>
>> Philipp
>>
>
>
>
> --
> *Andrei Gherzan*
> m: +40.744.478.414 | f: +40.31.816.28.12
>
--
*Andrei Gherzan*
m: +40.744.478.414 | f: +40.31.816.28.12
[-- Attachment #2: Type: text/html, Size: 3886 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2013-03-13 17:50 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-02-10 17:55 [meta-raspberrypi][PATCH 1/1] rpi-first-run-wizard: Fix RDEPENDS warning Andrei Gherzan
2013-02-19 14:03 ` Philipp Wagner
2013-02-20 11:16 ` Andrei Gherzan
2013-03-13 17:49 ` Andrei Gherzan
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.