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 1SZpSX-0006OH-4P for garchives@archives.gentoo.org; Wed, 30 May 2012 20:25:33 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A377AE07C0; Wed, 30 May 2012 20:25:25 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 6D694E07C0 for ; Wed, 30 May 2012 20:25:25 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id CDAAA1B4001 for ; Wed, 30 May 2012 20:25:24 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id CB45BE5428 for ; Wed, 30 May 2012 20:25:22 +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: <1338409508.b6fa4dbba0297226ade42ad86b8ca95a5764e34b.zmedico@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: pym/_emerge/ X-VCS-Repository: proj/portage X-VCS-Files: pym/_emerge/depgraph.py X-VCS-Directories: pym/_emerge/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: b6fa4dbba0297226ade42ad86b8ca95a5764e34b X-VCS-Branch: master Date: Wed, 30 May 2012 20:25:22 +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: 9b8859f7-8de7-4b70-8464-7184f506b699 X-Archives-Hash: aff0126f5ae2610b7d7a0e7e4259b841 commit: b6fa4dbba0297226ade42ad86b8ca95a5764e34b Author: Zac Medico gentoo org> AuthorDate: Wed May 30 20:25:08 2012 +0000 Commit: Zac Medico gentoo org> CommitDate: Wed May 30 20:25:08 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/portage.git;a= =3Dcommit;h=3Db6fa4dbb _wildcard_set: specify allow_repo=3DFalse This make is behave as it did prior to the change in Atom constructor behavior in commit 587cce4816afc7d57b3edf0be6c0670ec0be89c9. --- pym/_emerge/depgraph.py | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pym/_emerge/depgraph.py b/pym/_emerge/depgraph.py index 572cea7..be49b0f 100644 --- a/pym/_emerge/depgraph.py +++ b/pym/_emerge/depgraph.py @@ -85,9 +85,9 @@ def _wildcard_set(atoms): pkgs =3D InternalPackageSet(allow_wildcard=3DTrue) for x in atoms: try: - x =3D Atom(x, allow_wildcard=3DTrue) + x =3D Atom(x, allow_wildcard=3DTrue, allow_repo=3DFalse) except portage.exception.InvalidAtom: - x =3D Atom("*/" + x, allow_wildcard=3DTrue) + x =3D Atom("*/" + x, allow_wildcard=3DTrue, allow_repo=3DFalse) pkgs.add(x) return pkgs =20