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 1Qm7Jc-0005De-87 for garchives@archives.gentoo.org; Wed, 27 Jul 2011 16:50:41 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0249921C08E; Wed, 27 Jul 2011 16:50:26 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id CB5ED21C08E for ; Wed, 27 Jul 2011 16:50:26 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1FB052AC005 for ; Wed, 27 Jul 2011 16:50:26 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 666238003D for ; Wed, 27 Jul 2011 16:50:25 +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: Subject: [gentoo-commits] proj/pms-test-suite:master commit in: pmstestsuite/library/standard/ X-VCS-Repository: proj/pms-test-suite X-VCS-Files: pmstestsuite/library/standard/special_vars.py X-VCS-Directories: pmstestsuite/library/standard/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: d4373bbc1dd9a8bb9fd4c0af13ef9c44ec39ceb4 Date: Wed, 27 Jul 2011 16:50:25 +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: cbc087557e5e94a4bf3ba349390880fa commit: d4373bbc1dd9a8bb9fd4c0af13ef9c44ec39ceb4 Author: Micha=C5=82 G=C3=B3rny gentoo org> AuthorDate: Wed Jul 27 16:38:57 2011 +0000 Commit: Micha=C5=82 G=C3=B3rny gentoo org> CommitDate: Wed Jul 27 16:38:57 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/pms-test-suit= e.git;a=3Dcommit;h=3Dd4373bbc Switch from pkg.metadata[] to pkg.defined_phases. --- pmstestsuite/library/standard/special_vars.py | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pmstestsuite/library/standard/special_vars.py b/pmstestsuite= /library/standard/special_vars.py index 8c35f08..eab61dc 100644 --- a/pmstestsuite/library/standard/special_vars.py +++ b/pmstestsuite/library/standard/special_vars.py @@ -57,5 +57,5 @@ class DefinedPhasesTest(DBusEbuildTestCase): if not DBusEbuildTestCase.check_dbus_result(self, output, pm): return False =20 - phases =3D pm.installed[self.atom(pm)].metadata.DEFINED_PHASES.split() - return (' '.join(phases) =3D=3D 'setup') + phases =3D pm.installed[self.atom(pm)].defined_phases + return (str(phases) =3D=3D 'setup')