All of lore.kernel.org
 help / color / mirror / Atom feed
* testing branch 2010-09-27
@ 2010-09-27 19:37 Cliff Brake
  2010-09-30  8:08 ` Steffen Sledz
  0 siblings, 1 reply; 14+ messages in thread
From: Cliff Brake @ 2010-09-27 19:37 UTC (permalink / raw)
  To: openembedded-devel

We had a successful test run last week:

http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=testing_2010-09-20

master has been merged to testing-next and is ready for clean builds.

http://wiki.openembedded.net/index.php/Testing

Thanks,
Cliff

-- 
=================
http://bec-systems.com



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

* Re: testing branch 2010-09-27
  2010-09-27 19:37 testing branch 2010-09-27 Cliff Brake
@ 2010-09-30  8:08 ` Steffen Sledz
  2010-09-30  8:10   ` [PATCH] epiphany-2.30.2: unbreak build by disabling CA files Steffen Sledz
  0 siblings, 1 reply; 14+ messages in thread
From: Steffen Sledz @ 2010-09-30  8:08 UTC (permalink / raw)
  To: openembedded-devel

Am 27.09.2010 21:37, schrieb Cliff Brake:
> master has been merged to testing-next and is ready for clean builds.
> 
> http://wiki.openembedded.net/index.php/Testing

Like in the weeks before, building epiphany failed for target angstrom-gnome-image and hipox machine (see <http://tinderbox.openembedded.net/packages/797336/>).

A patch follows.

Steffen




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

* [PATCH] epiphany-2.30.2: unbreak build by disabling CA files
  2010-09-30  8:08 ` Steffen Sledz
@ 2010-09-30  8:10   ` Steffen Sledz
  2010-09-30 14:56     ` Paul Menzel
  2010-10-01 16:05     ` Steffen Sledz
  0 siblings, 2 replies; 14+ messages in thread
From: Steffen Sledz @ 2010-09-30  8:10 UTC (permalink / raw)
  To: openembedded-devel

Signed-off-by: Steffen Sledz <sledz@dresearch.de>
---
 recipes/gnome/epiphany_2.30.2.bb |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/recipes/gnome/epiphany_2.30.2.bb b/recipes/gnome/epiphany_2.30.2.bb
index 426d468..38798f7 100644
--- a/recipes/gnome/epiphany_2.30.2.bb
+++ b/recipes/gnome/epiphany_2.30.2.bb
@@ -9,7 +9,7 @@ SRC_URI[archive.md5sum] = "29b084acfa016540d91d3601ec3dff5c"
 SRC_URI[archive.sha256sum] = "cd0124e71e72142593cfeb442d58d97e99ba94ace6e31d94717fe977c0bfb98a"
 
 
-EXTRA_OECONF = "--disable-nss --with-engine=webkit --with-distributor-name=${DISTRO}"
+EXTRA_OECONF = "--disable-nss --with-engine=webkit --with-distributor-name=${DISTRO} --without-ca-file"
 
 do_configure_prepend() {
         touch ${S}/gnome-doc-utils.make
-- 
1.7.1




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

* Re: [PATCH] epiphany-2.30.2: unbreak build by disabling CA files
  2010-09-30  8:10   ` [PATCH] epiphany-2.30.2: unbreak build by disabling CA files Steffen Sledz
@ 2010-09-30 14:56     ` Paul Menzel
  2010-09-30 15:00       ` Steffen Sledz
  2010-10-01 16:05     ` Steffen Sledz
  1 sibling, 1 reply; 14+ messages in thread
From: Paul Menzel @ 2010-09-30 14:56 UTC (permalink / raw)
  To: openembedded-devel

[-- Attachment #1: Type: text/plain, Size: 1097 bytes --]

Am Donnerstag, den 30.09.2010, 10:10 +0200 schrieb Steffen Sledz:
> Signed-off-by: Steffen Sledz <sledz@dresearch.de>

What is your build error?

Building `epiphany-2.30.2-r2` with `MACHINE = "beagleboard"` for minimal
(eglibc) worked for me.

> ---
>  recipes/gnome/epiphany_2.30.2.bb |    2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)
> 
> diff --git a/recipes/gnome/epiphany_2.30.2.bb b/recipes/gnome/epiphany_2.30.2.bb
> index 426d468..38798f7 100644
> --- a/recipes/gnome/epiphany_2.30.2.bb
> +++ b/recipes/gnome/epiphany_2.30.2.bb
> @@ -9,7 +9,7 @@ SRC_URI[archive.md5sum] = "29b084acfa016540d91d3601ec3dff5c"
>  SRC_URI[archive.sha256sum] = "cd0124e71e72142593cfeb442d58d97e99ba94ace6e31d94717fe977c0bfb98a"
>  
> 
> -EXTRA_OECONF = "--disable-nss --with-engine=webkit --with-distributor-name=${DISTRO}"
> +EXTRA_OECONF = "--disable-nss --with-engine=webkit --with-distributor-name=${DISTRO} --without-ca-file"
>  
>  do_configure_prepend() {
>          touch ${S}/gnome-doc-utils.make

Besides that would PR need to be increased?


Thanks,

Paul

[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 205 bytes --]

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

* Re: [PATCH] epiphany-2.30.2: unbreak build by disabling CA files
  2010-09-30 14:56     ` Paul Menzel
@ 2010-09-30 15:00       ` Steffen Sledz
  0 siblings, 0 replies; 14+ messages in thread
From: Steffen Sledz @ 2010-09-30 15:00 UTC (permalink / raw)
  To: openembedded-devel

Am 30.09.2010 16:56, schrieb Paul Menzel:
> Am Donnerstag, den 30.09.2010, 10:10 +0200 schrieb Steffen Sledz:
>> Signed-off-by: Steffen Sledz <sledz@dresearch.de>
> 
> What is your build error?
> 
> Building `epiphany-2.30.2-r2` with `MACHINE = "beagleboard"` for minimal
> (eglibc) worked for me.

see <http://tinderbox.openembedded.net/packages/797336/>

> Besides that would PR need to be increased?

Not sure, but i can do that of course.

Steffen




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

* Re: [PATCH] epiphany-2.30.2: unbreak build by disabling CA files
  2010-09-30  8:10   ` [PATCH] epiphany-2.30.2: unbreak build by disabling CA files Steffen Sledz
  2010-09-30 14:56     ` Paul Menzel
@ 2010-10-01 16:05     ` Steffen Sledz
  2010-10-01 16:26       ` Khem Raj
  1 sibling, 1 reply; 14+ messages in thread
From: Steffen Sledz @ 2010-10-01 16:05 UTC (permalink / raw)
  To: openembedded-devel

Am 30.09.2010 10:10, schrieb Steffen Sledz:
> Signed-off-by: Steffen Sledz <sledz@dresearch.de>
> ---
>  recipes/gnome/epiphany_2.30.2.bb |    2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)
> 
> diff --git a/recipes/gnome/epiphany_2.30.2.bb b/recipes/gnome/epiphany_2.30.2.bb
> index 426d468..38798f7 100644
> --- a/recipes/gnome/epiphany_2.30.2.bb
> +++ b/recipes/gnome/epiphany_2.30.2.bb
> @@ -9,7 +9,7 @@ SRC_URI[archive.md5sum] = "29b084acfa016540d91d3601ec3dff5c"
>  SRC_URI[archive.sha256sum] = "cd0124e71e72142593cfeb442d58d97e99ba94ace6e31d94717fe977c0bfb98a"
>  
>  
> -EXTRA_OECONF = "--disable-nss --with-engine=webkit --with-distributor-name=${DISTRO}"
> +EXTRA_OECONF = "--disable-nss --with-engine=webkit --with-distributor-name=${DISTRO} --without-ca-file"
>  
>  do_configure_prepend() {
>          touch ${S}/gnome-doc-utils.make

Ping!

The next 'testing-next' branch is knocking at the door. ;-)

-- 
Steffen Sledz
DResearch Digital Media Systems GmbH
Otto-Schmirgal-Str.3, D-10319 Berlin, Germany
Tel: +49 (30) 515932237 mailto:sledz@DResearch.DE
Fax: +49 (30) 515932299 http://www.DResearch.DE
Geschäftsführer: Dr. Michael Weber, Werner Mögle;
Amtsgericht Berlin Charlottenburg; HRB 54412;
Ust.-IDNr. DE169013825; WEEE Reg.-Nr. DE 85995642




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

* Re: [PATCH] epiphany-2.30.2: unbreak build by disabling CA files
  2010-10-01 16:05     ` Steffen Sledz
@ 2010-10-01 16:26       ` Khem Raj
  2010-10-01 22:11         ` Paul Menzel
  0 siblings, 1 reply; 14+ messages in thread
From: Khem Raj @ 2010-10-01 16:26 UTC (permalink / raw)
  To: openembedded-devel

On Fri, Oct 1, 2010 at 9:05 AM, Steffen Sledz <sledz@dresearch.de> wrote:
> Am 30.09.2010 10:10, schrieb Steffen Sledz:
>> Signed-off-by: Steffen Sledz <sledz@dresearch.de>
>> ---
>>  recipes/gnome/epiphany_2.30.2.bb |    2 +-
>>  1 files changed, 1 insertions(+), 1 deletions(-)
>>
>> diff --git a/recipes/gnome/epiphany_2.30.2.bb b/recipes/gnome/epiphany_2.30.2.bb
>> index 426d468..38798f7 100644
>> --- a/recipes/gnome/epiphany_2.30.2.bb
>> +++ b/recipes/gnome/epiphany_2.30.2.bb
>> @@ -9,7 +9,7 @@ SRC_URI[archive.md5sum] = "29b084acfa016540d91d3601ec3dff5c"
>>  SRC_URI[archive.sha256sum] = "cd0124e71e72142593cfeb442d58d97e99ba94ace6e31d94717fe977c0bfb98a"
>>
>>
>> -EXTRA_OECONF = "--disable-nss --with-engine=webkit --with-distributor-name=${DISTRO}"
>> +EXTRA_OECONF = "--disable-nss --with-engine=webkit --with-distributor-name=${DISTRO} --without-ca-file"
>>
>>  do_configure_prepend() {
>>          touch ${S}/gnome-doc-utils.make
>
> Ping!
>
> The next 'testing-next' branch is knocking at the door. ;-)

while the patch looks ok you need to bump the PR too as mentioned.
Paul could you send your build logs
somewhere to look at. We need to know if its something Stefan's build
system problem or yours.

>
> --
> Steffen Sledz
> DResearch Digital Media Systems GmbH
> Otto-Schmirgal-Str.3, D-10319 Berlin, Germany
> Tel: +49 (30) 515932237 mailto:sledz@DResearch.DE
> Fax: +49 (30) 515932299 http://www.DResearch.DE
> Geschäftsführer: Dr. Michael Weber, Werner Mögle;
> Amtsgericht Berlin Charlottenburg; HRB 54412;
> Ust.-IDNr. DE169013825; WEEE Reg.-Nr. DE 85995642
>
>
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel
>



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

* Re: [PATCH] epiphany-2.30.2: unbreak build by disabling CA files
  2010-10-01 16:26       ` Khem Raj
@ 2010-10-01 22:11         ` Paul Menzel
  2010-10-01 23:13           ` Khem Raj
  0 siblings, 1 reply; 14+ messages in thread
From: Paul Menzel @ 2010-10-01 22:11 UTC (permalink / raw)
  To: openembedded-devel

[-- Attachment #1: Type: text/plain, Size: 1868 bytes --]

Am Freitag, den 01.10.2010, 09:26 -0700 schrieb Khem Raj:
> On Fri, Oct 1, 2010 at 9:05 AM, Steffen Sledz <sledz@dresearch.de> wrote:
> > Am 30.09.2010 10:10, schrieb Steffen Sledz:
> >> Signed-off-by: Steffen Sledz <sledz@dresearch.de>
> >> ---
> >>  recipes/gnome/epiphany_2.30.2.bb |    2 +-
> >>  1 files changed, 1 insertions(+), 1 deletions(-)
> >>
> >> diff --git a/recipes/gnome/epiphany_2.30.2.bb b/recipes/gnome/epiphany_2.30.2.bb
> >> index 426d468..38798f7 100644
> >> --- a/recipes/gnome/epiphany_2.30.2.bb
> >> +++ b/recipes/gnome/epiphany_2.30.2.bb
> >> @@ -9,7 +9,7 @@ SRC_URI[archive.md5sum] = "29b084acfa016540d91d3601ec3dff5c"
> >>  SRC_URI[archive.sha256sum] = "cd0124e71e72142593cfeb442d58d97e99ba94ace6e31d94717fe977c0bfb98a"
> >>
> >>
> >> -EXTRA_OECONF = "--disable-nss --with-engine=webkit --with-distributor-name=${DISTRO}"
> >> +EXTRA_OECONF = "--disable-nss --with-engine=webkit --with-distributor-name=${DISTRO} --without-ca-file"
> >>
> >>  do_configure_prepend() {
> >>          touch ${S}/gnome-doc-utils.make
> >
> > Ping!
> >
> > The next 'testing-next' branch is knocking at the door. ;-)
> 
> while the patch looks ok you need to bump the PR too as mentioned.
> Paul could you send your build logs
> somewhere to look at. We need to know if its something Stefan's build
> system problem or yours.

Sorry, for not finding this earlier. I have `ca-certificates` installed
on my build system.

        checking location of system Certificate Authority list... /etc/ssl/certs/ca-certificates.crt
        […]
        CA Certificates file       : /etc/ssl/certs/ca-certificates.crt

The question is, if `ca-certificates` should be added to `DEPENDS` and
if that would be picked up.

If not, Steffen’s patch is

Acked-by: Paul Menzel <paulepanter@users.sourceforge.net>


Thanks,

Paul

[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 205 bytes --]

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

* Re: [PATCH] epiphany-2.30.2: unbreak build by disabling CA files
  2010-10-01 22:11         ` Paul Menzel
@ 2010-10-01 23:13           ` Khem Raj
  2010-10-01 23:14             ` Khem Raj
  0 siblings, 1 reply; 14+ messages in thread
From: Khem Raj @ 2010-10-01 23:13 UTC (permalink / raw)
  To: openembedded-devel

On Fri, Oct 1, 2010 at 3:11 PM, Paul Menzel
<paulepanter@users.sourceforge.net> wrote:
> Am Freitag, den 01.10.2010, 09:26 -0700 schrieb Khem Raj:
>> On Fri, Oct 1, 2010 at 9:05 AM, Steffen Sledz <sledz@dresearch.de> wrote:
>> > Am 30.09.2010 10:10, schrieb Steffen Sledz:
>> >> Signed-off-by: Steffen Sledz <sledz@dresearch.de>
>> >> ---
>> >>  recipes/gnome/epiphany_2.30.2.bb |    2 +-
>> >>  1 files changed, 1 insertions(+), 1 deletions(-)
>> >>
>> >> diff --git a/recipes/gnome/epiphany_2.30.2.bb b/recipes/gnome/epiphany_2.30.2.bb
>> >> index 426d468..38798f7 100644
>> >> --- a/recipes/gnome/epiphany_2.30.2.bb
>> >> +++ b/recipes/gnome/epiphany_2.30.2.bb
>> >> @@ -9,7 +9,7 @@ SRC_URI[archive.md5sum] = "29b084acfa016540d91d3601ec3dff5c"
>> >>  SRC_URI[archive.sha256sum] = "cd0124e71e72142593cfeb442d58d97e99ba94ace6e31d94717fe977c0bfb98a"
>> >>
>> >>
>> >> -EXTRA_OECONF = "--disable-nss --with-engine=webkit --with-distributor-name=${DISTRO}"
>> >> +EXTRA_OECONF = "--disable-nss --with-engine=webkit --with-distributor-name=${DISTRO} --without-ca-file"
>> >>
>> >>  do_configure_prepend() {
>> >>          touch ${S}/gnome-doc-utils.make
>> >
>> > Ping!
>> >
>> > The next 'testing-next' branch is knocking at the door. ;-)
>>
>> while the patch looks ok you need to bump the PR too as mentioned.
>> Paul could you send your build logs
>> somewhere to look at. We need to know if its something Stefan's build
>> system problem or yours.
>
> Sorry, for not finding this earlier. I have `ca-certificates` installed
> on my build system.
>
>        checking location of system Certificate Authority list... /etc/ssl/certs/ca-certificates.crt
>        […]
>        CA Certificates file       : /etc/ssl/certs/ca-certificates.crt
>

yes thats what I expected

> The question is, if `ca-certificates` should be added to `DEPENDS` and
> if that would be picked up.

Stefan

Try adding ca-certificates to DEPENDS and probably as RSUGGESTS for runtime too

>
> If not, Steffen’s patch is
>
> Acked-by: Paul Menzel <paulepanter@users.sourceforge.net>
>
>
> Thanks,
>
> Paul
>
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel
>
>



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

* Re: [PATCH] epiphany-2.30.2: unbreak build by disabling CA files
  2010-10-01 23:13           ` Khem Raj
@ 2010-10-01 23:14             ` Khem Raj
  2010-10-04  7:10               ` [PATCH v2] " Steffen Sledz
  0 siblings, 1 reply; 14+ messages in thread
From: Khem Raj @ 2010-10-01 23:14 UTC (permalink / raw)
  To: openembedded-devel

On Fri, Oct 1, 2010 at 4:13 PM, Khem Raj <raj.khem@gmail.com> wrote:
> On Fri, Oct 1, 2010 at 3:11 PM, Paul Menzel
> <paulepanter@users.sourceforge.net> wrote:
>> Am Freitag, den 01.10.2010, 09:26 -0700 schrieb Khem Raj:
>>> On Fri, Oct 1, 2010 at 9:05 AM, Steffen Sledz <sledz@dresearch.de> wrote:
>>> > Am 30.09.2010 10:10, schrieb Steffen Sledz:
>>> >> Signed-off-by: Steffen Sledz <sledz@dresearch.de>
>>> >> ---
>>> >>  recipes/gnome/epiphany_2.30.2.bb |    2 +-
>>> >>  1 files changed, 1 insertions(+), 1 deletions(-)
>>> >>
>>> >> diff --git a/recipes/gnome/epiphany_2.30.2.bb b/recipes/gnome/epiphany_2.30.2.bb
>>> >> index 426d468..38798f7 100644
>>> >> --- a/recipes/gnome/epiphany_2.30.2.bb
>>> >> +++ b/recipes/gnome/epiphany_2.30.2.bb
>>> >> @@ -9,7 +9,7 @@ SRC_URI[archive.md5sum] = "29b084acfa016540d91d3601ec3dff5c"
>>> >>  SRC_URI[archive.sha256sum] = "cd0124e71e72142593cfeb442d58d97e99ba94ace6e31d94717fe977c0bfb98a"
>>> >>
>>> >>
>>> >> -EXTRA_OECONF = "--disable-nss --with-engine=webkit --with-distributor-name=${DISTRO}"
>>> >> +EXTRA_OECONF = "--disable-nss --with-engine=webkit --with-distributor-name=${DISTRO} --without-ca-file"
>>> >>
>>> >>  do_configure_prepend() {
>>> >>          touch ${S}/gnome-doc-utils.make
>>> >
>>> > Ping!
>>> >
>>> > The next 'testing-next' branch is knocking at the door. ;-)
>>>
>>> while the patch looks ok you need to bump the PR too as mentioned.
>>> Paul could you send your build logs
>>> somewhere to look at. We need to know if its something Stefan's build
>>> system problem or yours.
>>
>> Sorry, for not finding this earlier. I have `ca-certificates` installed
>> on my build system.
>>
>>        checking location of system Certificate Authority list... /etc/ssl/certs/ca-certificates.crt
>>        […]
>>        CA Certificates file       : /etc/ssl/certs/ca-certificates.crt
>>
>
> yes thats what I expected
>
>> The question is, if `ca-certificates` should be added to `DEPENDS` and
>> if that would be picked up.
>
> Stefan
>
> Try adding ca-certificates to DEPENDS and probably as RSUGGESTS for runtime too

RRECOMMENDS is better probably

>
>>
>> If not, Steffen’s patch is
>>
>> Acked-by: Paul Menzel <paulepanter@users.sourceforge.net>
>>
>>
>> Thanks,
>>
>> Paul
>>
>> _______________________________________________
>> Openembedded-devel mailing list
>> Openembedded-devel@lists.openembedded.org
>> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel
>>
>>
>



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

* [PATCH v2] epiphany-2.30.2: unbreak build by disabling CA files
  2010-10-01 23:14             ` Khem Raj
@ 2010-10-04  7:10               ` Steffen Sledz
  2010-10-04 10:50                 ` [PATCH v3] epiphany-2.30.2: unbreak build by adding ca-certificates dependencies Steffen Sledz
  0 siblings, 1 reply; 14+ messages in thread
From: Steffen Sledz @ 2010-10-04  7:10 UTC (permalink / raw)
  To: openembedded-devel

Signed-off-by: Steffen Sledz <sledz@dresearch.de>
---
 recipes/gnome/epiphany_2.30.2.bb |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/recipes/gnome/epiphany_2.30.2.bb b/recipes/gnome/epiphany_2.30.2.bb
index 426d468..f0d4f5d 100644
--- a/recipes/gnome/epiphany_2.30.2.bb
+++ b/recipes/gnome/epiphany_2.30.2.bb
@@ -1,7 +1,8 @@
 DESCRIPTION = "GNOME default webbrowser"
-DEPENDS = "libsoup-2.4 gnome-desktop gnome-vfs libgnomeui webkit-gtk iso-codes startup-notification"
+DEPENDS = "libsoup-2.4 gnome-desktop gnome-vfs libgnomeui webkit-gtk iso-codes startup-notification ca-certificates"
 RDEPENDS_${PN} = "gnome-vfs-plugin-http iso-codes"
-PR = "r2"
+RRECOMMENDS = "ca-certificates"
+PR = "r3"
 
 inherit gnome
 
-- 
1.7.1




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

* [PATCH v3] epiphany-2.30.2: unbreak build by adding ca-certificates dependencies
  2010-10-04  7:10               ` [PATCH v2] " Steffen Sledz
@ 2010-10-04 10:50                 ` Steffen Sledz
  2010-10-04 10:51                   ` Steffen Sledz
  2010-10-04 11:53                   ` Koen Kooi
  0 siblings, 2 replies; 14+ messages in thread
From: Steffen Sledz @ 2010-10-04 10:50 UTC (permalink / raw)
  To: openembedded-devel

Signed-off-by: Steffen Sledz <sledz@dresearch.de>
---
 recipes/gnome/epiphany_2.30.2.bb |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/recipes/gnome/epiphany_2.30.2.bb b/recipes/gnome/epiphany_2.30.2.bb
index 426d468..f0d4f5d 100644
--- a/recipes/gnome/epiphany_2.30.2.bb
+++ b/recipes/gnome/epiphany_2.30.2.bb
@@ -1,7 +1,8 @@
 DESCRIPTION = "GNOME default webbrowser"
-DEPENDS = "libsoup-2.4 gnome-desktop gnome-vfs libgnomeui webkit-gtk iso-codes startup-notification"
+DEPENDS = "libsoup-2.4 gnome-desktop gnome-vfs libgnomeui webkit-gtk iso-codes startup-notification ca-certificates"
 RDEPENDS_${PN} = "gnome-vfs-plugin-http iso-codes"
-PR = "r2"
+RRECOMMENDS = "ca-certificates"
+PR = "r3"
 
 inherit gnome
 
-- 
1.7.1




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

* Re: [PATCH v3] epiphany-2.30.2: unbreak build by adding ca-certificates dependencies
  2010-10-04 10:50                 ` [PATCH v3] epiphany-2.30.2: unbreak build by adding ca-certificates dependencies Steffen Sledz
@ 2010-10-04 10:51                   ` Steffen Sledz
  2010-10-04 11:53                   ` Koen Kooi
  1 sibling, 0 replies; 14+ messages in thread
From: Steffen Sledz @ 2010-10-04 10:51 UTC (permalink / raw)
  To: openembedded-devel

Patch comment fixed in [PATCH v3].

Some final ACKs?

-- 
Steffen Sledz
DResearch Digital Media Systems GmbH
Otto-Schmirgal-Str.3, D-10319 Berlin, Germany
Tel: +49 (30) 515932237 mailto:sledz@DResearch.DE
Fax: +49 (30) 515932299 http://www.DResearch.DE
Geschäftsführer: Dr. Michael Weber, Werner Mögle;
Amtsgericht Berlin Charlottenburg; HRB 54412;
Ust.-IDNr. DE169013825; WEEE Reg.-Nr. DE 85995642




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

* Re: [PATCH v3] epiphany-2.30.2: unbreak build by adding ca-certificates dependencies
  2010-10-04 10:50                 ` [PATCH v3] epiphany-2.30.2: unbreak build by adding ca-certificates dependencies Steffen Sledz
  2010-10-04 10:51                   ` Steffen Sledz
@ 2010-10-04 11:53                   ` Koen Kooi
  1 sibling, 0 replies; 14+ messages in thread
From: Koen Kooi @ 2010-10-04 11:53 UTC (permalink / raw)
  To: openembedded-devel

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

On 04-10-10 12:50, Steffen Sledz wrote:
> Signed-off-by: Steffen Sledz <sledz@dresearch.de>
> ---
>  recipes/gnome/epiphany_2.30.2.bb |    5 +++--
>  1 files changed, 3 insertions(+), 2 deletions(-)
> 
> diff --git a/recipes/gnome/epiphany_2.30.2.bb b/recipes/gnome/epiphany_2.30.2.bb
> index 426d468..f0d4f5d 100644
> --- a/recipes/gnome/epiphany_2.30.2.bb
> +++ b/recipes/gnome/epiphany_2.30.2.bb
> @@ -1,7 +1,8 @@
>  DESCRIPTION = "GNOME default webbrowser"
> -DEPENDS = "libsoup-2.4 gnome-desktop gnome-vfs libgnomeui webkit-gtk iso-codes startup-notification"
> +DEPENDS = "libsoup-2.4 gnome-desktop gnome-vfs libgnomeui webkit-gtk iso-codes startup-notification ca-certificates"
>  RDEPENDS_${PN} = "gnome-vfs-plugin-http iso-codes"
> -PR = "r2"
> +RRECOMMENDS = "ca-certificates"

NAK, that should be RRECOMMENDS_${PN}, you can catch such errors by doing:

bitbake -b foo.bb -c recipe_sanity -D

Provided you either use angstrom or inherit recipe_sanity. Kudos to
Chris for creating that class.

regards,

Koen
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.5 (Darwin)

iD8DBQFMqcAqMkyGM64RGpERAjwgAJ0e3s+cAf85EfPL+jBupqrKEjmWsACfeYfC
ZTXF7OZEGctDPRKqMARYj1E=
=0QSX
-----END PGP SIGNATURE-----




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

end of thread, other threads:[~2010-10-04 11:53 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-09-27 19:37 testing branch 2010-09-27 Cliff Brake
2010-09-30  8:08 ` Steffen Sledz
2010-09-30  8:10   ` [PATCH] epiphany-2.30.2: unbreak build by disabling CA files Steffen Sledz
2010-09-30 14:56     ` Paul Menzel
2010-09-30 15:00       ` Steffen Sledz
2010-10-01 16:05     ` Steffen Sledz
2010-10-01 16:26       ` Khem Raj
2010-10-01 22:11         ` Paul Menzel
2010-10-01 23:13           ` Khem Raj
2010-10-01 23:14             ` Khem Raj
2010-10-04  7:10               ` [PATCH v2] " Steffen Sledz
2010-10-04 10:50                 ` [PATCH v3] epiphany-2.30.2: unbreak build by adding ca-certificates dependencies Steffen Sledz
2010-10-04 10:51                   ` Steffen Sledz
2010-10-04 11:53                   ` Koen Kooi

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.