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 1QZgZM-0004bf-0f for garchives@archives.gentoo.org; Thu, 23 Jun 2011 09:51:29 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6017D1C06B; Thu, 23 Jun 2011 09:51:12 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 122AA1C06B for ; Thu, 23 Jun 2011 09:51:11 +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 56F7E1B4022 for ; Thu, 23 Jun 2011 09:51:11 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 6A42680040 for ; Thu, 23 Jun 2011 09:51:10 +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: a6d2c221b4efd60a616adc7417a4d10830e6beb4 Date: Thu, 23 Jun 2011 09:51:10 +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: ae626ab18e25694bcc32e6736aac2ed8 commit: a6d2c221b4efd60a616adc7417a4d10830e6beb4 Author: Micha=C5=82 G=C3=B3rny gentoo org> AuthorDate: Thu Jun 23 09:32:10 2011 +0000 Commit: Micha=C5=82 G=C3=B3rny gentoo org> CommitDate: Thu Jun 23 09:32:10 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/pms-test-suit= e.git;a=3Dcommit;h=3Da6d2c221 Make RDEPEND=3D${DEPEND} fallback test use metadata. --- PMSTestSuite/library/standard/special_vars.py | 7 +------ 1 files changed, 1 insertions(+), 6 deletions(-) diff --git a/PMSTestSuite/library/standard/special_vars.py b/PMSTestSuite= /library/standard/special_vars.py index 2ff93d8..63301c4 100644 --- a/PMSTestSuite/library/standard/special_vars.py +++ b/PMSTestSuite/library/standard/special_vars.py @@ -28,15 +28,10 @@ class RDependFallbackTest(DBusEbuildTestCase): # that one shall be pretty portable 'DEPEND': 'virtual/libc' } - phase_funcs =3D { - 'src_compile': [ - 'pms-test-dbus_append_result "${RDEPEND}"' - ] - } =20 def check_dbus_result(self, output, pm): # in EAPI 4, expect empty RDEPEND # in older EAPIs, expect DEPEND =20 - return ((self.eapi =3D=3D 4) !=3D ('virtual/libc' in output)) \ + return ((self.eapi =3D=3D 4) !=3D ('virtual/libc' in pm.vdb[self.cpv].= RDEPEND.split())) \ and DBusEbuildTestCase.check_dbus_result(self, output, pm)