Openembedded Core Discussions
 help / color / mirror / Atom feed
* Re: [oe-commits] Richard Purdie : meta/classes: Update recrdeptask fields for recursive dependency handling changes in bitbake
       [not found] <20120704134932.B766810217@opal>
@ 2012-07-04 16:26 ` Martin Jansa
  2012-07-04 16:59   ` Richard Purdie
  0 siblings, 1 reply; 2+ messages in thread
From: Martin Jansa @ 2012-07-04 16:26 UTC (permalink / raw)
  To: openembedded-core; +Cc: openembedded-commits

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

On Wed, Jul 04, 2012 at 01:49:32PM +0000, git@git.openembedded.org wrote:
> Module: openembedded-core.git
> Branch: master
> Commit: 8229fb5d7205f5e5b198ab2860fbcc02054476eb
> URL:    http://git.openembedded.org/?p=openembedded-core.git&a=commit;h=8229fb5d7205f5e5b198ab2860fbcc02054476eb
> 
> Author: Richard Purdie <richard.purdie@linuxfoundation.org>
> Date:   Mon Jul  2 12:27:46 2012 +0000
> 
> meta/classes: Update recrdeptask fields for recursive dependency handling changes in bitbake
> 
> This also deletes the buildall task since I seen usecases for it.

Is there a typo in last sentence? :)

I've seen
BB_DEFAULT_TASK = "buildall"
in my local.conf and now it had to go..

Cheers,

> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
> 
> ---
> 
>  meta/classes/distrodata.bbclass    |    8 ++++----
>  meta/classes/recipe_sanity.bbclass |    3 +--
>  meta/classes/utility-tasks.bbclass |   10 ++--------
>  3 files changed, 7 insertions(+), 14 deletions(-)
> 
> diff --git a/meta/classes/distrodata.bbclass b/meta/classes/distrodata.bbclass
> index 5b10eac..7b212c9 100644
> --- a/meta/classes/distrodata.bbclass
> +++ b/meta/classes/distrodata.bbclass
> @@ -177,7 +177,7 @@ python do_distrodata() {
>  }
>  
>  addtask distrodataall after do_distrodata
> -do_distrodataall[recrdeptask] = "do_distrodata"
> +do_distrodataall[recrdeptask] = "do_distrodataall do_distrodata"
>  do_distrodataall[nostamp] = "1"
>  do_distrodataall() {
>  	:
> @@ -634,7 +634,7 @@ python do_checkpkg() {
>  }
>  
>  addtask checkpkgall after do_checkpkg
> -do_checkpkgall[recrdeptask] = "do_checkpkg"
> +do_checkpkgall[recrdeptask] = "do_checkpkgall do_checkpkg"
>  do_checkpkgall[nostamp] = "1"
>  do_checkpkgall() {
>  	:
> @@ -677,7 +677,7 @@ python do_distro_check() {
>  }
>  
>  addtask distro_checkall after do_distro_check
> -do_distro_checkall[recrdeptask] = "do_distro_check"
> +do_distro_checkall[recrdeptask] = "do_distro_checkall do_distro_check"
>  do_distro_checkall[nostamp] = "1"
>  do_distro_checkall() {
>  	:
> @@ -727,7 +727,7 @@ python do_checklicense() {
>  }
>  
>  addtask checklicenseall after do_checklicense
> -do_checklicenseall[recrdeptask] = "do_checklicense"
> +do_checklicenseall[recrdeptask] = "do_checklicenseall do_checklicense"
>  do_checklicenseall[nostamp] = "1"
>  do_checklicenseall() {
>  	:
> diff --git a/meta/classes/recipe_sanity.bbclass b/meta/classes/recipe_sanity.bbclass
> index da8ad76..61e07bf 100644
> --- a/meta/classes/recipe_sanity.bbclass
> +++ b/meta/classes/recipe_sanity.bbclass
> @@ -136,11 +136,10 @@ python do_recipe_sanity () {
>      bad_runtime_vars(cfgdata, d)
>  }
>  do_recipe_sanity[nostamp] = "1"
> -#do_recipe_sanity[recrdeptask] = "do_recipe_sanity"
>  addtask recipe_sanity
>  
>  do_recipe_sanity_all[nostamp] = "1"
> -do_recipe_sanity_all[recrdeptask] = "do_recipe_sanity"
> +do_recipe_sanity_all[recrdeptask] = "do_recipe_sanity_all do_recipe_sanity"
>  do_recipe_sanity_all () {
>      :
>  }
> diff --git a/meta/classes/utility-tasks.bbclass b/meta/classes/utility-tasks.bbclass
> index cbb000a..6c2232e 100644
> --- a/meta/classes/utility-tasks.bbclass
> +++ b/meta/classes/utility-tasks.bbclass
> @@ -46,20 +46,14 @@ python do_checkuri() {
>  }
>  
>  addtask checkuriall after do_checkuri
> -do_checkuriall[recrdeptask] = "do_checkuri"
> +do_checkuriall[recrdeptask] = "do_checkuriall do_checkuri"
>  do_checkuriall[nostamp] = "1"
>  do_checkuriall() {
>  	:
>  }
>  
>  addtask fetchall after do_fetch
> -do_fetchall[recrdeptask] = "do_fetch"
> +do_fetchall[recrdeptask] = "do_fetchall do_fetch"
>  do_fetchall() {
>  	:
>  }
> -
> -addtask buildall after do_build
> -do_buildall[recrdeptask] = "do_build"
> -do_buildall() {
> -	:
> -}
> 
> 
> _______________________________________________
> Openembedded-commits mailing list
> Openembedded-commits@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-commits

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

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

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

* Re: [oe-commits] Richard Purdie : meta/classes: Update recrdeptask fields for recursive dependency handling changes in bitbake
  2012-07-04 16:26 ` [oe-commits] Richard Purdie : meta/classes: Update recrdeptask fields for recursive dependency handling changes in bitbake Martin Jansa
@ 2012-07-04 16:59   ` Richard Purdie
  0 siblings, 0 replies; 2+ messages in thread
From: Richard Purdie @ 2012-07-04 16:59 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer; +Cc: openembedded-commits

On Wed, 2012-07-04 at 18:26 +0200, Martin Jansa wrote:
> On Wed, Jul 04, 2012 at 01:49:32PM +0000, git@git.openembedded.org wrote:
> > Module: openembedded-core.git
> > Branch: master
> > Commit: 8229fb5d7205f5e5b198ab2860fbcc02054476eb
> > URL:    http://git.openembedded.org/?p=openembedded-core.git&a=commit;h=8229fb5d7205f5e5b198ab2860fbcc02054476eb
> > 
> > Author: Richard Purdie <richard.purdie@linuxfoundation.org>
> > Date:   Mon Jul  2 12:27:46 2012 +0000
> > 
> > meta/classes: Update recrdeptask fields for recursive dependency handling changes in bitbake
> > 
> > This also deletes the buildall task since I seen usecases for it.
> 
> Is there a typo in last sentence? :)
> 
> I've seen
> BB_DEFAULT_TASK = "buildall"
> in my local.conf and now it had to go..

Yes, it is a typo, sorry.

If someone can show me a good usecase for it we can add it back but I'm
not seeing one right now...

Cheers,

Richard




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

end of thread, other threads:[~2012-07-04 17:11 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <20120704134932.B766810217@opal>
2012-07-04 16:26 ` [oe-commits] Richard Purdie : meta/classes: Update recrdeptask fields for recursive dependency handling changes in bitbake Martin Jansa
2012-07-04 16:59   ` Richard Purdie

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox