summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/ui/crumbs/hobeventhandler.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/bb/ui/crumbs/hobeventhandler.py')
-rw-r--r--bitbake/lib/bb/ui/crumbs/hobeventhandler.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/bitbake/lib/bb/ui/crumbs/hobeventhandler.py b/bitbake/lib/bb/ui/crumbs/hobeventhandler.py
index 624d7b55f3..d2f4589774 100644
--- a/bitbake/lib/bb/ui/crumbs/hobeventhandler.py
+++ b/bitbake/lib/bb/ui/crumbs/hobeventhandler.py
@@ -304,9 +304,6 @@ class HobHandler(gobject.GObject):
304 def set_ftp_proxy(self, ftp_proxy): 304 def set_ftp_proxy(self, ftp_proxy):
305 self.runCommand(["setVariable", "ftp_proxy", ftp_proxy]) 305 self.runCommand(["setVariable", "ftp_proxy", ftp_proxy])
306 306
307 def set_all_proxy(self, all_proxy):
308 self.runCommand(["setVariable", "all_proxy", all_proxy])
309
310 def set_git_proxy(self, host, port): 307 def set_git_proxy(self, host, port):
311 self.runCommand(["setVariable", "GIT_PROXY_HOST", host]) 308 self.runCommand(["setVariable", "GIT_PROXY_HOST", host])
312 self.runCommand(["setVariable", "GIT_PROXY_PORT", port]) 309 self.runCommand(["setVariable", "GIT_PROXY_PORT", port])
@@ -496,7 +493,6 @@ class HobHandler(gobject.GObject):
496 params["http_proxy"] = self.runCommand(["getVariable", "http_proxy"]) or "" 493 params["http_proxy"] = self.runCommand(["getVariable", "http_proxy"]) or ""
497 params["ftp_proxy"] = self.runCommand(["getVariable", "ftp_proxy"]) or "" 494 params["ftp_proxy"] = self.runCommand(["getVariable", "ftp_proxy"]) or ""
498 params["https_proxy"] = self.runCommand(["getVariable", "https_proxy"]) or "" 495 params["https_proxy"] = self.runCommand(["getVariable", "https_proxy"]) or ""
499 params["all_proxy"] = self.runCommand(["getVariable", "all_proxy"]) or ""
500 496
501 params["cvs_proxy_host"] = self.runCommand(["getVariable", "CVS_PROXY_HOST"]) or "" 497 params["cvs_proxy_host"] = self.runCommand(["getVariable", "CVS_PROXY_HOST"]) or ""
502 params["cvs_proxy_port"] = self.runCommand(["getVariable", "CVS_PROXY_PORT"]) or "" 498 params["cvs_proxy_port"] = self.runCommand(["getVariable", "CVS_PROXY_PORT"]) or ""