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 1QQlBC-0001aH-Pg for garchives@archives.gentoo.org; Sun, 29 May 2011 18:57:38 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3F9E81C0AD; Sun, 29 May 2011 18:57:16 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 0C8B01C0AD for ; Sun, 29 May 2011 18:57:15 +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 779451B4016 for ; Sun, 29 May 2011 18:57:15 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id B485C80510 for ; Sun, 29 May 2011 18:57:14 +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/pm/ X-VCS-Repository: proj/pms-test-suite X-VCS-Files: PMSTestSuite/pm/portage.py X-VCS-Directories: PMSTestSuite/pm/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: eb3225fbda2b972f372bcdef63a83777f25d081e Date: Sun, 29 May 2011 18:57:14 +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: acf1b48fd1505b74fa733c06c3d1f503 commit: eb3225fbda2b972f372bcdef63a83777f25d081e Author: Micha=C5=82 G=C3=B3rny gentoo org> AuthorDate: Sun May 29 18:42:05 2011 +0000 Commit: Micha=C5=82 G=C3=B3rny gentoo org> CommitDate: Sun May 29 18:42:05 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/pms-test-suit= e.git;a=3Dcommit;h=3Deb3225fb Implement minimal PortagePM.merge(). --- PMSTestSuite/pm/portage.py | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/PMSTestSuite/pm/portage.py b/PMSTestSuite/pm/portage.py index c63fd49..8326856 100644 --- a/PMSTestSuite/pm/portage.py +++ b/PMSTestSuite/pm/portage.py @@ -30,3 +30,7 @@ class PortagePM(PackageManager): for path in paths: os.chdir(path) subprocess.check_call([self.repoman_path, 'manifest']) + + def merge(self, atoms): + ret =3D subprocess.call([self.emerge_path] + atoms) + return ret =3D=3D 0