From: "Michał Górny" <mgorny@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] proj/gentoopm:master commit in: gentoopm/portagepm/
Date: Fri, 8 Jul 2011 07:18:18 +0000 (UTC) [thread overview]
Message-ID: <437025a128f7b79e4fa2e1ef4cf4991dcc4ceb7b.mgorny@gentoo> (raw)
commit: 437025a128f7b79e4fa2e1ef4cf4991dcc4ceb7b
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Fri Jul 8 06:48:53 2011 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri Jul 8 06:48:53 2011 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/gentoopm.git;a=commit;h=437025a1
Portage: use unevaluated atoms.
Instead of expanding atoms to categories, just don't match on category.
---
gentoopm/portagepm/atom.py | 34 +++++++++++++++++++++++++++-------
1 files changed, 27 insertions(+), 7 deletions(-)
diff --git a/gentoopm/portagepm/atom.py b/gentoopm/portagepm/atom.py
index 5c5ca69..ccd272f 100644
--- a/gentoopm/portagepm/atom.py
+++ b/gentoopm/portagepm/atom.py
@@ -10,18 +10,20 @@ from portage.versions import catsplit
from gentoopm.basepm.atom import PMAtom
-class PortageAtom(PMAtom):
- def __init__(self, s, pm):
+class PortageAtom(object):
+ def __new__(self, s, pm):
try:
- a = dep_expand(s, mydb = pm._portdb,
- settings = pm._portdb.settings)
- except pe.AmbiguousPackageName:
- raise KeyError('Ambiguous atom: %s' % s)
+ a = dep_expand(s, settings = pm._portdb.settings)
except pe.InvalidAtom:
raise ValueError('Incorrect atom: %s' % s)
if catsplit(a.cp)[0] == 'null':
- raise KeyError('Unable to expand atom: %s' % s)
+ return UnexpandedPortageAtom(a)
+ else:
+ return CompletePortageAtom(a)
+
+class CompletePortageAtom(PMAtom):
+ def __init__(self, a):
self._atom = a
def __contains__(self, pkg):
@@ -30,3 +32,21 @@ class PortageAtom(PMAtom):
return False
return not self._atom.slot \
or self._atom.slot == pkg.metadata.SLOT
+
+class UncategorisedPackageWrapper(object):
+ def __init__(self, pkg):
+ self._pkg = pkg
+
+ @property
+ def id(self):
+ cpv = self._pkg.id
+ return 'null/%s' % catsplit(cpv)[1]
+
+class UnexpandedPortageAtom(CompletePortageAtom):
+ """
+ An atom without a category specified.
+ """
+
+ def __contains__(self, pkg):
+ return CompletePortageAtom.__contains__(self,
+ UncategorisedPackageWrapper(pkg))
next reply other threads:[~2011-07-08 7:18 UTC|newest]
Thread overview: 32+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-07-08 7:18 Michał Górny [this message]
-- strict thread matches above, loose matches on Subject: below --
2013-02-16 10:13 [gentoo-commits] proj/gentoopm:master commit in: gentoopm/portagepm/ Michał Górny
2013-02-03 19:40 Michał Górny
2012-12-10 17:52 Michał Górny
2011-08-15 7:57 Michał Górny
2011-08-14 14:22 Michał Górny
2011-08-12 7:28 Michał Górny
2011-07-28 16:24 Michał Górny
2011-07-28 16:24 Michał Górny
2011-07-27 16:04 Michał Górny
2011-07-27 8:26 Michał Górny
2011-07-26 17:30 Michał Górny
2011-07-26 17:18 Michał Górny
2011-07-25 17:06 Michał Górny
2011-07-21 8:47 Michał Górny
2011-07-21 8:47 Michał Górny
2011-07-20 9:41 Michał Górny
2011-07-19 20:53 Michał Górny
2011-07-19 20:53 Michał Górny
2011-07-19 20:53 Michał Górny
2011-07-19 20:53 Michał Górny
2011-07-15 13:32 Michał Górny
2011-07-15 12:34 Michał Górny
2011-07-15 8:39 Michał Górny
2011-07-14 14:05 Michał Górny
2011-07-14 13:31 Michał Górny
2011-07-10 22:17 Michał Górny
2011-07-10 22:17 Michał Górny
2011-07-10 22:17 Michał Górny
2011-07-07 9:51 Michał Górny
2011-07-06 20:54 Michał Górny
2011-07-06 16:03 Michał Górny
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=437025a128f7b79e4fa2e1ef4cf4991dcc4ceb7b.mgorny@gentoo \
--to=mgorny@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@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