From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1QMk3O-00066w-RX for garchives@archives.gentoo.org; Wed, 18 May 2011 16:56:59 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CE00A1C054; Wed, 18 May 2011 16:56:51 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id A06B51C054 for ; Wed, 18 May 2011 16:56:51 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1973E1B4003 for ; Wed, 18 May 2011 16:56:51 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 6017345973 for ; Wed, 18 May 2011 16:56:50 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <5064ecb5c2ebd7cbfe4927991ec1320a6fcc09ee.mgorny@gentoo> Subject: [gentoo-commits] proj/pms-test-suite-library:master commit in: basic/ X-VCS-Repository: proj/pms-test-suite-library X-VCS-Files: basic/phase-function-order.lua basic/phase-function-order.py X-VCS-Directories: basic/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 5064ecb5c2ebd7cbfe4927991ec1320a6fcc09ee Date: Wed, 18 May 2011 16:56:50 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: X-Archives-Hash: 663c786369f96dddab3fdb7b4d04ddc1 commit: 5064ecb5c2ebd7cbfe4927991ec1320a6fcc09ee Author: Micha=C5=82 G=C3=B3rny gentoo org> AuthorDate: Wed May 18 16:40:12 2011 +0000 Commit: Micha=C5=82 G=C3=B3rny gentoo org> CommitDate: Wed May 18 16:40:12 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/pms-test-suit= e-library.git;a=3Dcommit;h=3D5064ecb5 Move ebuilds vars to a separate dict. --- basic/phase-function-order.lua | 4 +++- basic/phase-function-order.py | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/basic/phase-function-order.lua b/basic/phase-function-order.= lua index 90bf193..291546c 100644 --- a/basic/phase-function-order.lua +++ b/basic/phase-function-order.lua @@ -15,7 +15,9 @@ phase_funcs=3D{ } =20 -- ebuild vars -DESCRIPTION=3D"Phase function execution order test" +ebuild_vars=3D{ + DESCRIPTION=3D"Phase function execution order test" +} =20 -- phase functions for func in pairs(phase_funcs) do diff --git a/basic/phase-function-order.py b/basic/phase-function-order.p= y index 59307f9..01e71c9 100644 --- a/basic/phase-function-order.py +++ b/basic/phase-function-order.py @@ -11,7 +11,9 @@ class EbuildTest(object): class PhaseFunctionOrderTest(EbuildTest): relevant_eapis =3D (0, 2, 4) =20 - DESCRIPTION =3D 'Phase function execution order test' + ebuild_vars =3D { + 'DESCRIPTION': 'Phase function execution order test' + } =20 def __init__(self): for func in self.phase_funcs.keys():