* [PATCH 1/3] librsvg: --disable-gnome-vfs doesn't exist anymore, remove
@ 2012-09-13 10:04 Ross Burton
2012-09-13 10:04 ` [PATCH 2/3] librsvg: remove spurious popt dependency Ross Burton
` (2 more replies)
0 siblings, 3 replies; 6+ messages in thread
From: Ross Burton @ 2012-09-13 10:04 UTC (permalink / raw)
To: openembedded-core
Signed-off-by: Ross Burton <ross.burton@intel.com>
---
meta/recipes-gnome/librsvg/librsvg_2.32.1.bb | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/meta/recipes-gnome/librsvg/librsvg_2.32.1.bb b/meta/recipes-gnome/librsvg/librsvg_2.32.1.bb
index 6eba686..364f6f2 100644
--- a/meta/recipes-gnome/librsvg/librsvg_2.32.1.bb
+++ b/meta/recipes-gnome/librsvg/librsvg_2.32.1.bb
@@ -11,11 +11,11 @@ DEPENDS = "gtk+ libcroco cairo libxml2 popt"
DEPENDS_virtclass-native = "cairo-native pango-native gdk-pixbuf-native"
BBCLASSEXTEND = "native"
-PR = "r7"
+PR = "r8"
inherit autotools pkgconfig gnome gtk-doc
-EXTRA_OECONF = "--disable-mozilla-plugin --without-svgz --without-croco --disable-gnome-vfs"
+EXTRA_OECONF = "--disable-mozilla-plugin --without-svgz --without-croco"
SRC_URI += "file://doc_Makefile.patch"
--
1.7.10
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [PATCH 2/3] librsvg: remove spurious popt dependency
2012-09-13 10:04 [PATCH 1/3] librsvg: --disable-gnome-vfs doesn't exist anymore, remove Ross Burton
@ 2012-09-13 10:04 ` Ross Burton
2012-09-13 10:04 ` [PATCH 3/3] librsvg: make the libcroco dependency a PACKAGECONFIG option Ross Burton
2012-09-14 15:58 ` [PATCH 1/3] librsvg: --disable-gnome-vfs doesn't exist anymore, remove Saul Wold
2 siblings, 0 replies; 6+ messages in thread
From: Ross Burton @ 2012-09-13 10:04 UTC (permalink / raw)
To: openembedded-core
Signed-off-by: Ross Burton <ross.burton@intel.com>
---
meta/recipes-gnome/librsvg/librsvg_2.32.1.bb | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/meta/recipes-gnome/librsvg/librsvg_2.32.1.bb b/meta/recipes-gnome/librsvg/librsvg_2.32.1.bb
index 364f6f2..6bb5fe2 100644
--- a/meta/recipes-gnome/librsvg/librsvg_2.32.1.bb
+++ b/meta/recipes-gnome/librsvg/librsvg_2.32.1.bb
@@ -7,11 +7,11 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f \
file://rsvg.h;beginline=3;endline=24;md5=20b4113c4909bbf0d67e006778302bc6"
SECTION = "x11/utils"
-DEPENDS = "gtk+ libcroco cairo libxml2 popt"
+DEPENDS = "gtk+ libcroco cairo libxml2"
DEPENDS_virtclass-native = "cairo-native pango-native gdk-pixbuf-native"
BBCLASSEXTEND = "native"
-PR = "r8"
+PR = "r9"
inherit autotools pkgconfig gnome gtk-doc
--
1.7.10
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [PATCH 3/3] librsvg: make the libcroco dependency a PACKAGECONFIG option
2012-09-13 10:04 [PATCH 1/3] librsvg: --disable-gnome-vfs doesn't exist anymore, remove Ross Burton
2012-09-13 10:04 ` [PATCH 2/3] librsvg: remove spurious popt dependency Ross Burton
@ 2012-09-13 10:04 ` Ross Burton
2012-09-14 6:25 ` Saul Wold
2012-09-14 15:58 ` [PATCH 1/3] librsvg: --disable-gnome-vfs doesn't exist anymore, remove Saul Wold
2 siblings, 1 reply; 6+ messages in thread
From: Ross Burton @ 2012-09-13 10:04 UTC (permalink / raw)
To: openembedded-core
Default to enabling it as we were build-depending on it already. If a user
needs the disk space and the limitations imposed by not using libcroco are
acceptable they can override this.
Signed-off-by: Ross Burton <ross.burton@intel.com>
---
meta/recipes-gnome/librsvg/librsvg_2.32.1.bb | 9 ++++++---
1 file changed, 6 insertions(+), 3 deletions(-)
diff --git a/meta/recipes-gnome/librsvg/librsvg_2.32.1.bb b/meta/recipes-gnome/librsvg/librsvg_2.32.1.bb
index 6bb5fe2..012b3ba 100644
--- a/meta/recipes-gnome/librsvg/librsvg_2.32.1.bb
+++ b/meta/recipes-gnome/librsvg/librsvg_2.32.1.bb
@@ -7,15 +7,18 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f \
file://rsvg.h;beginline=3;endline=24;md5=20b4113c4909bbf0d67e006778302bc6"
SECTION = "x11/utils"
-DEPENDS = "gtk+ libcroco cairo libxml2"
+DEPENDS = "gtk+ cairo libxml2"
DEPENDS_virtclass-native = "cairo-native pango-native gdk-pixbuf-native"
BBCLASSEXTEND = "native"
-PR = "r9"
+PR = "r10"
inherit autotools pkgconfig gnome gtk-doc
-EXTRA_OECONF = "--disable-mozilla-plugin --without-svgz --without-croco"
+EXTRA_OECONF = "--disable-mozilla-plugin --without-svgz"
+
+PACKAGECONFIG ??= "croco"
+PACKAGECONFIG[croco] = "--with-croco,--without-croco,libcroco"
SRC_URI += "file://doc_Makefile.patch"
--
1.7.10
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [PATCH 3/3] librsvg: make the libcroco dependency a PACKAGECONFIG option
2012-09-13 10:04 ` [PATCH 3/3] librsvg: make the libcroco dependency a PACKAGECONFIG option Ross Burton
@ 2012-09-14 6:25 ` Saul Wold
2012-09-14 8:56 ` Richard Purdie
0 siblings, 1 reply; 6+ messages in thread
From: Saul Wold @ 2012-09-14 6:25 UTC (permalink / raw)
To: Ross Burton; +Cc: openembedded-core
On 09/13/2012 03:04 AM, Ross Burton wrote:
> Default to enabling it as we were build-depending on it already. If a user
> needs the disk space and the limitations imposed by not using libcroco are
> acceptable they can override this.
>
> Signed-off-by: Ross Burton <ross.burton@intel.com>
> ---
> meta/recipes-gnome/librsvg/librsvg_2.32.1.bb | 9 ++++++---
> 1 file changed, 6 insertions(+), 3 deletions(-)
>
> diff --git a/meta/recipes-gnome/librsvg/librsvg_2.32.1.bb b/meta/recipes-gnome/librsvg/librsvg_2.32.1.bb
> index 6bb5fe2..012b3ba 100644
> --- a/meta/recipes-gnome/librsvg/librsvg_2.32.1.bb
> +++ b/meta/recipes-gnome/librsvg/librsvg_2.32.1.bb
> @@ -7,15 +7,18 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f \
> file://rsvg.h;beginline=3;endline=24;md5=20b4113c4909bbf0d67e006778302bc6"
>
> SECTION = "x11/utils"
> -DEPENDS = "gtk+ libcroco cairo libxml2"
> +DEPENDS = "gtk+ cairo libxml2"
> DEPENDS_virtclass-native = "cairo-native pango-native gdk-pixbuf-native"
> BBCLASSEXTEND = "native"
>
> -PR = "r9"
> +PR = "r10"
>
> inherit autotools pkgconfig gnome gtk-doc
>
> -EXTRA_OECONF = "--disable-mozilla-plugin --without-svgz --without-croco"
> +EXTRA_OECONF = "--disable-mozilla-plugin --without-svgz"
> +
> +PACKAGECONFIG ??= "croco"
> +PACKAGECONFIG[croco] = "--with-croco,--without-croco,libcroco"
>
This change seems to introduce a new native dependency on libcroco-native.
ERROR: Nothing PROVIDES 'libcroco-native' (but
virtual:native:/srv/home/pokybuild/yocto-autobuilder/yocto-slave/build-appliance/build/meta/recipes-gnome/librsvg/librsvg_2.32.1.bb
DEPENDS on or otherwise requires it)
This was during a bitbake -c fetch universe
Sau!
> SRC_URI += "file://doc_Makefile.patch"
>
>
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH 3/3] librsvg: make the libcroco dependency a PACKAGECONFIG option
2012-09-14 6:25 ` Saul Wold
@ 2012-09-14 8:56 ` Richard Purdie
0 siblings, 0 replies; 6+ messages in thread
From: Richard Purdie @ 2012-09-14 8:56 UTC (permalink / raw)
To: Saul Wold; +Cc: openembedded-core
On Thu, 2012-09-13 at 23:25 -0700, Saul Wold wrote:
> On 09/13/2012 03:04 AM, Ross Burton wrote:
> > Default to enabling it as we were build-depending on it already. If a user
> > needs the disk space and the limitations imposed by not using libcroco are
> > acceptable they can override this.
> >
> > Signed-off-by: Ross Burton <ross.burton@intel.com>
> > ---
> > meta/recipes-gnome/librsvg/librsvg_2.32.1.bb | 9 ++++++---
> > 1 file changed, 6 insertions(+), 3 deletions(-)
> >
> > diff --git a/meta/recipes-gnome/librsvg/librsvg_2.32.1.bb b/meta/recipes-gnome/librsvg/librsvg_2.32.1.bb
> > index 6bb5fe2..012b3ba 100644
> > --- a/meta/recipes-gnome/librsvg/librsvg_2.32.1.bb
> > +++ b/meta/recipes-gnome/librsvg/librsvg_2.32.1.bb
> > @@ -7,15 +7,18 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f \
> > file://rsvg.h;beginline=3;endline=24;md5=20b4113c4909bbf0d67e006778302bc6"
> >
> > SECTION = "x11/utils"
> > -DEPENDS = "gtk+ libcroco cairo libxml2"
> > +DEPENDS = "gtk+ cairo libxml2"
> > DEPENDS_virtclass-native = "cairo-native pango-native gdk-pixbuf-native"
> > BBCLASSEXTEND = "native"
> >
> > -PR = "r9"
> > +PR = "r10"
> >
> > inherit autotools pkgconfig gnome gtk-doc
> >
> > -EXTRA_OECONF = "--disable-mozilla-plugin --without-svgz --without-croco"
> > +EXTRA_OECONF = "--disable-mozilla-plugin --without-svgz"
> > +
> > +PACKAGECONFIG ??= "croco"
Needs a
+PACKAGECONFIG_class-native ??= ""
> > +PACKAGECONFIG[croco] = "--with-croco,--without-croco,libcroco"
> >
> This change seems to introduce a new native dependency on libcroco-native.
>
> ERROR: Nothing PROVIDES 'libcroco-native' (but
> virtual:native:/srv/home/pokybuild/yocto-autobuilder/yocto-slave/build-appliance/build/meta/recipes-gnome/librsvg/librsvg_2.32.1.bb
> DEPENDS on or otherwise requires it)
>
> This was during a bitbake -c fetch universe
Cheers,
Richard
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH 1/3] librsvg: --disable-gnome-vfs doesn't exist anymore, remove
2012-09-13 10:04 [PATCH 1/3] librsvg: --disable-gnome-vfs doesn't exist anymore, remove Ross Burton
2012-09-13 10:04 ` [PATCH 2/3] librsvg: remove spurious popt dependency Ross Burton
2012-09-13 10:04 ` [PATCH 3/3] librsvg: make the libcroco dependency a PACKAGECONFIG option Ross Burton
@ 2012-09-14 15:58 ` Saul Wold
2 siblings, 0 replies; 6+ messages in thread
From: Saul Wold @ 2012-09-14 15:58 UTC (permalink / raw)
To: Ross Burton; +Cc: openembedded-core
On 09/13/2012 03:04 AM, Ross Burton wrote:
> Signed-off-by: Ross Burton <ross.burton@intel.com>
> ---
> meta/recipes-gnome/librsvg/librsvg_2.32.1.bb | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/meta/recipes-gnome/librsvg/librsvg_2.32.1.bb b/meta/recipes-gnome/librsvg/librsvg_2.32.1.bb
> index 6eba686..364f6f2 100644
> --- a/meta/recipes-gnome/librsvg/librsvg_2.32.1.bb
> +++ b/meta/recipes-gnome/librsvg/librsvg_2.32.1.bb
> @@ -11,11 +11,11 @@ DEPENDS = "gtk+ libcroco cairo libxml2 popt"
> DEPENDS_virtclass-native = "cairo-native pango-native gdk-pixbuf-native"
> BBCLASSEXTEND = "native"
>
> -PR = "r7"
> +PR = "r8"
>
> inherit autotools pkgconfig gnome gtk-doc
>
> -EXTRA_OECONF = "--disable-mozilla-plugin --without-svgz --without-croco --disable-gnome-vfs"
> +EXTRA_OECONF = "--disable-mozilla-plugin --without-svgz --without-croco"
>
> SRC_URI += "file://doc_Makefile.patch"
>
>
Merged 2 of the 3 into OE-Core
Thanks
Sau!
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2012-09-14 16:11 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-09-13 10:04 [PATCH 1/3] librsvg: --disable-gnome-vfs doesn't exist anymore, remove Ross Burton
2012-09-13 10:04 ` [PATCH 2/3] librsvg: remove spurious popt dependency Ross Burton
2012-09-13 10:04 ` [PATCH 3/3] librsvg: make the libcroco dependency a PACKAGECONFIG option Ross Burton
2012-09-14 6:25 ` Saul Wold
2012-09-14 8:56 ` Richard Purdie
2012-09-14 15:58 ` [PATCH 1/3] librsvg: --disable-gnome-vfs doesn't exist anymore, remove Saul Wold
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox