summaryrefslogtreecommitdiff
path: root/app-portage/porthole/files
diff options
context:
space:
mode:
Diffstat (limited to 'app-portage/porthole/files')
-rw-r--r--app-portage/porthole/files/porthole-0.6.1-masking_status.patch17
-rw-r--r--app-portage/porthole/files/porthole-0.6.1-missing-attribute.patch14
-rw-r--r--app-portage/porthole/files/porthole-0.6.1-missing_import.patch19
3 files changed, 0 insertions, 50 deletions
diff --git a/app-portage/porthole/files/porthole-0.6.1-masking_status.patch b/app-portage/porthole/files/porthole-0.6.1-masking_status.patch
deleted file mode 100644
index e626fbb3c58f..000000000000
--- a/app-portage/porthole/files/porthole-0.6.1-masking_status.patch
+++ /dev/null
@@ -1,17 +0,0 @@
-Index: porthole/backends/portagelib.py
-===================================================================
---- porthole/backends/portagelib.py (revision 1209)
-+++ porthole/backends/portagelib.py (working copy)
-@@ -452,7 +452,11 @@
-
-
- def get_masking_status(ebuild):
-- return portage.getmaskingstatus(ebuild)
-+ try:
-+ status = portage.getmaskingstatus(ebuild)
-+ except KeyError:
-+ status = ['deprecated']
-+ return status
-
-
- def get_masking_reason(ebuild):
diff --git a/app-portage/porthole/files/porthole-0.6.1-missing-attribute.patch b/app-portage/porthole/files/porthole-0.6.1-missing-attribute.patch
deleted file mode 100644
index aa011a174b17..000000000000
--- a/app-portage/porthole/files/porthole-0.6.1-missing-attribute.patch
+++ /dev/null
@@ -1,14 +0,0 @@
-diff -uNr porthole/db/user_configs.py.old porthole/db/user_configs.py
-
---- porthole/db/user_configs.py.old 2010-11-27 13:34:35.000000000 +0600
-+++ porthole/db/user_configs.py 2010-11-27 13:31:24.000000000 +0600
-@@ -364,7 +364,7 @@
- debug.dprint("USER_CONFIGS: set_user_config(): add: " +
- "%s,\n remove: %s " %(str(add),str(remove)))
- set_config.set_user_config(filename=file, name=name, ebuild=ebuild,
-- comment=comment, username=privileges.USER,
-+ comment=comment, username=privileges.user,
- add=add, remove=remove)
- self.set_config_callback()
- else:
- \ No newline at end of file
diff --git a/app-portage/porthole/files/porthole-0.6.1-missing_import.patch b/app-portage/porthole/files/porthole-0.6.1-missing_import.patch
deleted file mode 100644
index 33c9e4ee3353..000000000000
--- a/app-portage/porthole/files/porthole-0.6.1-missing_import.patch
+++ /dev/null
@@ -1,19 +0,0 @@
---- porthole/db/user_configs.py 2010/03/20 12:32:29 1217
-+++ porthole/db/user_configs.py 2010/03/20 14:10:46 1218
-@@ -36,6 +36,7 @@
- from porthole import backends
- portage_lib = backends.portage_lib
- from porthole.utils import debug
-+from porthole.privilege import controller as privileges
-
- ## set up this module to act as a user configs data server,
- ## watch the user configs for changes and auto update
-@@ -363,7 +364,7 @@
- debug.dprint("USER_CONFIGS: set_user_config(): add: " +
- "%s,\n remove: %s " %(str(add),str(remove)))
- set_config.set_user_config(filename=file, name=name, ebuild=ebuild,
-- comment=comment, username=priviliges.USER,
-+ comment=comment, username=privileges.USER,
- add=add, remove=remove)
- self.set_config_callback()
- else: