summaryrefslogtreecommitdiff
path: root/portato
diff options
context:
space:
mode:
Diffstat (limited to 'portato')
-rw-r--r--portato/backend/portage/system.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/portato/backend/portage/system.py b/portato/backend/portage/system.py
index 990a39a..030c120 100644
--- a/portato/backend/portage/system.py
+++ b/portato/backend/portage/system.py
@@ -235,7 +235,11 @@ class PortageSystem (SystemInterface):
return filter(self.find_lambda(name), categories)
def split_cpv (self, cpv):
- cpv = portage.dep_getcpv(cpv)
+ try:
+ cpv = portage.dep_getcpv(cpv)
+ except portage.exception.InvalidAtom:
+ pass
+
return portage.catpkgsplit(cpv)
def sort_package_list(self, pkglist, only_cpv = False):
1'>Fix optional 'description' fieldRené 'Necoro' Neumann2-2/+2 2020-07-24Revert "Remove translation hack"René 'Necoro' Neumann1-1/+7 This reverts commit 6600ae0674bc685c4756a040b4db47e927f2e15e. 2020-07-24length validators for string fieldsRené 'Necoro' Neumann4-3/+9 2020-07-24Fix handling of prefilling the description field on adding a new expense.René 'Necoro' Neumann1-9/+6 2020-07-24Remove translation hackRené 'Necoro' Neumann1-7/+1 2020-07-24Improved debuggingRené 'Necoro' Neumann2-1/+2 2020-07-23RestructureRené 'Necoro' Neumann51-2/+3 2020-07-22Do not write bytecode for local debug runningRené 'Necoro' Neumann1-1/+4 2020-07-22Remove left over mention of jquery-uiRené 'Necoro' Neumann1-6/+1 2020-07-22Add simplejson as a dependencyRené 'Necoro' Neumann1-0/+1 2020-07-22Settings splittingRené 'Necoro' Neumann2-5/+3 2020-07-22Add flipflopRené 'Necoro' Neumann1-0/+1