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

git at git.openembedded.org git at git.openembedded.org
Wed Apr 6 22:11:18 UTC 2016


rpurdie pushed a change to branch master
in repository bitbake.

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

The 45 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


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