summaryrefslogtreecommitdiff
path: root/portato/backend/portage/sets.py
diff options
context:
space:
mode:
authorRené 'Necoro' Neumann <necoro@necoro.net>2009-01-15 14:04:34 +0100
committerRené 'Necoro' Neumann <necoro@necoro.net>2009-01-15 14:04:34 +0100
commite828764aa48543e849d601284e58ad6c775c0c23 (patch)
tree10b68356bd183033f6b8fbfd0ab100b6e3918aae /portato/backend/portage/sets.py
parent2fff426e80aa9a0b348577983dfa5760b0b3300a (diff)
downloadportato-e828764aa48543e849d601284e58ad6c775c0c23.tar.gz
portato-e828764aa48543e849d601284e58ad6c775c0c23.tar.bz2
portato-e828764aa48543e849d601284e58ad6c775c0c23.zip
Removed old, deprecated portage_dep imports
Diffstat (limited to '')
-rw-r--r--portato/backend/portage/sets.py6
1 files changed, 1 insertions, 5 deletions
diff --git a/portato/backend/portage/sets.py b/portato/backend/portage/sets.py
index 4d7df73..53025ab 100644
--- a/portato/backend/portage/sets.py
+++ b/portato/backend/portage/sets.py
@@ -16,10 +16,6 @@ import re
import itertools as itt
import portage
-try:
- import portage.dep as portage_dep
-except ImportError:
- import portage_dep
from .. import system
from ...helper import debug
@@ -59,7 +55,7 @@ class FilterSet (Set):
if not re.match(key, pkg, re.I): continue
if not with_version:
- t.add(portage_dep.dep_getkey(pkg))
+ t.add(portage.dep.dep_getkey(pkg))
else:
t.add(system.find_best_match(pkg, only_cpv = True))
ho mode.Jason A. Donenfeld2-16/+42 2012-09-04Properly quote the path too.Jason A. Donenfeld1-1/+1 2012-09-04Allow passwords having spaces to go unbroken to the clipboard.Bernardo Freitas Paulo da Costa1-1/+1 2012-09-04Separate out the massive git example.Jason A. Donenfeld1-10/+14 2012-09-04Prepare for debianification.1.0Jason A. Donenfeld9-4/+60 2012-09-03Fix readme typo.Jason A. Donenfeld1-1/+1 2012-09-03Show program name properly in error message.Jason A. Donenfeld1-1/+1 2012-09-03Move examples into manpage.Jason A. Donenfeld4-93/+224 2012-09-03Make into a real project.Jason A. Donenfeld8-5/+173 2012-09-03Support pass gitJason A. Donenfeld2-1/+15 2012-08-31Add remove synonyms.Jason A. Donenfeld1-2/+2 2012-08-31Use basename in usage.Jason A. Donenfeld1-2/+1 2012-08-19now using gpg_id as a varMatthew Ramirez1-2/+2 2012-08-07Forty five seconds.Jason A. Donenfeld1-1/+1 2012-08-06Deal with klipper and new lines.Jason A. Donenfeld1-3/+19 2012-08-06Update examples.Jason A. Donenfeld1-7/+7 2012-08-06Update readme.Jason A. Donenfeld1-11/+13 2012-08-06Be slicker and more like git.Jason A. Donenfeld1-114/+173