All of lore.kernel.org
 help / color / mirror / Atom feed
From: Robert Yang <liezhi.yang@windriver.com>
To: <bitbake-devel@lists.openembedded.org>
Subject: [PATCH 0/2] bitbake: python2 -> python3
Date: Thu, 27 Jun 2019 14:59:46 +0800	[thread overview]
Message-ID: <cover.1561617701.git.liezhi.yang@windriver.com> (raw)

Hi RP,

- For bitbake/lib/bb's changes, I removed the line '#! /usr/bin/env python',
  and I've run bitbake-selftest, everything is fine except one test case which
  says can't clone git://git.infradead.org/mtd-utils.git, I can't clone it
  mannually, either.

- For toaster/tests, I read it's README, it needs a web browser to run the test
  cases, but I don't have it on my server, so I didn't run the test cases. I just
  changed python2 -> python3, but kept the line there, I used 2to3 to check these
  files, they are python3 indeed.

// Robert
  

The following changes since commit 67266331b0f557c01cde1cc1b1a1de7197443a6c:

  local.conf.sample.extended: remove redundant RUNTIMETARGET assignment (2019-06-24 17:34:25 +0100)

are available in the git repository at:

  git://git.pokylinux.org/poky-contrib rbt/py3
  http://git.pokylinux.org/cgit.cgi//log/?h=rbt/py3

Robert Yang (2):
  bitbake: lib: Cleanup /usr/bin/env python
  bitbake: toaster:tests: python -> python3

 bitbake/lib/bb/cooker.py                                               | 1 -
 bitbake/lib/bb/cookerdata.py                                           | 1 -
 bitbake/lib/bb/main.py                                                 | 1 -
 bitbake/lib/bb/monitordisk.py                                          | 1 -
 bitbake/lib/bb/namedtuple_with_abc.py                                  | 1 -
 bitbake/lib/bb/parse/parse_py/BBHandler.py                             | 1 -
 bitbake/lib/bb/parse/parse_py/ConfHandler.py                           | 1 -
 bitbake/lib/bb/parse/parse_py/__init__.py                              | 1 -
 bitbake/lib/bb/runqueue.py                                             | 1 -
 bitbake/lib/bb/taskdata.py                                             | 1 -
 bitbake/lib/pyinotify.py                                               | 3 +--
 bitbake/lib/toaster/tests/browser/selenium_helpers.py                  | 2 +-
 bitbake/lib/toaster/tests/browser/selenium_helpers_base.py             | 2 +-
 bitbake/lib/toaster/tests/browser/test_all_builds_page.py              | 2 +-
 bitbake/lib/toaster/tests/browser/test_all_projects_page.py            | 2 +-
 bitbake/lib/toaster/tests/browser/test_builddashboard_page.py          | 2 +-
 .../lib/toaster/tests/browser/test_builddashboard_page_artifacts.py    | 2 +-
 bitbake/lib/toaster/tests/browser/test_builddashboard_page_recipes.py  | 2 +-
 bitbake/lib/toaster/tests/browser/test_builddashboard_page_tasks.py    | 2 +-
 bitbake/lib/toaster/tests/browser/test_js_unit_tests.py                | 2 +-
 bitbake/lib/toaster/tests/browser/test_landing_page.py                 | 2 +-
 bitbake/lib/toaster/tests/browser/test_layerdetails_page.py            | 2 +-
 bitbake/lib/toaster/tests/browser/test_most_recent_builds_states.py    | 2 +-
 bitbake/lib/toaster/tests/browser/test_new_custom_image_page.py        | 2 +-
 bitbake/lib/toaster/tests/browser/test_new_project_page.py             | 2 +-
 bitbake/lib/toaster/tests/browser/test_project_builds_page.py          | 2 +-
 bitbake/lib/toaster/tests/browser/test_project_config_page.py          | 2 +-
 bitbake/lib/toaster/tests/browser/test_project_page.py                 | 2 +-
 bitbake/lib/toaster/tests/browser/test_sample.py                       | 2 +-
 bitbake/lib/toaster/tests/browser/test_task_page.py                    | 2 +-
 bitbake/lib/toaster/tests/browser/test_toastertable_ui.py              | 2 +-
 bitbake/lib/toaster/tests/builds/buildtest.py                          | 2 +-
 bitbake/lib/toaster/tests/builds/test_core_image_min.py                | 2 +-
 bitbake/lib/toaster/tests/commands/test_loaddata.py                    | 2 +-
 bitbake/lib/toaster/tests/commands/test_lsupdates.py                   | 2 +-
 bitbake/lib/toaster/tests/commands/test_runbuilds.py                   | 2 +-
 bitbake/lib/toaster/tests/eventreplay/__init__.py                      | 2 +-
 bitbake/lib/toaster/tests/functional/functional_helpers.py             | 2 +-
 bitbake/lib/toaster/tests/functional/test_functional_basic.py          | 2 +-
 bitbake/lib/toaster/tests/views/test_views.py                          | 2 +-
 bitbake/lib/toaster/toastermain/management/commands/checksocket.py     | 2 +-
 41 files changed, 31 insertions(+), 42 deletions(-)

-- 
2.7.4



             reply	other threads:[~2019-06-27  6:36 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-06-27  6:59 Robert Yang [this message]
2019-06-27  6:59 ` [PATCH 1/2] bitbake: lib: Cleanup /usr/bin/env python Robert Yang
2019-06-27  6:59 ` [PATCH 2/2] bitbake: toaster:tests: python -> python3 Robert Yang

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=cover.1561617701.git.liezhi.yang@windriver.com \
    --to=liezhi.yang@windriver.com \
    --cc=bitbake-devel@lists.openembedded.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.