From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by yocto-www.yoctoproject.org (Postfix, from userid 118) id 155D8E00B56; Thu, 30 Jul 2015 10:03:04 -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: * -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% * [score: 0.0000] * -5.0 RCVD_IN_DNSWL_HI RBL: Sender listed at http://www.dnswl.org/, high * trust * [134.134.136.24 listed in list.dnswl.org] Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by yocto-www.yoctoproject.org (Postfix) with ESMTP id 1611AE00B3A for ; Thu, 30 Jul 2015 10:02:57 -0700 (PDT) Received: from fmsmga003.fm.intel.com ([10.253.24.29]) by orsmga102.jf.intel.com with ESMTP; 30 Jul 2015 10:02:25 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.15,577,1432623600"; d="scan'208";a="533175324" Received: from linux.intel.com ([10.23.219.25]) by FMSMGA003.fm.intel.com with ESMTP; 30 Jul 2015 10:01:55 -0700 Received: from vmed.fi.intel.com (vmed.fi.intel.com [10.237.72.65]) by linux.intel.com (Postfix) with ESMTP id 978FC6A4087; Thu, 30 Jul 2015 10:01:09 -0700 (PDT) From: Ed Bartosh To: toaster@yoctoproject.org Date: Thu, 30 Jul 2015 20:01:48 +0300 Message-Id: X-Mailer: git-send-email 2.1.4 Subject: [RFC PATCH 0/3] Image customisation: new models 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: Thu, 30 Jul 2015 17:03:04 -0000 Hi, This is a work in progress on YOCTO #8049. I'm going to add one more new model ProjectCustomRecipeContent and setup Django signals for keeping ProjectAvailable* models in sync. I'd be glad to hear your suggestions regarding populating and updating these models with an actual data. The following changes since commit eb1c88c13f0490fa42fbe1681ac712ee883061a3: distro/maintainers.inc: Fix parsing error due to lack of " at end. (2015-07-29 20:27:51 +0100) are available in the git repository at: git://git.yoctoproject.org/poky-contrib ed/toaster/ic-models http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=ed/toaster/ic-models Ed Bartosh (3): toaster: Add ProjectAvailableLayer model toaster: Add ProjectAvailableRecipe model toaster: Add ProjectAvailablePackage model .../0025_auto__add_projectavailablelayer.py | 367 +++++++++++++++++++ .../0026_auto__add_projectavailablerecipe.py | 387 ++++++++++++++++++++ .../0027_auto__add_projectavailablepackage.py | 405 +++++++++++++++++++++ bitbake/lib/toaster/orm/models.py | 48 +++ 4 files changed, 1207 insertions(+) create mode 100644 bitbake/lib/toaster/orm/migrations/0025_auto__add_projectavailablelayer.py create mode 100644 bitbake/lib/toaster/orm/migrations/0026_auto__add_projectavailablerecipe.py create mode 100644 bitbake/lib/toaster/orm/migrations/0027_auto__add_projectavailablepackage.py -- Regards, Ed