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 <gentoo-commits+bounces-391816-garchives=archives.gentoo.org@lists.gentoo.org>) id 1REa5B-0006ar-DH for garchives@archives.gentoo.org; Fri, 14 Oct 2011 05:13:21 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 83FE021C027; Fri, 14 Oct 2011 05:13:13 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 573E421C027 for <gentoo-commits@lists.gentoo.org>; Fri, 14 Oct 2011 05:13:13 +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 D6F191B401A for <gentoo-commits@lists.gentoo.org>; Fri, 14 Oct 2011 05:13:12 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 0FB3980042 for <gentoo-commits@lists.gentoo.org>; Fri, 14 Oct 2011 05:13:12 +0000 (UTC) From: "Zac Medico" <zmedico@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Zac Medico" <zmedico@gentoo.org> Message-ID: <55dd7bc8587f4ef48a4ff6ddd4e176fbb72d118d.zmedico@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: bin/ X-VCS-Repository: proj/portage X-VCS-Files: bin/quickpkg X-VCS-Directories: bin/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: 55dd7bc8587f4ef48a4ff6ddd4e176fbb72d118d Date: Fri, 14 Oct 2011 05:13:12 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: X-Archives-Hash: edc7a2f2006a9671f81e2ded4d5e0d29 commit: 55dd7bc8587f4ef48a4ff6ddd4e176fbb72d118d Author: Zac Medico <zmedico <AT> gentoo <DOT> org> AuthorDate: Fri Oct 14 05:13:03 2011 +0000 Commit: Zac Medico <zmedico <AT> gentoo <DOT> org> CommitDate: Fri Oct 14 05:13:03 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/portage.git;a= =3Dcommit;h=3D55dd7bc8 quickpkg: optimize */* matches --- bin/quickpkg | 5 +++++ 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/bin/quickpkg b/bin/quickpkg index 6947224..ced2468 100755 --- a/bin/quickpkg +++ b/bin/quickpkg @@ -198,6 +198,11 @@ def quickpkg_extended_atom(options, infos, atom, eou= t): atoms =3D [] for cpv in vardb.cpv_all(): cpv_atom =3D Atom("=3D%s" % cpv) + + if atom =3D=3D "*/*": + atoms.append(cpv_atom) + continue + if not extended_cp_match(atom.cp, cpv_atom.cp): continue =20