[oe-commits] [bitbake] branch master-next updated (6140d0c -> 540c0c8)

git at git.openembedded.org git at git.openembedded.org
Wed Apr 6 22:16:06 UTC 2016


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

      from  6140d0c   fetch2/git.py: remove .indirectiondir workaround
      adds  3fbd853   toaster: don't start bitbake server
      adds  7506719   toaster: get rid of noui option
      adds  9ad6393   toaster: set BITBAKE_UI environment variable
      adds  a0c8e2b   toasterui: add brbe parameter to buildinfohelper
      adds  f356c15   uievent: improve BBUIEventQueue code
      adds  f6dcb1c   buildinfohelper: improve handling of providermap
      adds  5d7cce0   toasterui: fix brbe reporting
      adds  a8f986d   toaster: remove startBBServer API
      adds  ef9e126   toaster: remove release API
      adds  669bb3f   toaster: add brbe parameter to triggerBuild
      adds  198bf7e   toaster: modified setLayers API
      adds  aba8e19   toaster: reimplement triggerBuild
      adds  89fae3c   toaster: add new parameter to _shellcmd
      adds  062c68e   toaster: stop bitbake server after the build
      adds  1271cf4   toaster: update conf/local.conf
      adds  79611d0   toaster: fix jethro build
      adds  e435260   toaster: use bash explicitly
      adds  9cd60f9   toasterui: shutdown on BuildCompleted event
      adds  89dc2ee   toaster: bldcontrol Add forceShutDown function to BitbakeController
      adds  29572f0   toaster: Move xhr calls for starting and stopping builds
      adds  0d76084   toaster: xhr Update the implementation of the build cancellation request
      adds  61a21d9   toaster: libtoaster Update implementation of startABuild and cancelABuild
      adds  e151511   toaster: update BuildEnvironmentController and BitbakeController
      adds  404f406   toaster: models Add cancelled state to build outcome
      adds  449598c   toaster: bldcontrol models Add a cancelling state the BuildRequest
      adds  d94d129   buildinfohelper: Add handler for cancelling a build
      adds  a724d6a   toaster: tables BuildsTable exclude cancelled builds
      adds  6b82ffc   toaster: mrb_section template Add build cancel button
      adds  c3c29fd   toaster: models Exclude the CANCELLED builds from get_number_of_builds
      adds  23d0a7f   toaster: runbuilds Make runbuilds aware of the build CANCELLED state
      adds  c382f55   toaster: runbuilds Clean up runbuilds
      adds  b54ec2d   toaster: use empty token
      adds  9f672d7   toaster: update view to support DL_DIR and SSTATE_DIR
      adds  bd9f897   toaster: update projectconf.html for DL_DIR and SSTATE_DIR
      adds  429d473   toaster: export BBBASEDIR variable
      adds  6c9e337   toaster: get bitbake location from BBBASEDIR
      adds  c39cc46   buildinfohelper: fix KeyError
      adds  d056cf4   toasterui: update build in internal state
      adds  f50fff0   buildinfohelper: work around unicode exceptions
      adds  2f978dc   toaster: add rev dep column to image detail pages
      adds  fc5024e   toaster: Add quint to project so that it can be used offline
      adds  6288a3b   toaster: tests Set MACHINE for the test projects
      adds  a0c1432   toaster: views jsunittest Add MACHINE and an extra layer to test project
      adds  81ccbf2   tests: browser Add test to run the js unit tests
      adds  540c0c8   bitbake: update LICENSE file with QUnit details

No new revisions were added by this update.

Summary of changes:
 LICENSE                                            |   2 +
 bin/toaster                                        |  82 +----
 lib/bb/ui/buildinfohelper.py                       |  59 ++--
 lib/bb/ui/toasterui.py                             |  22 +-
 lib/bb/ui/uievent.py                               |  10 +-
 lib/toaster/bldcontrol/bbcontroller.py             |  62 +---
 lib/toaster/bldcontrol/localhostbecontroller.py    | 152 +++++----
 .../bldcontrol/management/commands/runbuilds.py    | 109 ++++---
 .../migrations/0003_add_cancelling_state.py        |  19 ++
 lib/toaster/bldcontrol/models.py                   |  27 +-
 .../migrations/0006_add_cancelled_state.py}        |   8 +-
 lib/toaster/orm/models.py                          |  19 +-
 .../{test_sample.py => test_js_unit_tests.py}      |  38 ++-
 lib/toaster/toastergui/api.py                      | 110 +++++++
 .../fixtures/toastergui-unittest-data.xml          |   4 +-
 lib/toaster/toastergui/static/css/qunit-1.18.0.css |   1 +
 lib/toaster/toastergui/static/js/customrecipe.js   |   4 +-
 lib/toaster/toastergui/static/js/layerBtn.js       |   3 +-
 lib/toaster/toastergui/static/js/libtoaster.js     |  41 ++-
 lib/toaster/toastergui/static/js/mrbsection.js     |  95 ++++++
 lib/toaster/toastergui/static/js/projectpage.js    |   4 +-
 lib/toaster/toastergui/static/js/projecttopbar.js  |   6 +-
 lib/toaster/toastergui/static/js/qunit-1.18.0.js   | 347 +++++++++++++++++++++
 lib/toaster/toastergui/static/js/recipedetails.js  |   4 +-
 lib/toaster/toastergui/tables.py                   |  54 +---
 lib/toaster/toastergui/templates/base.html         |   1 +
 .../toastergui/templates/js-unit-tests.html        |   4 +-
 lib/toaster/toastergui/templates/mrb_section.html  | 148 ++++-----
 lib/toaster/toastergui/templates/projectconf.html  | 160 +++++++++-
 .../snippets/pkg_revdependencies_popover.html      |  14 +
 lib/toaster/toastergui/urls.py                     |   5 +
 lib/toaster/toastergui/views.py                    |  58 +++-
 32 files changed, 1206 insertions(+), 466 deletions(-)
 create mode 100644 lib/toaster/bldcontrol/migrations/0003_add_cancelling_state.py
 copy lib/toaster/{bldcontrol/migrations/0002_auto_20160120_1250.py => orm/migrations/0006_add_cancelled_state.py} (50%)
 copy lib/toaster/tests/browser/{test_sample.py => test_js_unit_tests.py} (54%)
 create mode 100644 lib/toaster/toastergui/api.py
 create mode 100644 lib/toaster/toastergui/static/css/qunit-1.18.0.css
 create mode 100644 lib/toaster/toastergui/static/js/mrbsection.js
 create mode 100644 lib/toaster/toastergui/static/js/qunit-1.18.0.js
 create mode 100644 lib/toaster/toastergui/templates/snippets/pkg_revdependencies_popover.html

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


More information about the Openembedded-commits mailing list