* [PATCH] bb/utils.py: export_proxies add GIT_PROXY_COMMAND
@ 2016-08-04 21:52 Francisco Pedraza
2016-08-08 16:50 ` Aníbal Limón
0 siblings, 1 reply; 4+ messages in thread
From: Francisco Pedraza @ 2016-08-04 21:52 UTC (permalink / raw)
To: bitbake-devel; +Cc: Francisco Pedraza
This was added to enable the usage of git through proxies.
Signed-off-by: Francisco Pedraza <francisco.j.pedraza.gonzalez@intel.com>
---
lib/bb/utils.py | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/lib/bb/utils.py b/lib/bb/utils.py
index ce52960..a855d58 100644
--- a/lib/bb/utils.py
+++ b/lib/bb/utils.py
@@ -1461,7 +1461,8 @@ def export_proxies(d):
import os
variables = ['http_proxy', 'HTTP_PROXY', 'https_proxy', 'HTTPS_PROXY',
- 'ftp_proxy', 'FTP_PROXY', 'no_proxy', 'NO_PROXY']
+ 'ftp_proxy', 'FTP_PROXY', 'no_proxy', 'NO_PROXY',
+ 'GIT_PROXY_COMMAND']
exported = False
for v in variables:
--
2.5.0
^ permalink raw reply related [flat|nested] 4+ messages in thread* Re: [PATCH] bb/utils.py: export_proxies add GIT_PROXY_COMMAND
2016-08-04 21:52 [PATCH] bb/utils.py: export_proxies add GIT_PROXY_COMMAND Francisco Pedraza
@ 2016-08-08 16:50 ` Aníbal Limón
0 siblings, 0 replies; 4+ messages in thread
From: Aníbal Limón @ 2016-08-08 16:50 UTC (permalink / raw)
To: Francisco Pedraza, bitbake-devel
[-- Attachment #1: Type: text/plain, Size: 882 bytes --]
On 08/04/2016 04:52 PM, Francisco Pedraza wrote:
> This was added to enable the usage of git through proxies.
>
> Signed-off-by: Francisco Pedraza <francisco.j.pedraza.gonzalez@intel.com>
Acked-by: Aníbal Limón <anibal.limon@linux.intel.com>
> ---
> lib/bb/utils.py | 3 ++-
> 1 file changed, 2 insertions(+), 1 deletion(-)
>
> diff --git a/lib/bb/utils.py b/lib/bb/utils.py
> index ce52960..a855d58 100644
> --- a/lib/bb/utils.py
> +++ b/lib/bb/utils.py
> @@ -1461,7 +1461,8 @@ def export_proxies(d):
> import os
>
> variables = ['http_proxy', 'HTTP_PROXY', 'https_proxy', 'HTTPS_PROXY',
> - 'ftp_proxy', 'FTP_PROXY', 'no_proxy', 'NO_PROXY']
> + 'ftp_proxy', 'FTP_PROXY', 'no_proxy', 'NO_PROXY',
> + 'GIT_PROXY_COMMAND']
> exported = False
>
> for v in variables:
>
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 836 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH] bb/utils.py: export_proxies add GIT_PROXY_COMMAND
@ 2016-08-04 21:55 Francisco Pedraza
0 siblings, 0 replies; 4+ messages in thread
From: Francisco Pedraza @ 2016-08-04 21:55 UTC (permalink / raw)
To: bitbake-devel; +Cc: Francisco Pedraza
This was added to enable the usage of git through proxies.
Signed-off-by: Francisco Pedraza <francisco.j.pedraza.gonzalez@intel.com>
---
lib/bb/utils.py | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/lib/bb/utils.py b/lib/bb/utils.py
index ce52960..a855d58 100644
--- a/lib/bb/utils.py
+++ b/lib/bb/utils.py
@@ -1461,7 +1461,8 @@ def export_proxies(d):
import os
variables = ['http_proxy', 'HTTP_PROXY', 'https_proxy', 'HTTPS_PROXY',
- 'ftp_proxy', 'FTP_PROXY', 'no_proxy', 'NO_PROXY']
+ 'ftp_proxy', 'FTP_PROXY', 'no_proxy', 'NO_PROXY',
+ 'GIT_PROXY_COMMAND']
exported = False
for v in variables:
--
2.5.0
^ permalink raw reply related [flat|nested] 4+ messages in thread* [PATCH] bb/utils.py: export_proxies add GIT_PROXY_COMMAND
@ 2016-08-10 21:00 Aníbal Limón
0 siblings, 0 replies; 4+ messages in thread
From: Aníbal Limón @ 2016-08-10 21:00 UTC (permalink / raw)
To: bitbake-devel; +Cc: Francisco Pedraza
From: Francisco Pedraza <francisco.j.pedraza.gonzalez@intel.com>
This was added to enable the usage of git through proxies.
Signed-off-by: Francisco Pedraza <francisco.j.pedraza.gonzalez@intel.com>
Signed-off-by: Aníbal Limón <anibal.limon@linux.intel.com>
---
lib/bb/utils.py | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/lib/bb/utils.py b/lib/bb/utils.py
index ce52960..a855d58 100644
--- a/lib/bb/utils.py
+++ b/lib/bb/utils.py
@@ -1461,7 +1461,8 @@ def export_proxies(d):
import os
variables = ['http_proxy', 'HTTP_PROXY', 'https_proxy', 'HTTPS_PROXY',
- 'ftp_proxy', 'FTP_PROXY', 'no_proxy', 'NO_PROXY']
+ 'ftp_proxy', 'FTP_PROXY', 'no_proxy', 'NO_PROXY',
+ 'GIT_PROXY_COMMAND']
exported = False
for v in variables:
--
2.1.4
^ permalink raw reply related [flat|nested] 4+ messages in thread
end of thread, other threads:[~2016-08-10 20:59 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-08-04 21:52 [PATCH] bb/utils.py: export_proxies add GIT_PROXY_COMMAND Francisco Pedraza
2016-08-08 16:50 ` Aníbal Limón
-- strict thread matches above, loose matches on Subject: below --
2016-08-04 21:55 Francisco Pedraza
2016-08-10 21:00 Aníbal Limón
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.