From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by yocto-www.yoctoproject.org (Postfix, from userid 118) id 117B8E00A4F; Wed, 25 Nov 2015 16:00:06 -0800 (PST) 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.24 listed in list.dnswl.org] * -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% * [score: 0.0000] Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by yocto-www.yoctoproject.org (Postfix) with ESMTP id 78081E007C9 for ; Wed, 25 Nov 2015 16:00:02 -0800 (PST) Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by orsmga102.jf.intel.com with ESMTP; 25 Nov 2015 16:00:01 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.20,344,1444719600"; d="scan'208";a="847188721" Received: from alimonb-mobl1.zpn.intel.com ([10.219.5.171]) by fmsmga001.fm.intel.com with ESMTP; 25 Nov 2015 16:00:01 -0800 From: =?UTF-8?q?An=C3=ADbal=20Lim=C3=B3n?= To: yocto@yoctoproject.org Date: Wed, 25 Nov 2015 18:00:29 -0600 Message-Id: <1448496046-13186-1-git-send-email-anibal.limon@linux.intel.com> X-Mailer: git-send-email 2.1.4 MIME-Version: 1.0 Cc: paul.eggleton@linux.intel.com Subject: [[AUH] 00/17] AUH code refactor and support test image. X-BeenThere: yocto@yoctoproject.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: Discussion of all things Yocto Project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 26 Nov 2015 00:00:06 -0000 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The following patchset contains, - A refactor of AUH code clean-up and improve source tree. - A implementation of testimage that do ptest and sato testimages. - New settings for publish patches and logs generated by AUH. - Improvements on the status email. The changes can also be found at, http://git.yoctoproject.org/cgit/cgit.cgi/auto-upgrade-helper/log/?h=boot_images_v2 Aníbal Limón (17): {upgradehelper, bitbake}.py: Move _get_env function to bitbake upgradehelper.py: Merge options into a dictionary upgradehelper.py: Adds own module for steps upgradehelper: Reorder files into directories. buildhistory: Add option for enable in upgrade-helper.conf recipe/base.py: Add is_recipe_or_include_file func recipe/base.py: Add modify_recipe_files function decorator recipe/base.py: Add support for get recipe inherits. steps.py: Merge load_dirs step into load_env. steps.py: Move clean_repo to first step. utils/git.py: Add method for apply patches into a branch. upgradehelper.py: Add settings for enable testimage. upgradehelper: Add testimage feature. upgradehelper.py: Changed retry failure build to 30 days. upgradehelper: Add workdir setting. statistics: Improve email format and get_summary method. statistics: Add support for publish_work_url setting. README | 40 ++- bitbake.py | 107 ------- buildhistory.py | 75 ----- emailhandler.py | 108 ------- errors.py | 93 ------ git.py | 101 ------- gitrecipe.py | 94 ------ modules/buildhistory.py | 75 +++++ modules/errors.py | 93 ++++++ modules/recipe/__init__.py | 0 modules/recipe/base.py | 682 ++++++++++++++++++++++++++++++++++++++++++ modules/recipe/git.py | 94 ++++++ modules/recipe/svn.py | 28 ++ modules/statistics.py | 112 +++++++ modules/steps.py | 144 +++++++++ modules/testimage.py | 185 ++++++++++++ modules/utils/__init__.py | 0 modules/utils/bitbake.py | 124 ++++++++ modules/utils/emailhandler.py | 108 +++++++ modules/utils/git.py | 105 +++++++ recipe.py | 669 ----------------------------------------- statistics.py | 102 ------- svnrecipe.py | 28 -- upgradehelper.py | 505 +++++++++++++++---------------- 24 files changed, 2042 insertions(+), 1630 deletions(-) delete mode 100644 bitbake.py delete mode 100644 buildhistory.py delete mode 100644 emailhandler.py delete mode 100644 errors.py delete mode 100644 git.py delete mode 100644 gitrecipe.py create mode 100644 modules/buildhistory.py create mode 100644 modules/errors.py create mode 100644 modules/recipe/__init__.py create mode 100644 modules/recipe/base.py create mode 100644 modules/recipe/git.py create mode 100644 modules/recipe/svn.py create mode 100644 modules/statistics.py create mode 100644 modules/steps.py create mode 100644 modules/testimage.py create mode 100644 modules/utils/__init__.py create mode 100644 modules/utils/bitbake.py create mode 100644 modules/utils/emailhandler.py create mode 100644 modules/utils/git.py delete mode 100644 recipe.py delete mode 100644 statistics.py delete mode 100644 svnrecipe.py -- 2.1.4