From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by yocto-www.yoctoproject.org (Postfix, from userid 118) id 33425E00F2D; Wed, 30 Sep 2015 05:03:38 -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 * [134.134.136.20 listed in list.dnswl.org] * -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% * [score: 0.0000] Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by yocto-www.yoctoproject.org (Postfix) with ESMTP id AB45FE00EE8 for ; Wed, 30 Sep 2015 05:03:36 -0700 (PDT) Received: from orsmga002.jf.intel.com ([10.7.209.21]) by orsmga101.jf.intel.com with ESMTP; 30 Sep 2015 05:03:02 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.17,612,1437462000"; d="scan'208";a="816260563" Received: from linux.intel.com ([10.23.219.25]) by orsmga002.jf.intel.com with ESMTP; 30 Sep 2015 05:03:04 -0700 Received: from vmed.fi.intel.com (vmed.fi.intel.com [10.237.72.51]) by linux.intel.com (Postfix) with ESMTP id 8A7936A4083 for ; Wed, 30 Sep 2015 05:02:06 -0700 (PDT) From: Ed Bartosh To: toaster@yoctoproject.org Date: Wed, 30 Sep 2015 15:02:50 +0300 Message-Id: X-Mailer: git-send-email 2.1.4 Subject: [PATCH 0/7] Fix 8004 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: Wed, 30 Sep 2015 12:03:38 -0000 Hi, This patchset fixes bug 8004: importing a layer from the recipes page auto adds the 1st level dependencies but not the 2nd level. Now dependent layers are discovered recursively and Toaster shows all of them in Compatible layers view. The patchset includes fixes for orm test suite and new test case for Layer_Version.get_alldeps API used in this bug fix. Please review. The following changes since commit f8bd18184a84e6de1976ecb4d0d929c55bc19a66: toaster: orm remove the complicated querying on the ORM (2015-09-28 20:07:38 -0700) are available in the git repository at: git://git.yoctoproject.org/poky-contrib ed/toaster/8004 http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=ed/toaster/8004 Ed Bartosh (7): toaster: implement API to get full list of deps toaster: use get_alldeps in layerdetails renderer toaster: add template filter get_alldeps toaster: use get_alldeps in LayerTable toaster: fix NameError toaster: fix orm tests toaster: test get_alldeps API bitbake/lib/toaster/orm/models.py | 21 ++++++++- bitbake/lib/toaster/orm/tests.py | 53 ++++++++++------------ bitbake/lib/toaster/toastergui/tables.py | 11 +++-- .../toaster/toastergui/templatetags/projecttags.py | 4 ++ bitbake/lib/toaster/toastergui/views.py | 4 +- 5 files changed, 55 insertions(+), 38 deletions(-) -- Ed