[oe-commits] [bitbake] branch python3 updated (9bf3d09 -> 3bb302b)

git at git.openembedded.org git at git.openembedded.org
Fri May 13 13:26:44 UTC 2016


rpurdie pushed a change to branch python3
in repository bitbake.

  discards  9bf3d09   bitbake-layers py3 fixup
  discards  5ef6d7d   Set required python 3 version to 3.4.0
  discards  01b6bec   server/process: Fix missing log messages issue
  discards  d0089dc   data/event/siggen: Fix various exceptions [FIXME]
  discards  8ddff97   data_smart: Simplify ExpansionError exception
  discards  e2dd8a7   bitbake: Convert to python 3 megacommit This needs breaking up into smaller changes.
       new  6e41b17   bitbake: Convert to python 3 megacommit This needs breaking up into smaller changes.
       new  d8ab724   data_smart: Simplify ExpansionError exception
       new  a80af96   server/process: Fix missing log messages issue
       new  eb54931   lib/bb: Set required python 3 version to 3.4.0
       new  9de2245   image-writer/goggle: Disable pygtkcompat problems
       new  f5667df   google/image-writer: Drop since bitrotting and no longer used
       new  95b3f45   data/event/siggen: Fix various exceptions [FIXME]
       new  feda3d1   toaster: use force_text instead of force_bytes
       new  facc96c   toaster: use print function in toaster script
       new  5c0c65b   toaster: get rid of using reduce
       new  980fa16   toaster: fix imports to work for python 3
       new  8fa5e92   toaster: fix local imports
       new  1f7c8a2   toaster: modified list of dependencies
       new  85d2db2   toaster: use decode('utf-8') for binary data
       new  9c8fe47   toaster: use items and range instead of old APIs
       new  5d8a0de   toaster: replace map with list comprehensions
       new  28f28b6   toaster: use 'in' instead of has_key
       new  92d7408   toaster: use re.sub() instead of translate()
       new  d3aa129   toaster: use new syntax of except statement
       new  2ffe9c4   toaster: read timezone files in binary mode
       new  1dd344e   toaster: moved import bb.server.xmlrpc
       new  3bb302b   toaster: fix migrations

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   (9bf3d09)
            \
             N -- N -- N   refs/heads/python3 (3bb302b)

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.

The 22 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:
 bin/image-writer                                   | 122 ---
 bin/toaster                                        |   4 +-
 .../migrations/0004_auto_20160509_0946.py          |  34 +
 .../orm/migrations/0007_auto_20160509_0946.py      |  89 ++
 lib/bb/ui/crumbs/__init__.py                       |  17 -
 lib/bb/ui/crumbs/hig/__init__.py                   |   0
 lib/bb/ui/crumbs/hig/crumbsdialog.py               |  44 -
 lib/bb/ui/crumbs/hig/crumbsmessagedialog.py        |  70 --
 lib/bb/ui/crumbs/hig/deployimagedialog.py          | 219 -----
 lib/bb/ui/crumbs/hig/imageselectiondialog.py       | 172 ----
 lib/bb/ui/crumbs/hig/layerselectiondialog.py       | 298 -------
 lib/bb/ui/crumbs/hig/propertydialog.py             | 437 ----------
 lib/bb/ui/crumbs/hig/settingsuihelper.py           | 122 ---
 lib/bb/ui/crumbs/hobcolor.py                       |  38 -
 lib/bb/ui/crumbs/hobwidget.py                      | 904 ---------------------
 lib/bb/ui/crumbs/persistenttooltip.py              | 186 -----
 lib/bb/ui/crumbs/progress.py                       |  23 -
 lib/bb/ui/crumbs/progressbar.py                    |  59 --
 lib/bb/ui/crumbs/puccho.glade                      | 606 --------------
 lib/bb/ui/crumbs/runningbuild.py                   | 551 -------------
 lib/bb/ui/crumbs/utils.py                          |  34 -
 lib/bb/ui/goggle.py                                | 121 ---
 lib/bb/ui/ncurses.py                               |   8 +-
 lib/bb/utils.py                                    |   1 -
 lib/toaster/bldcontrol/bbcontroller.py             |   4 +-
 lib/toaster/bldcontrol/localhostbecontroller.py    |   4 +-
 .../management/commands/checksettings.py           |   2 +-
 .../bldcontrol/management/commands/loadconf.py     |   4 +-
 .../bldcontrol/management/commands/runbuilds.py    |   4 +-
 lib/toaster/bldcontrol/models.py                   |   4 +-
 lib/toaster/contrib/tts/config.py                  |   2 +-
 lib/toaster/orm/models.py                          |  22 +-
 lib/toaster/toastergui/api.py                      |   3 +-
 lib/toaster/toastergui/tablefilter.py              |   2 +-
 lib/toaster/toastergui/tables.py                   |   3 +-
 lib/toaster/toastergui/views.py                    | 117 +--
 lib/toaster/toastergui/widgets.py                  |  25 +-
 lib/toaster/toastermain/settings.py                |   9 +-
 lib/toaster/toastermain/urls.py                    |   2 +-
 toaster-requirements.txt                           |   3 +-
 40 files changed, 247 insertions(+), 4122 deletions(-)
 delete mode 100755 bin/image-writer
 create mode 100644 bitbake/lib/toaster/bldcontrol/migrations/0004_auto_20160509_0946.py
 create mode 100644 bitbake/lib/toaster/orm/migrations/0007_auto_20160509_0946.py
 delete mode 100644 lib/bb/ui/crumbs/__init__.py
 delete mode 100644 lib/bb/ui/crumbs/hig/__init__.py
 delete mode 100644 lib/bb/ui/crumbs/hig/crumbsdialog.py
 delete mode 100644 lib/bb/ui/crumbs/hig/crumbsmessagedialog.py
 delete mode 100644 lib/bb/ui/crumbs/hig/deployimagedialog.py
 delete mode 100644 lib/bb/ui/crumbs/hig/imageselectiondialog.py
 delete mode 100644 lib/bb/ui/crumbs/hig/layerselectiondialog.py
 delete mode 100644 lib/bb/ui/crumbs/hig/propertydialog.py
 delete mode 100644 lib/bb/ui/crumbs/hig/settingsuihelper.py
 delete mode 100644 lib/bb/ui/crumbs/hobcolor.py
 delete mode 100644 lib/bb/ui/crumbs/hobwidget.py
 delete mode 100644 lib/bb/ui/crumbs/persistenttooltip.py
 delete mode 100644 lib/bb/ui/crumbs/progress.py
 delete mode 100644 lib/bb/ui/crumbs/progressbar.py
 delete mode 100644 lib/bb/ui/crumbs/puccho.glade
 delete mode 100644 lib/bb/ui/crumbs/runningbuild.py
 delete mode 100644 lib/bb/ui/crumbs/utils.py
 delete mode 100644 lib/bb/ui/goggle.py

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


More information about the Openembedded-commits mailing list