[oe-commits] [bitbake] branch python3 updated (2f43780 -> c5fd09e)

git at git.openembedded.org git at git.openembedded.org
Fri May 20 09:13:29 UTC 2016


rpurdie pushed a change to branch python3
in repository bitbake.

  discards  2f43780   xmlrpc: add parameter use_builtin_types
  discards  dc24983   toaster: use knotty when working with bitbake server
  discards  e20ec3a   toaster: fix migrations
  discards  0c69698   toaster: moved import bb.server.xmlrpc
  discards  1cb703a   toaster: read timezone files in binary mode
  discards  2a5bff9   toaster: use re.sub() instead of translate()
  discards  02c6444   toaster: replace map with list comprehensions
  discards  50d09e6   toaster: use items and range instead of old APIs
  discards  8bf7f7c   toaster: use decode('utf-8') for binary data
  discards  3c29364   toaster: modified list of dependencies
  discards  07512b6   toaster: fix local imports
  discards  0849e7c   toaster: fix imports to work for python 3
  discards  5e0cc8f   toaster: get rid of using reduce
  discards  2bb2eb2   toaster: use force_text instead of force_bytes
  discards  fcb8b08   data/event/siggen: Fix various exceptions [FIXME]
  discards  a19cac6   google/image-writer: Drop since bitrotting and no longer used
  discards  0d33166   image-writer/goggle: Disable pygtkcompat problems
  discards  391636a   lib/bb: Set required python 3 version to 3.4.0
  discards  1340acd   data_smart: Simplify ExpansionError exception
  discards  d9bd24f   bitbake: Convert to python 3 megacommit This needs breaking up into smaller changes.
  discards  921721f   bitbake: Drop futures usage since we're python 3
  discards  21f2cd8   bitbake/pyinotify.py: Upgrade to py3 version
  discards  6079b87   bitbake/bs4: Upgrade 4.3.2 -> 4.4.1 (python 3 version)
      adds  c14cbb0   toaster: handle multiple imagefs types
      adds  99b1b52   toaster: projectconf Small tweaks to IMAGE_FSTYPES form
      adds  62c74eb   toaster-tests: tests for project config
      adds  973c740   toaster: Remove DATABASE_URL being passed around as an environment var
      adds  e8e0596   toaster: runbuilds move the execution sequence out of the poll loop
      adds  c52e34c   toaster: Add a specific test settings file
      adds  d188237   toaster: tests Add a BuildTest helper class
      adds  94418b1   toaster: tests build Add a test for a build of core-image-minimal
      adds  acac9bf   toaster: tests builds Add SSTATE_MISS as a valid condition for tc=833
       new  e3a4cbe   bitbake/bs4: Upgrade 4.3.2 -> 4.4.1 (python 3 version)
       new  e44803f   bitbake/pyinotify.py: Upgrade to py3 version
       new  c274a88   bitbake: Drop futures usage since we're python 3
       new  23d5795   bitbake: Convert to python 3 megacommit This needs breaking up into smaller changes.
       new  27911b9   data_smart: Simplify ExpansionError exception
       new  61e5b3d   lib/bb: Set required python 3 version to 3.4.0
       new  936fc88   image-writer/goggle: Disable pygtkcompat problems
       new  f4a258c   google/image-writer: Drop since bitrotting and no longer used
       new  9765b9f   data/event/siggen: Fix various exceptions [FIXME]
       new  f2e8b5c   toaster: use force_text instead of force_bytes
       new  1c2cda5   toaster: get rid of using reduce
       new  4e93b14   toaster: fix imports to work for python 3
       new  192e689   toaster: fix local imports
       new  9e43ea2   toaster: modified list of dependencies
       new  eeb8839   toaster: use decode('utf-8') for binary data
       new  4bf6a09   toaster: use items and range instead of old APIs
       new  67da00e   toaster: replace map with list comprehensions
       new  5d24209   toaster: use re.sub() instead of translate()
       new  81b9875   toaster: read timezone files in binary mode
       new  4f4edfb   toaster: moved import bb.server.xmlrpc
       new  ba55987   toaster: fix migrations
       new  e387aff   toaster: use knotty when working with bitbake server
       new  c5fd09e   xmlrpc: add parameter use_builtin_types

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   (2f43780)
            \
             N -- N -- N   refs/heads/python3 (c5fd09e)

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 23 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/toaster                                        |   2 -
 lib/bb/fetch2/__init__.py                          |   2 +-
 lib/bb/ui/buildinfohelper.py                       |  20 +-
 .../bldcontrol/management/commands/runbuilds.py    |  31 +-
 .../tests/browser/test_project_config_page.py      | 115 ++++++
 lib/toaster/tests/builds/README                    |  14 +
 .../commands => tests/builds}/__init__.py          |   0
 lib/toaster/tests/builds/buildtest.py              | 134 +++++++
 lib/toaster/tests/builds/test_core_image_min.py    | 396 +++++++++++++++++++++
 lib/toaster/toastergui/templates/projectconf.html  | 112 +++---
 .../toastermain/management/commands/get-dburl.py   |   9 -
 .../toastermain/settings-test.py}                  |  40 ++-
 lib/toaster/toastermain/settings.py                |  67 +---
 13 files changed, 791 insertions(+), 151 deletions(-)
 create mode 100644 lib/toaster/tests/browser/test_project_config_page.py
 create mode 100644 lib/toaster/tests/builds/README
 copy lib/toaster/{toastermain/management/commands => tests/builds}/__init__.py (100%)
 create mode 100644 lib/toaster/tests/builds/buildtest.py
 create mode 100644 lib/toaster/tests/builds/test_core_image_min.py
 delete mode 100644 lib/toaster/toastermain/management/commands/get-dburl.py
 copy lib/{bb/parse/parse_py/__init__.py => toaster/toastermain/settings-test.py} (57%)

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


More information about the Openembedded-commits mailing list