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 1QQlBM-0001cc-9u for garchives@archives.gentoo.org; Sun, 29 May 2011 18:57:48 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 72F6B1C0C2; 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 440E51C0C2 for ; Sun, 29 May 2011 18:57:16 +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 C8D962AC029 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 28BCD8050A for ; Sun, 29 May 2011 18:57:15 +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: a7a0ed61a9b96b62a9d428e693bbf1c12c901fb4 Date: Sun, 29 May 2011 18:57:15 +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: 46f9bc6f69c4e42f9fdbeae829390586 commit: a7a0ed61a9b96b62a9d428e693bbf1c12c901fb4 Author: Micha=C5=82 G=C3=B3rny gentoo org> AuthorDate: Sun May 29 18:52:17 2011 +0000 Commit: Micha=C5=82 G=C3=B3rny gentoo org> CommitDate: Sun May 29 18:52:17 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/pms-test-suit= e.git;a=3Dcommit;h=3Da7a0ed61 Return to start directory after creating Manifests. --- PMSTestSuite/pm/portage.py | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/PMSTestSuite/pm/portage.py b/PMSTestSuite/pm/portage.py index 8a7763f..d31bd44 100644 --- a/PMSTestSuite/pm/portage.py +++ b/PMSTestSuite/pm/portage.py @@ -29,9 +29,11 @@ class PortagePM(PackageManager): return ret =20 def remanifest(self, paths): + startdir =3D os.getcwd() for path in paths: os.chdir(path) subprocess.check_call([self.repoman_path, 'manifest']) + os.chdir(startdir) =20 def merge(self, atoms): ret =3D subprocess.call([self.emerge_path] + atoms,