All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-handheld][PATCH] encdec-updater: remove COMPATIBLE_MACHINE
@ 2014-10-05 21:19 Andrea Adami
  2014-10-05 21:43 ` Martin Jansa
  0 siblings, 1 reply; 3+ messages in thread
From: Andrea Adami @ 2014-10-05 21:19 UTC (permalink / raw)
  To: openembedded-devel

The recipe is using BBCLASSEXTEND = "native" and as it is not buildable:

NOTE: Resolving any missing task queue dependencies
ERROR: Nothing PROVIDES 'encdec-updater-native'
 (but /oe/meta-handheld/recipes-bsp/zaurus-utils/zaurus-updater.bb
  DEPENDS on or otherwise requires it)
ERROR: encdec-updater-native was skipped: incompatible with machine poodle
 (not in COMPATIBLE_MACHINE)
ERROR: Required build target 'zaurus-installer' has no buildable providers.
Missing or unbuildable dependency chain was:
 ['zaurus-installer', 'zaurus-updater', 'encdec-updater-native']

Remove COMPAIBLE_MACHINE alltogether.
While there, remove PR remnant.

Signed-off-by: Andrea Adami <andrea.adami@gmail.com>
---
 recipes-bsp/zaurus-utils/encdec-updater.bb | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/recipes-bsp/zaurus-utils/encdec-updater.bb b/recipes-bsp/zaurus-utils/encdec-updater.bb
index 1ee2e77..138cd26 100644
--- a/recipes-bsp/zaurus-utils/encdec-updater.bb
+++ b/recipes-bsp/zaurus-utils/encdec-updater.bb
@@ -2,7 +2,6 @@ DESCRIPTION = "A tool to encode and decode the Sharp Zaurus updater.sh script"
 SECTION = "console/utils"
 LICENSE = "GPLv2+"
 LIC_FILES_CHKSUM = "file://encsh.c;endline=15;md5=d73360c98c2885be19245f2a8c728f38"
-PR = "r2"
 
 SRC_URI = "http://distro.ibiblio.org/pub/linux/distributions/pdaxrom/download/1.1.0beta4/src/survive-1.1.0.tar.bz2"
 
@@ -21,6 +20,3 @@ do_install() {
 }
 
 BBCLASSEXTEND = "native"
-
-COMPATIBLE_MACHINE = "(poodle|c7x0|spitz|akita|tosa)"
-
-- 
1.9.1



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

* Re: [meta-handheld][PATCH] encdec-updater: remove COMPATIBLE_MACHINE
  2014-10-05 21:19 [meta-handheld][PATCH] encdec-updater: remove COMPATIBLE_MACHINE Andrea Adami
@ 2014-10-05 21:43 ` Martin Jansa
  2014-10-05 21:53   ` Andrea Adami
  0 siblings, 1 reply; 3+ messages in thread
From: Martin Jansa @ 2014-10-05 21:43 UTC (permalink / raw)
  To: openembedded-devel

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

On Sun, Oct 05, 2014 at 11:19:53PM +0200, Andrea Adami wrote:
> The recipe is using BBCLASSEXTEND = "native" and as it is not buildable:
> 
> NOTE: Resolving any missing task queue dependencies
> ERROR: Nothing PROVIDES 'encdec-updater-native'
>  (but /oe/meta-handheld/recipes-bsp/zaurus-utils/zaurus-updater.bb
>   DEPENDS on or otherwise requires it)
> ERROR: encdec-updater-native was skipped: incompatible with machine poodle
>  (not in COMPATIBLE_MACHINE)
> ERROR: Required build target 'zaurus-installer' has no buildable providers.
> Missing or unbuildable dependency chain was:
>  ['zaurus-installer', 'zaurus-updater', 'encdec-updater-native']
> 
> Remove COMPAIBLE_MACHINE alltogether.
> While there, remove PR remnant.
> 
> Signed-off-by: Andrea Adami <andrea.adami@gmail.com>
> ---
>  recipes-bsp/zaurus-utils/encdec-updater.bb | 4 ----
>  1 file changed, 4 deletions(-)
> 
> diff --git a/recipes-bsp/zaurus-utils/encdec-updater.bb b/recipes-bsp/zaurus-utils/encdec-updater.bb
> index 1ee2e77..138cd26 100644
> --- a/recipes-bsp/zaurus-utils/encdec-updater.bb
> +++ b/recipes-bsp/zaurus-utils/encdec-updater.bb
> @@ -2,7 +2,6 @@ DESCRIPTION = "A tool to encode and decode the Sharp Zaurus updater.sh script"
>  SECTION = "console/utils"
>  LICENSE = "GPLv2+"
>  LIC_FILES_CHKSUM = "file://encsh.c;endline=15;md5=d73360c98c2885be19245f2a8c728f38"
> -PR = "r2"

That would make the version going backwards.

>  SRC_URI = "http://distro.ibiblio.org/pub/linux/distributions/pdaxrom/download/1.1.0beta4/src/survive-1.1.0.tar.bz2"
>  
> @@ -21,6 +20,3 @@ do_install() {
>  }
>  
>  BBCLASSEXTEND = "native"
> -
> -COMPATIBLE_MACHINE = "(poodle|c7x0|spitz|akita|tosa)"

Why don't you keep it with _class-target override?

> -- 
> 1.9.1
> 
> -- 
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-devel

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

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 188 bytes --]

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

* Re: [meta-handheld][PATCH] encdec-updater: remove COMPATIBLE_MACHINE
  2014-10-05 21:43 ` Martin Jansa
@ 2014-10-05 21:53   ` Andrea Adami
  0 siblings, 0 replies; 3+ messages in thread
From: Andrea Adami @ 2014-10-05 21:53 UTC (permalink / raw)
  To: openembeded-devel

On Sun, Oct 5, 2014 at 11:43 PM, Martin Jansa <martin.jansa@gmail.com>
wrote:

> On Sun, Oct 05, 2014 at 11:19:53PM +0200, Andrea Adami wrote:
> > The recipe is using BBCLASSEXTEND = "native" and as it is not buildable:
> >
> > NOTE: Resolving any missing task queue dependencies
> > ERROR: Nothing PROVIDES 'encdec-updater-native'
> >  (but /oe/meta-handheld/recipes-bsp/zaurus-utils/zaurus-updater.bb
> >   DEPENDS on or otherwise requires it)
> > ERROR: encdec-updater-native was skipped: incompatible with machine
> poodle
> >  (not in COMPATIBLE_MACHINE)
> > ERROR: Required build target 'zaurus-installer' has no buildable
> providers.
> > Missing or unbuildable dependency chain was:
> >  ['zaurus-installer', 'zaurus-updater', 'encdec-updater-native']
> >
> > Remove COMPAIBLE_MACHINE alltogether.
> > While there, remove PR remnant.
> >
> > Signed-off-by: Andrea Adami <andrea.adami@gmail.com>
> > ---
> >  recipes-bsp/zaurus-utils/encdec-updater.bb | 4 ----
> >  1 file changed, 4 deletions(-)
> >
> > diff --git a/recipes-bsp/zaurus-utils/encdec-updater.bb
> b/recipes-bsp/zaurus-utils/encdec-updater.bb
> > index 1ee2e77..138cd26 100644
> > --- a/recipes-bsp/zaurus-utils/encdec-updater.bb
> > +++ b/recipes-bsp/zaurus-utils/encdec-updater.bb
> > @@ -2,7 +2,6 @@ DESCRIPTION = "A tool to encode and decode the Sharp
> Zaurus updater.sh script"
> >  SECTION = "console/utils"
> >  LICENSE = "GPLv2+"
> >  LIC_FILES_CHKSUM =
> "file://encsh.c;endline=15;md5=d73360c98c2885be19245f2a8c728f38"
> > -PR = "r2"
>
> That would make the version going backwards.
>
> There are absolutely no changes


>  SRC_URI = "
> http://distro.ibiblio.org/pub/linux/distributions/pdaxrom/download/1.1.0beta4/src/survive-1.1.0.tar.bz2
> "
> >
> > @@ -21,6 +20,3 @@ do_install() {
> >  }
> >
> >  BBCLASSEXTEND = "native"
> > -
> > -COMPATIBLE_MACHINE = "(poodle|c7x0|spitz|akita|tosa)"
>
> Why don't you keep it with _class-target override?
>
>
I first did that adding COMPATIBLE_MACHINE_class-native = "" or the
oppopsite COMPATIBLE_MACHINE_class-target =
"(poodle|c7x0|spitz|akita|tosa)" but finally the updater itself is not
machine-specific and can be built for any target (using it on non-Zaurus
would be bizarre, though).

So I decided to remove it alltogether for the sake of simplicity.

What's interesting is why did error was not shown before...this is one of
OE's oldest recipes...

Cheers

Andrea


> > --
> > 1.9.1
> >
> > --
> > _______________________________________________
> > Openembedded-devel mailing list
> > Openembedded-devel@lists.openembedded.org
> > http://lists.openembedded.org/mailman/listinfo/openembedded-devel
>
> --
> Martin 'JaMa' Jansa     jabber: Martin.Jansa@gmail.com
>
> --
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-devel
>
>


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

end of thread, other threads:[~2014-10-05 21:53 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-10-05 21:19 [meta-handheld][PATCH] encdec-updater: remove COMPATIBLE_MACHINE Andrea Adami
2014-10-05 21:43 ` Martin Jansa
2014-10-05 21:53   ` Andrea Adami

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.