From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by yocto-www.yoctoproject.org (Postfix, from userid 118) id 86312E00982; Wed, 10 Jun 2015 09:30:19 -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.65 listed in list.dnswl.org] * -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% * [score: 0.0000] Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by yocto-www.yoctoproject.org (Postfix) with ESMTP id 55FFEE00982 for ; Wed, 10 Jun 2015 09:30:15 -0700 (PDT) Received: from orsmga003.jf.intel.com ([10.7.209.27]) by orsmga103.jf.intel.com with ESMTP; 10 Jun 2015 09:30:16 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.13,588,1427785200"; d="scan'208";a="585476974" Received: from yctb03.ostc.intel.com (HELO yctb03.otcr.jf.intel.com) ([10.23.219.52]) by orsmga003.jf.intel.com with ESMTP; 10 Jun 2015 09:30:14 -0700 From: =?UTF-8?q?An=C3=ADbal=20Lim=C3=B3n?= To: yocto@yoctoproject.org Date: Wed, 10 Jun 2015 16:28:47 +0000 Message-Id: <1433953732-29963-7-git-send-email-anibal.limon@linux.intel.com> X-Mailer: git-send-email 1.8.4.5 In-Reply-To: <1433953732-29963-1-git-send-email-anibal.limon@linux.intel.com> References: <1433953732-29963-1-git-send-email-anibal.limon@linux.intel.com> MIME-Version: 1.0 Cc: paul.eggleton@linux.intel.com Subject: [PATCH 06/11][auh] upgradehelper.py: Add specific information about machines build succeed. 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: Wed, 10 Jun 2015 16:30:19 -0000 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Use build machines in email to maintainers instead of put that the build succeed in major arch's, this give to the maintainer non ambiguos info. [YOCTO #7489] Signed-off-by: Aníbal Limón --- upgradehelper.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/upgradehelper.py b/upgradehelper.py index 953f86e..266435d 100755 --- a/upgradehelper.py +++ b/upgradehelper.py @@ -365,7 +365,7 @@ class Updater(object): "variable in the recipe if is needed.\n\n" next_steps_info = \ - "The recipe has been successfully compiled for all major architectures.\n\n" \ + "The recipe has been successfully compiled for machines %s.\n\n" \ "Next steps:\n" \ " - apply the patch: git am %s\n" \ " - check that required patches have not been removed from the recipe\n" \ @@ -401,7 +401,8 @@ class Updater(object): msg_body += license_change_info % license_diff_fn if err is None: - msg_body += next_steps_info % os.path.basename(self.patch_file) + msg_body += next_steps_info % (', '.join(self.machines), + os.path.basename(self.patch_file)) msg_body += mail_footer -- 1.8.4.5