All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/6] Fixes for toastergui
@ 2015-10-05  9:43 Elliot Smith
  2015-10-05  9:43 ` [PATCH 1/6] event: add new property to BuildBase class Elliot Smith
                   ` (5 more replies)
  0 siblings, 6 replies; 20+ messages in thread
From: Elliot Smith @ 2015-10-05  9:43 UTC (permalink / raw)
  To: bitbake-devel

This patchset fixes creation of Target objects for command line builds
and provides a couple of usability fixes for toastergui module.

The following changes since commit 78b7cfc2d29209354a1ed3a3a787c651efd31f28:

  toaster: test get_alldeps API (2015-10-05 10:37:47 +0100)

are available in the git repository at:

  git://git.yoctoproject.org/poky-contrib elliot/submit/ed/toaster/target-task
  http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=elliot/submit/ed/toaster/target-task

Ed Bartosh (6):
  event: add new property to BuildBase class
  event: add new parameter to Build* event APIs
  toaster: add task to the target_information
  toaster: add get_or_create_targets API
  toaster: ignore ReachableStamps event
  toaster: use meaningful logging levels

 lib/bb/cooker.py             |  8 ++++----
 lib/bb/event.py              | 18 +++++++++++++-----
 lib/bb/ui/buildinfohelper.py | 37 +++++++++++++++++++++----------------
 lib/bb/ui/toasterui.py       | 11 ++++++-----
 4 files changed, 44 insertions(+), 30 deletions(-)

--
1.9.3

---------------------------------------------------------------------
Intel Corporation (UK) Limited
Registered No. 1134945 (England)
Registered Office: Pipers Way, Swindon SN3 1RJ
VAT No: 860 2173 47

This e-mail and any attachments may contain confidential material for
the sole use of the intended recipient(s). Any review or distribution
by others is strictly prohibited. If you are not the intended
recipient, please contact the sender and delete all copies.



^ permalink raw reply	[flat|nested] 20+ messages in thread
* [PATCH v4 0/6] Fixes for toastergui
@ 2015-09-30 13:30 Ed Bartosh
  2015-09-30 13:30 ` [PATCH 1/6] event: add new property to BuildBase class Ed Bartosh
  0 siblings, 1 reply; 20+ messages in thread
From: Ed Bartosh @ 2015-09-30 13:30 UTC (permalink / raw)
  To: toaster

Hi,

This patchset fixes creation of Target objects for command line builds
and couple of usability fixes for toastergui module.

Changes in v2: used better name for the API: get_or_create_targets.
Changes in v3: made sure 'build' task is not set in Target objects.
               rebased pathset on top of poky-contrib:toaster-next
Changes in v4: removed deletion of Target objects that was brought by rebase
               rebased on toaster-next

The following changes since commit 4220ebce223fa7cd0865c793b7dd3ffe07b8e130:

  toaster: Special case the openembedded-core layer to avoid duplicates (2015-09-30 15:12:40 +0300)

are available in the git repository at:

  git://git.yoctoproject.org/poky-contrib ed/toaster/target-task
  http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=ed/toaster/target-task

Ed Bartosh (6):
  event: add new property to BuildBase class
  event: add new parameter to Build* event APIs
  toaster: add task to the target_information
  toaster: add get_or_create_targets API
  toaster: ignore ReachableStamps event
  toaster: use meaningful logging levels

 bitbake/lib/bb/cooker.py             |  8 ++++----
 bitbake/lib/bb/event.py              | 18 +++++++++++++-----
 bitbake/lib/bb/ui/buildinfohelper.py | 37 ++++++++++++++++++++----------------
 bitbake/lib/bb/ui/toasterui.py       | 11 ++++++-----
 4 files changed, 44 insertions(+), 30 deletions(-)

--
Ed



^ permalink raw reply	[flat|nested] 20+ messages in thread
* [PATCH v3 0/6] Fixes for toastergui
@ 2015-09-29  7:55 Ed Bartosh
  2015-09-29  7:55 ` [PATCH 1/6] event: add new property to BuildBase class Ed Bartosh
  0 siblings, 1 reply; 20+ messages in thread
From: Ed Bartosh @ 2015-09-29  7:55 UTC (permalink / raw)
  To: toaster

Hi,

This patchset fixes creation of Target objects for command line builds
and couple of usability fixes for toastergui module.

Changes in v2: used better name for the API: get_or_create_targets.
Changes in v3: made sure 'build' task is not set in Target objects.
               rebased pathset on top of poky-contrib:master-next

The following changes since commit f8bd18184a84e6de1976ecb4d0d929c55bc19a66:

  toaster: orm remove the complicated querying on the ORM (2015-09-28 20:07:38 -0700)

are available in the git repository at:

  git://git.yoctoproject.org/poky-contrib ed/toaster/target-task
  http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=ed/toaster/target-task

Ed Bartosh (6):
  event: add new property to BuildBase class
  event: add new parameter to Build* event APIs
  toaster: add task to the target_information
  toaster: add get_or_create_targets API
  toaster: ignore ReachableStamps event
  toaster: use meaningful logging levels

 bitbake/lib/bb/cooker.py             |  8 ++++----
 bitbake/lib/bb/event.py              | 18 +++++++++++++-----
 bitbake/lib/bb/ui/buildinfohelper.py | 35 +++++++++++++++++++++--------------
 bitbake/lib/bb/ui/toasterui.py       | 11 ++++++-----
 4 files changed, 44 insertions(+), 28 deletions(-)

-- 
2.1.4



^ permalink raw reply	[flat|nested] 20+ messages in thread
* [PATCH v2 0/6] Fixes for toastergui
@ 2015-09-28 15:44 Ed Bartosh
  2015-09-28 15:44 ` [PATCH 1/6] event: add new property to BuildBase class Ed Bartosh
  0 siblings, 1 reply; 20+ messages in thread
From: Ed Bartosh @ 2015-09-28 15:44 UTC (permalink / raw)
  To: toaster

Hi,

This patchset fixes creation of Target objects for command line builds
and couple of usability fixes for toastergui module.

Changes in v2: used better name for the API: get_or_create_targets.

The following changes since commit f78f90240a3041be426c6ba9085849352164ee8b:

  bitbake: prserv/serv.py: Better messaging when starting/stopping the server with port=0 (2015-09-28 12:00:33 +0100)

are available in the git repository at:

  git://git.yoctoproject.org/poky-contrib ed/toaster/target-task
  http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=ed/toaster/target-task

Ed Bartosh (6):
  event: add new property to BuildBase class
  event: add new parameter to Build* event APIs
  toaster: add task to the target_information
  toaster: add get_or_create_targets API
  toaster: ignore ReachableStamps event
  toaster: use meaningful logging levels

 bitbake/lib/bb/cooker.py             |  8 ++++----
 bitbake/lib/bb/event.py              | 18 +++++++++++++-----
 bitbake/lib/bb/ui/buildinfohelper.py | 20 +++++++++++++++++++-
 bitbake/lib/bb/ui/toasterui.py       | 11 ++++++-----
 4 files changed, 42 insertions(+), 15 deletions(-)

-- 
2.1.4



^ permalink raw reply	[flat|nested] 20+ messages in thread
* [PATCH 0/6] Fixes for toastergui
@ 2015-09-28  8:56 Ed Bartosh
  2015-09-28  8:57 ` [PATCH 1/6] event: add new property to BuildBase class Ed Bartosh
  0 siblings, 1 reply; 20+ messages in thread
From: Ed Bartosh @ 2015-09-28  8:56 UTC (permalink / raw)
  To: toaster

Hi,

This patchset fixes creation of Target objects for command line builds
and couple of usability fixes for toastergui module.

The following changes since commit 5a51fb28dbdfcae8ceb503a5290532dd38aeb09f:

  bitbake: prserv/serv: Start/Stop daemon using ip instead of host (2015-09-24 17:55:05 +0100)

are available in the git repository at:

  git://git.yoctoproject.org/poky-contrib ed/toaster/target-task
  http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=ed/toaster/target-task

Ed Bartosh (6):
  event: add new property to BuildBase class
  event: add new parameter to Build* event APIs
  toaster: add task to the target_information
  toaster: add get_target_objects API
  toaster: ignore ReachableStamps event
  toaster: use meaningful logging levels

 bitbake/lib/bb/cooker.py             |  8 ++++----
 bitbake/lib/bb/event.py              | 18 +++++++++++++-----
 bitbake/lib/bb/ui/buildinfohelper.py | 20 +++++++++++++++++++-
 bitbake/lib/bb/ui/toasterui.py       | 11 ++++++-----
 4 files changed, 42 insertions(+), 15 deletions(-)

-- 
2.1.4



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

end of thread, other threads:[~2015-10-16 13:10 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-10-05  9:43 [PATCH 0/6] Fixes for toastergui Elliot Smith
2015-10-05  9:43 ` [PATCH 1/6] event: add new property to BuildBase class Elliot Smith
2015-10-11  4:22   ` Richard Purdie
2015-10-11 20:02     ` Ed Bartosh
2015-10-12  4:54       ` Richard Purdie
2015-10-13  8:33         ` Ed Bartosh
2015-10-14  8:41         ` [PATCH] bitbake: normalize build targets Ed Bartosh
2015-10-14 22:20           ` Christopher Larson
2015-10-15  8:37             ` [PATCH v2] " Ed Bartosh
2015-10-16 13:09               ` Richard Purdie
2015-10-16 13:09                 ` [bitbake-devel] " Richard Purdie
2015-10-05  9:43 ` [PATCH 2/6] event: add new parameter to Build* event APIs Elliot Smith
2015-10-05  9:43 ` [PATCH 3/6] toaster: add task to the target_information Elliot Smith
2015-10-05  9:43 ` [PATCH 4/6] toaster: add get_or_create_targets API Elliot Smith
2015-10-05  9:43 ` [PATCH 5/6] toaster: ignore ReachableStamps event Elliot Smith
2015-10-05  9:43 ` [PATCH 6/6] toaster: use meaningful logging levels Elliot Smith
  -- strict thread matches above, loose matches on Subject: below --
2015-09-30 13:30 [PATCH v4 0/6] Fixes for toastergui Ed Bartosh
2015-09-30 13:30 ` [PATCH 1/6] event: add new property to BuildBase class Ed Bartosh
2015-09-29  7:55 [PATCH v3 0/6] Fixes for toastergui Ed Bartosh
2015-09-29  7:55 ` [PATCH 1/6] event: add new property to BuildBase class Ed Bartosh
2015-09-28 15:44 [PATCH v2 0/6] Fixes for toastergui Ed Bartosh
2015-09-28 15:44 ` [PATCH 1/6] event: add new property to BuildBase class Ed Bartosh
2015-09-28  8:56 [PATCH 0/6] Fixes for toastergui Ed Bartosh
2015-09-28  8:57 ` [PATCH 1/6] event: add new property to BuildBase class Ed Bartosh

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.