* [meta-multimedia][PATCH] gupnp: remove dependency on gnome-icon-theme
@ 2013-04-10 14:37 Nicolas Dechesne
2013-04-10 14:54 ` Burton, Ross
0 siblings, 1 reply; 5+ messages in thread
From: Nicolas Dechesne @ 2013-04-10 14:37 UTC (permalink / raw)
To: openembedded-devel; +Cc: Nicolas Dechesne
As discussed in [1], let's remove the dependency on gnome-icon-theme,
since it's not required, and it brings additional unwanted dependency,
such as the whole gtk+...
[1] http://article.gmane.org/gmane.comp.handhelds.openembedded/57483
It is build-tested with
- core-image-minimal
- IMAGE_INSTALL += 'gupnp'
- directfb in DISTRO_FEATURES
The build was failing before (GTK failed to build with directfb, which
is expected).
Signed-off-by: Nicolas Dechesne <ndec@linaro.org>
---
meta-multimedia/recipes-connectivity/gupnp/gupnp.inc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/meta-multimedia/recipes-connectivity/gupnp/gupnp.inc b/meta-multimedia/recipes-connectivity/gupnp/gupnp.inc
index 81db3ea..f793236 100644
--- a/meta-multimedia/recipes-connectivity/gupnp/gupnp.inc
+++ b/meta-multimedia/recipes-connectivity/gupnp/gupnp.inc
@@ -2,7 +2,7 @@ SUMMARY = "UPnP framework"
DESCRIPTION = "GUPnP is an elegant, object-oriented open source framework for creating UPnP devices and control points, written in C using GObject and libsoup. The GUPnP API is intended to be easy to use, efficient and flexible. It provides the same set of features as libupnp, but shields the developer from most of UPnP's internals."
LICENSE = "LGPLv2+"
-DEPENDS = "e2fsprogs gssdp libsoup-2.4 libxml2 gnome-icon-theme gobject-introspection-stub"
+DEPENDS = "e2fsprogs gssdp libsoup-2.4 libxml2 gobject-introspection-stub"
require no-vala.inc
--
1.8.1.2
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [meta-multimedia][PATCH] gupnp: remove dependency on gnome-icon-theme
2013-04-10 14:37 [meta-multimedia][PATCH] gupnp: remove dependency on gnome-icon-theme Nicolas Dechesne
@ 2013-04-10 14:54 ` Burton, Ross
2013-04-10 15:14 ` Nicolas Dechesne
0 siblings, 1 reply; 5+ messages in thread
From: Burton, Ross @ 2013-04-10 14:54 UTC (permalink / raw)
To: openembedded-devel
On 10 April 2013 15:37, Nicolas Dechesne <ndec@linaro.org> wrote:
> As discussed in [1], let's remove the dependency on gnome-icon-theme,
> since it's not required, and it brings additional unwanted dependency,
> such as the whole gtk+...
>
> [1] http://article.gmane.org/gmane.comp.handhelds.openembedded/57483
>
> It is build-tested with
> - core-image-minimal
> - IMAGE_INSTALL += 'gupnp'
> - directfb in DISTRO_FEATURES
>
> The build was failing before (GTK failed to build with directfb, which
> is expected).
>
> Signed-off-by: Nicolas Dechesne <ndec@linaro.org>
You'll want to bump PR (ideally adding some form of pr in the .inc at
the same time).
Ross
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [meta-multimedia][PATCH] gupnp: remove dependency on gnome-icon-theme
2013-04-10 14:54 ` Burton, Ross
@ 2013-04-10 15:14 ` Nicolas Dechesne
2013-04-10 15:37 ` Burton, Ross
0 siblings, 1 reply; 5+ messages in thread
From: Nicolas Dechesne @ 2013-04-10 15:14 UTC (permalink / raw)
To: Burton, Ross; +Cc: openembedded-devel
On Wed, Apr 10, 2013 at 4:54 PM, Burton, Ross <ross.burton@intel.com> wrote:
> You'll want to bump PR (ideally adding some form of pr in the .inc at
> the same time).
ouch.. indeed.
do you mean something along these lines:
diff --git a/meta-multimedia/recipes-connectivity/gupnp/gupnp.inc
b/meta-multimedia/recipes-connectivity/gupnp/gupnp.inc
index f793236..f7c382a 100644
--- a/meta-multimedia/recipes-connectivity/gupnp/gupnp.inc
+++ b/meta-multimedia/recipes-connectivity/gupnp/gupnp.inc
@@ -2,6 +2,8 @@ SUMMARY = "UPnP framework"
DESCRIPTION = "GUPnP is an elegant, object-oriented open source
framework for creating UPnP devices and control points, written in C
using G
LICENSE = "LGPLv2+"
+INC_PR = "r0"
+
DEPENDS = "e2fsprogs gssdp libsoup-2.4 libxml2 gobject-introspection-stub"
require no-vala.inc
diff --git a/meta-multimedia/recipes-connectivity/gupnp/gupnp_0.18.4.bb
b/meta-multimedia/recipes-connectivity/gupnp/gupnp_0.18.4.bb
index 4fb1d05..5e6ea35 100644
--- a/meta-multimedia/recipes-connectivity/gupnp/gupnp_0.18.4.bb
+++ b/meta-multimedia/recipes-connectivity/gupnp/gupnp_0.18.4.bb
@@ -1,5 +1,7 @@
require gupnp.inc
+PR = "${INC_PR}.0"
+
SRC_URI = "http://download.gnome.org/sources/${BPN}/0.18/${BPN}-${PV}.tar.xz"
SRC_URI[md5sum] = "0e15fa26be7b1a0255e6dec07c285527"
SRC_URI[sha256sum] =
"6b437d5711b212292c6080626b97480268310da636a6cf937ad6119291af78a1"
then, what I could do is a patch serie where patch 1/2 introduces the
INC_PR with "r0", and patch 2/2 fixes gupnp and increments INC_PR to
'r1'.
also, is that worthwhile to add the INC_PR in all other recipes in the
gupnp folder ? or just in gupnp recipe for now?
^ permalink raw reply related [flat|nested] 5+ messages in thread* Re: [meta-multimedia][PATCH] gupnp: remove dependency on gnome-icon-theme
2013-04-10 15:14 ` Nicolas Dechesne
@ 2013-04-10 15:37 ` Burton, Ross
2013-04-10 15:43 ` Martin Jansa
0 siblings, 1 reply; 5+ messages in thread
From: Burton, Ross @ 2013-04-10 15:37 UTC (permalink / raw)
To: Nicolas Dechesne; +Cc: openembedded-devel
Hi Nicolas,
On 10 April 2013 16:14, Nicolas Dechesne <ndec@linaro.org> wrote:
> then, what I could do is a patch serie where patch 1/2 introduces the
> INC_PR with "r0", and patch 2/2 fixes gupnp and increments INC_PR to
> 'r1'.
Exactly that.
> also, is that worthwhile to add the INC_PR in all other recipes in the
> gupnp folder ? or just in gupnp recipe for now?
Do them all, might as well.
Ross
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [meta-multimedia][PATCH] gupnp: remove dependency on gnome-icon-theme
2013-04-10 15:37 ` Burton, Ross
@ 2013-04-10 15:43 ` Martin Jansa
0 siblings, 0 replies; 5+ messages in thread
From: Martin Jansa @ 2013-04-10 15:43 UTC (permalink / raw)
To: openembedded-devel
[-- Attachment #1: Type: text/plain, Size: 708 bytes --]
On Wed, Apr 10, 2013 at 04:37:11PM +0100, Burton, Ross wrote:
> Hi Nicolas,
>
> On 10 April 2013 16:14, Nicolas Dechesne <ndec@linaro.org> wrote:
> > then, what I could do is a patch serie where patch 1/2 introduces the
> > INC_PR with "r0", and patch 2/2 fixes gupnp and increments INC_PR to
> > 'r1'.
>
> Exactly that.
>
> > also, is that worthwhile to add the INC_PR in all other recipes in the
> > gupnp folder ? or just in gupnp recipe for now?
>
> Do them all, might as well.
Is it important now, when PR bumps are not strictly required?
There were more dangerous changes without PR bumps included in last
months.
--
Martin 'JaMa' Jansa jabber: Martin.Jansa@gmail.com
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 205 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2013-04-10 16:00 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-04-10 14:37 [meta-multimedia][PATCH] gupnp: remove dependency on gnome-icon-theme Nicolas Dechesne
2013-04-10 14:54 ` Burton, Ross
2013-04-10 15:14 ` Nicolas Dechesne
2013-04-10 15:37 ` Burton, Ross
2013-04-10 15:43 ` Martin Jansa
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.