From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by yocto-www.yoctoproject.org (Postfix, from userid 118) id A3248E00566; Mon, 6 Jun 2016 09:02:10 -0700 (PDT) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on yocto-www.yoctoproject.org X-Spam-Level: X-Spam-Status: No, score=-6.9 required=5.0 tests=BAYES_00,RCVD_IN_DNSWL_HI autolearn=ham version=3.3.1 X-Spam-HAM-Report: * -5.0 RCVD_IN_DNSWL_HI RBL: Sender listed at http://www.dnswl.org/, high * trust * [192.55.52.88 listed in list.dnswl.org] * -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% * [score: 0.0000] Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by yocto-www.yoctoproject.org (Postfix) with ESMTP id A990BE0045E for ; Mon, 6 Jun 2016 09:02:07 -0700 (PDT) Received: from fmsmga003.fm.intel.com ([10.253.24.29]) by fmsmga101.fm.intel.com with ESMTP; 06 Jun 2016 09:01:19 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.26,427,1459839600"; d="scan'208";a="714728536" Received: from linux.intel.com ([10.23.219.25]) by FMSMGA003.fm.intel.com with ESMTP; 06 Jun 2016 09:01:19 -0700 Received: from vmed.fi.intel.com (vmed.fi.intel.com [10.237.72.68]) by linux.intel.com (Postfix) with ESMTP id ED9776A4008 for ; Mon, 6 Jun 2016 09:48:45 -0700 (PDT) From: Ed Bartosh To: toaster@yoctoproject.org Date: Mon, 6 Jun 2016 19:01:03 +0300 Message-Id: X-Mailer: git-send-email 2.1.4 Subject: [PATCH 0/9] python 3 fixes X-BeenThere: toaster@yoctoproject.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: Web based interface for BitBake List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 06 Jun 2016 16:02:10 -0000 Hi, With this set of fixes I was able to run Toaster and build core-image-minimal for 'Local Yocto Project'. The following changes since commit 14d075921ef5c5577a0a0acc394399b10f4fcbe8: toaster: Rework displaying package dependencies across Toaster (2016-06-06 15:25:44 +0300) are available in the git repository at: git://git.yoctoproject.org/poky-contrib ed/toaster/python3 http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=ed/toaster/python3 Ed Bartosh (6): bitbake: toaster: use python3 explicitly toaster: replace viewkeys() -> keys() toaster: fix migrations toaster: decode response content toaster: fix incorrect file mode toaster: fix test_toaster_tables Elliot Smith (3): toaster: fix broken reference to urllib toaster-tests: fix tests for latest Selenium version toaster: open image files in binary mode when sending in response bitbake/bin/toaster | 4 +- bitbake/lib/bb/ui/buildinfohelper.py | 2 +- .../migrations/0004_auto_20160523_1446.py | 34 +++++++++ .../orm/migrations/0007_auto_20160523_1446.py | 89 ++++++++++++++++++++++ bitbake/lib/toaster/tests/browser/README | 7 +- .../toaster/tests/browser/test_js_unit_tests.py | 8 +- bitbake/lib/toaster/toastergui/tests.py | 46 +++++------ bitbake/lib/toaster/toastergui/views.py | 2 +- bitbake/lib/toaster/toastergui/widgets.py | 2 +- 9 files changed, 156 insertions(+), 38 deletions(-) create mode 100644 bitbake/lib/toaster/bldcontrol/migrations/0004_auto_20160523_1446.py create mode 100644 bitbake/lib/toaster/orm/migrations/0007_auto_20160523_1446.py -- Regards, Ed