public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Zac Medico (zmedico)" <zmedico@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] portage r10410 - main/trunk/pym/portage/dbapi
Date: Sun, 25 May 2008 04:37:56 +0000	[thread overview]
Message-ID: <E1K07zY-0004f2-Po@stork.gentoo.org> (raw)

Author: zmedico
Date: 2008-05-25 04:37:55 +0000 (Sun, 25 May 2008)
New Revision: 10410

Modified:
   main/trunk/pym/portage/dbapi/porttree.py
Log:
Remove redundant SLOT dep code in portdbapi.xmatch() since it's now
handled by dbapi._iter_match().


Modified: main/trunk/pym/portage/dbapi/porttree.py
===================================================================
--- main/trunk/pym/portage/dbapi/porttree.py	2008-05-25 04:23:16 UTC (rev 10409)
+++ main/trunk/pym/portage/dbapi/porttree.py	2008-05-25 04:37:55 UTC (rev 10410)
@@ -607,7 +607,6 @@
 			mydep = dep_expand(origdep, mydb=self, settings=self.mysettings)
 			mykey = dep_getkey(mydep)
 
-		myslot = dep_getslot(mydep)
 		if level == "list-visible":
 			#a list of all visible packages, not called directly (just by xmatch())
 			#myval = self.visible(self.cp_list(mykey))
@@ -650,7 +649,7 @@
 					continue
 				if not eapi_is_supported(metadata["EAPI"]):
 					continue
-				if myslot and myslot != metadata["SLOT"]:
+				if mydep.slot and mydep.slot != metadata["SLOT"]:
 					continue
 				if settings.getMissingKeywords(cpv, metadata):
 					continue
@@ -700,15 +699,7 @@
 		else:
 			print "ERROR: xmatch doesn't handle", level, "query!"
 			raise KeyError
-		if myslot is not None and isinstance(myval, list):
-			slotmatches = []
-			for cpv in myval:
-				try:
-					if self.aux_get(cpv, ["SLOT"])[0] == myslot:
-						slotmatches.append(cpv)
-				except KeyError:
-					pass # ebuild masked by corruption
-			myval = slotmatches
+
 		if self.frozen and (level not in ["match-list", "bestmatch-list"]):
 			self.xcache[level][mydep] = myval
 			if origdep and origdep != mydep:

-- 
gentoo-commits@lists.gentoo.org mailing list



                 reply	other threads:[~2008-05-25  4:37 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=E1K07zY-0004f2-Po@stork.gentoo.org \
    --to=zmedico@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox