All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 01/11] parted: Added parted-native
@ 2010-11-06 16:31 Camille Moncelier
  2010-11-06 21:48 ` Khem Raj
  0 siblings, 1 reply; 7+ messages in thread
From: Camille Moncelier @ 2010-11-06 16:31 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Camille Moncelier

Signed-off-by: Camille Moncelier <moncelier@devlife.org>
---
 recipes/parted/parted_2.3.bb |    4 ++++
 1 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/recipes/parted/parted_2.3.bb b/recipes/parted/parted_2.3.bb
index d2ac303..6efb398 100644
--- a/recipes/parted/parted_2.3.bb
+++ b/recipes/parted/parted_2.3.bb
@@ -3,14 +3,18 @@ HOMEPAGE = "http://www.gnu.org/software/parted/parted.html"
 LICENSE = "GPLv3"
 SECTION = "console/tools"
 DEPENDS = "readline util-linux-ng lvm2"
+DEPENDS_virtclass-native = "readline-native util-linux-ng-native"
 
 SRC_URI = "${GNU_MIRROR}/parted/parted-${PV}.tar.gz \
            file://use_llseek_syscall.patch \
           "
            
 EXTRA_OECONF = "--disable-Werror ac_cv_func_calloc_0_nonnull=yes"
+EXTRA_OECONF_virtclass-native = "--disable-device-mapper"
 
 inherit autotools pkgconfig
 
 SRC_URI[md5sum] = "30ceb6df7e8681891e865e2fe5a7903d"
 SRC_URI[sha256sum] = "e81fa140805b5cd029ff6dda5cfa94d223e83ac182ebcae94f841d62ce468829"
+
+BBCLASSEXTEND = "native"
-- 
1.7.3.1




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

* Re: [PATCH 01/11] parted: Added parted-native
  2010-11-06 16:31 [PATCH 01/11] parted: Added parted-native Camille Moncelier
@ 2010-11-06 21:48 ` Khem Raj
  2010-11-06 22:36   ` Camille Moncelier
  2010-11-07  1:20   ` Martin Jansa
  0 siblings, 2 replies; 7+ messages in thread
From: Khem Raj @ 2010-11-06 21:48 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Camille Moncelier

On Sat, Nov 6, 2010 at 9:31 AM, Camille Moncelier <moncelier@devlife.org> wrote:
> Signed-off-by: Camille Moncelier <moncelier@devlife.org>
> ---
>  recipes/parted/parted_2.3.bb |    4 ++++
>  1 files changed, 4 insertions(+), 0 deletions(-)
>
> diff --git a/recipes/parted/parted_2.3.bb b/recipes/parted/parted_2.3.bb
> index d2ac303..6efb398 100644
> --- a/recipes/parted/parted_2.3.bb
> +++ b/recipes/parted/parted_2.3.bb
> @@ -3,14 +3,18 @@ HOMEPAGE = "http://www.gnu.org/software/parted/parted.html"
>  LICENSE = "GPLv3"
>  SECTION = "console/tools"
>  DEPENDS = "readline util-linux-ng lvm2"
> +DEPENDS_virtclass-native = "readline-native util-linux-ng-native"

this should not be needed.

>
>  SRC_URI = "${GNU_MIRROR}/parted/parted-${PV}.tar.gz \
>            file://use_llseek_syscall.patch \
>           "
>
>  EXTRA_OECONF = "--disable-Werror ac_cv_func_calloc_0_nonnull=yes"
> +EXTRA_OECONF_virtclass-native = "--disable-device-mapper"
>
>  inherit autotools pkgconfig
>
>  SRC_URI[md5sum] = "30ceb6df7e8681891e865e2fe5a7903d"
>  SRC_URI[sha256sum] = "e81fa140805b5cd029ff6dda5cfa94d223e83ac182ebcae94f841d62ce468829"
> +
> +BBCLASSEXTEND = "native"
> --
> 1.7.3.1
>
>
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel
>



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

* Re: [PATCH 01/11] parted: Added parted-native
  2010-11-06 21:48 ` Khem Raj
@ 2010-11-06 22:36   ` Camille Moncelier
  2010-11-07  9:57     ` Khem Raj
  2010-11-07  1:20   ` Martin Jansa
  1 sibling, 1 reply; 7+ messages in thread
From: Camille Moncelier @ 2010-11-06 22:36 UTC (permalink / raw)
  To: Khem Raj; +Cc: openembedded-devel

On Sat, Nov 6, 2010 at 10:48 PM, Khem Raj <raj.khem@gmail.com> wrote:
>
>  > diff --git a/recipes/parted/parted_2.3.bb b/recipes/parted/
> parted_2.3.bb
> > index d2ac303..6efb398 100644
> > --- a/recipes/parted/parted_2.3.bb
> > +++ b/recipes/parted/parted_2.3.bb
> > @@ -3,14 +3,18 @@ HOMEPAGE = "
> http://www.gnu.org/software/parted/parted.html"
> >  LICENSE = "GPLv3"
> >  SECTION = "console/tools"
> >  DEPENDS = "readline util-linux-ng lvm2"
> > +DEPENDS_virtclass-native = "readline-native util-linux-ng-native"
>
> this should not be needed.
>

Are you saying this for DEPENDS_virtclass-native are for the whole recipe ?



-- 
Camille Moncelier
http://devlife.org/

If Java had true garbage collection, most programs would
delete themselves upon execution.


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

* Re: [PATCH 01/11] parted: Added parted-native
  2010-11-06 21:48 ` Khem Raj
  2010-11-06 22:36   ` Camille Moncelier
@ 2010-11-07  1:20   ` Martin Jansa
  2010-11-07  7:54     ` Camille Moncelier
  1 sibling, 1 reply; 7+ messages in thread
From: Martin Jansa @ 2010-11-07  1:20 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Camille Moncelier

On Sat, Nov 06, 2010 at 02:48:29PM -0700, Khem Raj wrote:
> On Sat, Nov 6, 2010 at 9:31 AM, Camille Moncelier <moncelier@devlife.org> wrote:
> > Signed-off-by: Camille Moncelier <moncelier@devlife.org>
> > ---
> >  recipes/parted/parted_2.3.bb |    4 ++++
> >  1 files changed, 4 insertions(+), 0 deletions(-)
> >
> > diff --git a/recipes/parted/parted_2.3.bb b/recipes/parted/parted_2.3.bb
> > index d2ac303..6efb398 100644
> > --- a/recipes/parted/parted_2.3.bb
> > +++ b/recipes/parted/parted_2.3.bb
> > @@ -3,14 +3,18 @@ HOMEPAGE = "http://www.gnu.org/software/parted/parted.html"
> >  LICENSE = "GPLv3"
> >  SECTION = "console/tools"
> >  DEPENDS = "readline util-linux-ng lvm2"
> > +DEPENDS_virtclass-native = "readline-native util-linux-ng-native"
> 
> this should not be needed.

should not.. but now it is, because it's broken by autotools/base/vala
bbclass (in this case is maybe even intentional to remove lvm2
dependency?).

http://lists.linuxtogo.org/pipermail/openembedded-devel/2010-October/026188.html
http://lists.linuxtogo.org/pipermail/openembedded-devel/2010-October/026189.html

Regards,
-- 
Martin 'JaMa' Jansa     jabber: Martin.Jansa@gmail.com



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

* Re: [PATCH 01/11] parted: Added parted-native
  2010-11-07  1:20   ` Martin Jansa
@ 2010-11-07  7:54     ` Camille Moncelier
  0 siblings, 0 replies; 7+ messages in thread
From: Camille Moncelier @ 2010-11-07  7:54 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Martin Jansa

On Sun, 7 Nov 2010 02:20:26 +0100
Martin Jansa <martin.jansa@gmail.com> wrote:
> 
> should not.. but now it is, because it's broken by autotools/base/vala
> bbclass (in this case is maybe even intentional to remove lvm2
> dependency?).

It is as lvm2-native doesn't exists, it seemed it didn't made sense,
(at least for me) to provide parted-native with lvm support.
> 
> http://lists.linuxtogo.org/pipermail/openembedded-devel/2010-October/026188.html
> http://lists.linuxtogo.org/pipermail/openembedded-devel/2010-October/026189.html
> 
> Regards,




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

* Re: [PATCH 01/11] parted: Added parted-native
  2010-11-06 22:36   ` Camille Moncelier
@ 2010-11-07  9:57     ` Khem Raj
  2010-11-07 10:18       ` Camille Moncelier
  0 siblings, 1 reply; 7+ messages in thread
From: Khem Raj @ 2010-11-07  9:57 UTC (permalink / raw)
  To: Camille Moncelier; +Cc: openembedded-devel

On Sat, Nov 6, 2010 at 3:36 PM, Camille Moncelier <moncelier@devlife.org> wrote:
> On Sat, Nov 6, 2010 at 10:48 PM, Khem Raj <raj.khem@gmail.com> wrote:
>>
>> > diff --git a/recipes/parted/parted_2.3.bb b/recipes/parted/parted_2.3.bb
>> > index d2ac303..6efb398 100644
>> > --- a/recipes/parted/parted_2.3.bb
>> > +++ b/recipes/parted/parted_2.3.bb
>> > @@ -3,14 +3,18 @@ HOMEPAGE =
>> > "http://www.gnu.org/software/parted/parted.html"
>> >  LICENSE = "GPLv3"
>> >  SECTION = "console/tools"
>> >  DEPENDS = "readline util-linux-ng lvm2"
>> > +DEPENDS_virtclass-native = "readline-native util-linux-ng-native"
>>
>> this should not be needed.
>
> Are you saying this for DEPENDS_virtclass-native are for the whole recipe ?
>

Just  DEPENDS_virtclass-native
other parts look ok
>
> --
> Camille Moncelier
> http://devlife.org/
>
> If Java had true garbage collection, most programs would
> delete themselves upon execution.
>



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

* Re: [PATCH 01/11] parted: Added parted-native
  2010-11-07  9:57     ` Khem Raj
@ 2010-11-07 10:18       ` Camille Moncelier
  0 siblings, 0 replies; 7+ messages in thread
From: Camille Moncelier @ 2010-11-07 10:18 UTC (permalink / raw)
  To: openembedded-devel

On Sun, 7 Nov 2010 01:57:50 -0800
Khem Raj <raj.khem@gmail.com> wrote:

> >
> > Are you saying this for DEPENDS_virtclass-native are for the whole
> > recipe ?
> >
> 
> Just  DEPENDS_virtclass-native
> other parts look ok
> 
So we would need to add a lvm2-native, device-mapper-native etc... No
such a good idea imho...

--
Camille Moncelier
http://devlife.org/



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

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

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-11-06 16:31 [PATCH 01/11] parted: Added parted-native Camille Moncelier
2010-11-06 21:48 ` Khem Raj
2010-11-06 22:36   ` Camille Moncelier
2010-11-07  9:57     ` Khem Raj
2010-11-07 10:18       ` Camille Moncelier
2010-11-07  1:20   ` Martin Jansa
2010-11-07  7:54     ` Camille Moncelier

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.