[oe-commits] [bitbake] branch master-next updated (b666745 -> 0a9b5d7)

git at git.openembedded.org git at git.openembedded.org
Wed Aug 10 23:11:58 UTC 2016


rpurdie pushed a change to branch master-next
in repository bitbake.

  discards  b666745   persist_data: Fix py3 update stack overflow
      adds  88c5bec   persist_data: Fix py3 update stack overflow
      adds  c1a57e2   fetch2/gitannex.py: use 'git annex init' instead of 'git annex sync'
      adds  40f6051   siggen: Fix typo
      adds  1d5102f   toaster: --help now returns 0 instead of 1
      adds  06f74fe   toaster: tests test_new_project_page Catch button not enabled exception
      adds  d2f4ffb   toaster: Add poky and openembedded configuration fixtures
      adds  7d14ca8   toaster: checksettings call django's loaddata instead of custom command
      adds  e1c1c88   toaster: lsupdates Add spinner for parsing/http fetch
      adds  3edd33a   toaster: Remove old toaster config loading mechanism
      adds  4060776   toaster: fixtures Add README
      adds  ac02fda   cooker: add BuildInit event
      adds  c868ea0   toaster: move most recent builds templating to client
      adds  f33d51d   toaster: show progress of recipe parsing in recent builds area
      adds  5529bcd   toaster: show "Tasks starting..." until the first task completes
      adds  98a923f   toaster: tweak styling and typos in recent builds area
      adds  6f9c472   toaster: remove links from time field on failed builds
      adds  aa151a4   toaster: add started property to Build
      adds  9d68a5b   toaster: adjust build dashboard for failed builds
      adds  3d7b247   toaster-tests: add tests for build time links in the all builds page
      adds  9e16f76   toaster-tests: add tests for build dashboard menu and summary visibility
      adds  b95681c   toaster-tests: add tests for most recent builds state changes
      adds  34943b2   toaster-tests: fix erroneous message when test fails
      adds  dd8bede   toaster: show loading spinner after creating custom image
      adds  a283770   toaster: reset table to default orderby when orderby column is hidden
      adds  5b01633   toaster-tests: add tests for reverting to default sort
      adds  88c471c   toaster: prevent infinite loop when finding task dependencies
      adds  b7a699e   toaster-tests: add test for showing self-dependent task
      adds  0990b4c   toasterui: ensure that the Build object is always available
      adds  01891c1   toaster: fix unhandled exception
      adds  78e5edb   toaster: add import of local directory to UI
      adds  26bee4c   toaster: control the selection of git and local repo
      adds  4350b01   toaster: add local_source_dir to the needed_fields
      adds  a41d040   toaster: update css file for layer import
      adds  c1961c7   toaster: improve the display when local dir is added
      adds  2c3d48e   toaster: add local directory to the db
      adds  83763d8   toaster: add local_source_dir field to model
      adds  5669157   toaster: collect details for local dir imported from ui
      adds  7e73f85   toaster: update the tables information
      adds  1b0934b   toaster: updte build tables for locally imported layers
      adds  6978f65   toaster: update package detail page
      adds  35f7faa   toaster: update recipe details page
      adds  4ca3f60   toaster: update build configuration page
      adds  f855490   toaster: adapt xhr_import_layer test locally imported layer
      adds  a3112c9   toaster: bldcontrol model BRLayer Add corresponding local_source_dir
      adds  0a9b5d7   toaster: buildinfohelper Add handling local layers (i.e. non-git) layers

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (b666745)
            \
             N -- N -- N   refs/heads/master-next (0a9b5d7)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omits" are not gone; other references still
refer to them.  Any revisions marked "discards" are gone forever.

No new revisions were added by this update.

Summary of changes:
 LICENSE                                            |   2 +
 bin/toaster                                        |  22 +-
 lib/bb/cooker.py                                   |   4 +
 lib/bb/event.py                                    |   6 +-
 lib/bb/fetch2/gitannex.py                          |   2 +-
 lib/bb/siggen.py                                   |   4 +-
 lib/bb/ui/buildinfohelper.py                       | 273 +++++++++------
 lib/bb/ui/toasterui.py                             |  32 +-
 lib/toaster/bldcontrol/localhostbecontroller.py    |  13 +-
 .../management/commands/checksettings.py           |  88 ++---
 .../bldcontrol/management/commands/loadconf.py     | 179 ----------
 ...tate.py => 0005_reorder_buildrequest_states.py} |   4 +-
 .../migrations/0006_brlayer_local_source_dir.py}   |   8 +-
 lib/toaster/bldcontrol/models.py                   |  13 +-
 lib/toaster/orm/fixtures/README                    |  30 ++
 lib/toaster/orm/fixtures/oe-core.xml               |  57 ++++
 lib/toaster/orm/fixtures/poky.xml                  | 105 ++++++
 lib/toaster/orm/fixtures/settings.xml              |  36 ++
 lib/toaster/orm/management/commands/lsupdates.py   |  35 +-
 .../0013_recipe_parse_progress_fields.py           |  24 ++
 .../migrations/0014_allow_empty_buildname.py}      |   8 +-
 ...fest_path.py => 0015_layer_local_source_dir.py} |   8 +-
 lib/toaster/orm/models.py                          | 102 +++++-
 lib/toaster/tests/browser/test_all_builds_page.py  |  93 +++++-
 .../tests/browser/test_builddashboard_page.py      | 127 +++++--
 .../browser/test_builddashboard_page_artifacts.py  |   7 +-
 .../tests/browser/test_layerdetails_page.py        |   8 +-
 .../browser/test_most_recent_builds_states.py      | 211 ++++++++++++
 lib/toaster/tests/browser/test_new_project_page.py |   6 +-
 lib/toaster/tests/browser/test_task_page.py        |  76 +++++
 lib/toaster/tests/browser/test_toastertable_ui.py  | 160 +++++++++
 lib/toaster/toastergui/api.py                      | 115 ++++++-
 lib/toaster/toastergui/buildtables.py              |  32 ++
 lib/toaster/toastergui/static/css/default.css      |  20 +-
 lib/toaster/toastergui/static/js/importlayer.js    | 125 ++++++-
 lib/toaster/toastergui/static/js/jsrender.min.js   |   4 +
 lib/toaster/toastergui/static/js/libtoaster.js     |  36 +-
 lib/toaster/toastergui/static/js/mrbsection.js     | 180 ++++++----
 .../toastergui/static/js/newcustomimage_modal.js   |  33 +-
 lib/toaster/toastergui/static/js/projectpage.js    |   7 +-
 lib/toaster/toastergui/static/js/table.js          |  78 ++++-
 lib/toaster/toastergui/tables.py                   |  38 ++-
 lib/toaster/toastergui/templates/base.html         |   6 +
 .../toastergui/templates/basebuildpage.html        | 176 +++++-----
 .../toastergui/templates/builddashboard.html       | 158 +++++----
 .../toastergui/templates/buildrequestdetails.html  |  64 ----
 .../toastergui/templates/configuration.html        |  14 +
 lib/toaster/toastergui/templates/importlayer.html  | 184 +++++-----
 lib/toaster/toastergui/templates/mrb_section.html  | 371 +++++++++++++--------
 .../toastergui/templates/newcustomimage_modal.html |   7 +-
 .../toastergui/templates/package_detail_base.html  |  18 +-
 .../templates/projectbuilds-toastertable.html      |   2 +-
 lib/toaster/toastergui/templates/recipe.html       |  20 +-
 lib/toaster/toastergui/templatetags/projecttags.py |   8 -
 lib/toaster/toastergui/tests.py                    |   1 +
 lib/toaster/toastergui/typeaheads.py               |   1 +
 lib/toaster/toastergui/urls.py                     |   3 +
 lib/toaster/toastergui/views.py                    |  17 +-
 58 files changed, 2473 insertions(+), 988 deletions(-)
 delete mode 100644 lib/toaster/bldcontrol/management/commands/loadconf.py
 copy lib/toaster/bldcontrol/migrations/{0003_add_cancelling_state.py => 0005_reorder_buildrequest_states.py} (54%)
 copy lib/toaster/{orm/migrations/0009_target_package_manifest_path.py => bldcontrol/migrations/0006_brlayer_local_source_dir.py} (55%)
 create mode 100644 lib/toaster/orm/fixtures/README
 create mode 100644 lib/toaster/orm/fixtures/oe-core.xml
 create mode 100644 lib/toaster/orm/fixtures/poky.xml
 create mode 100644 lib/toaster/orm/fixtures/settings.xml
 create mode 100644 lib/toaster/orm/migrations/0013_recipe_parse_progress_fields.py
 copy lib/toaster/{bldcontrol/migrations/0002_auto_20160120_1250.py => orm/migrations/0014_allow_empty_buildname.py} (57%)
 copy lib/toaster/orm/migrations/{0009_target_package_manifest_path.py => 0015_layer_local_source_dir.py} (56%)
 create mode 100644 lib/toaster/tests/browser/test_most_recent_builds_states.py
 create mode 100644 lib/toaster/tests/browser/test_task_page.py
 create mode 100644 lib/toaster/tests/browser/test_toastertable_ui.py
 create mode 100644 lib/toaster/toastergui/static/js/jsrender.min.js
 delete mode 100644 lib/toaster/toastergui/templates/buildrequestdetails.html

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list