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 1R4mDX-0002gv-1F for garchives@archives.gentoo.org; Sat, 17 Sep 2011 04:09:27 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2877321C05E; Sat, 17 Sep 2011 04:09:20 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id F06E721C05E for ; Sat, 17 Sep 2011 04:09:19 +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 7AB081B4014 for ; Sat, 17 Sep 2011 04:09:19 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 9EA0B80044 for ; Sat, 17 Sep 2011 04:09:18 +0000 (UTC) From: "Zac Medico" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Zac Medico" Message-ID: <4242e2ce17105cd9a55ee8027c2be795b7c6e91e.zmedico@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: bin/ X-VCS-Repository: proj/portage X-VCS-Files: bin/repoman X-VCS-Directories: bin/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: 4242e2ce17105cd9a55ee8027c2be795b7c6e91e Date: Sat, 17 Sep 2011 04:09:18 +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: 498f54257506e4a895668dae5bb09780 commit: 4242e2ce17105cd9a55ee8027c2be795b7c6e91e Author: Zac Medico gentoo org> AuthorDate: Sat Sep 17 04:09:02 2011 +0000 Commit: Zac Medico gentoo org> CommitDate: Sat Sep 17 04:09:02 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/portage.git;a= =3Dcommit;h=3D4242e2ce repoman: quote paths in PORTDIR_OVERLAY This will fix bug #383269. --- bin/repoman | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/bin/repoman b/bin/repoman index b95fc03..7532a99 100755 --- a/bin/repoman +++ b/bin/repoman @@ -572,7 +572,8 @@ if options.mode =3D=3D 'commit' and not options.prete= nd and not vcs: # Ensure that PORTDIR_OVERLAY contains the repository corresponding to $= PWD. repoman_settings =3D portage.config(local_config=3DFalse, _eprefix=3Depr= efix) repoman_settings['PORTDIR_OVERLAY'] =3D "%s %s" % \ - (repoman_settings.get('PORTDIR_OVERLAY', ''), portdir_overlay) + (repoman_settings.get('PORTDIR_OVERLAY', ''), + portage._shell_quote(portdir_overlay)) # We have to call the config constructor again so # that config.repositories is initialized correctly. repoman_settings =3D portage.config(local_config=3DFalse, _eprefix=3Depr= efix,