summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--portato/backend/portage_helper.py6
1 files changed, 1 insertions, 5 deletions
diff --git a/portato/backend/portage_helper.py b/portato/backend/portage_helper.py
index 1cc952f..be4c76c 100644
--- a/portato/backend/portage_helper.py
+++ b/portato/backend/portage_helper.py
@@ -324,11 +324,7 @@ def update_world (newuse = False, deep = False):
world.close()
# append system packages
- sys = find_all_system_packages()
- for x in sys:
- if x[0] == "*": # some packages are stored with a '*' at the front - ignore it
- x = x[1:]
- packages.append(x.strip())
+ packages.extend(unique_array([p.get_cp() for p in find_all_system_packages()]))
def get_new_packages (packages):
new_packages = []
7c0c6382eb8fadcc54d1d8a00075c38a29&follow=1'>First qt draftnecoro6-1/+796 2007-04-04showed masked packages unmasked by the user similar to stable marked testing ...necoro5-13/+40 2007-03-31changed changelognecoro1-1/+2 2007-03-31Some small changes for etcproposals 1.1necoro1-2/+2 2007-03-31Some small changes for etcproposals 1.1necoro2-3/+3 2007-03-31Some small changes for etcproposals 1.1necoro1-6/+13 2007-03-31Allowed Plugins to have a menunecoro7-201/+315 2007-03-15Added etc-proposals pluginnecoro7-28/+121 2007-03-10Added USE_EXPAND-supportnecoro5-11/+63 2007-03-10Added plugin-data to about-dialognecoro3-197/+264