* [PATCH 0/2 v2] fetch2: Unify BB_FETCH_PREMIRRORONLY
@ 2019-03-25 8:10 Robert Yang
2019-03-25 8:10 ` [PATCH 1/2 " Robert Yang
2019-03-25 8:10 ` [PATCH 2/2 v2] fetch2: Use bb.utils.to_boolean() for BB_NO_NETWORK Robert Yang
0 siblings, 2 replies; 3+ messages in thread
From: Robert Yang @ 2019-03-25 8:10 UTC (permalink / raw)
To: bitbake-devel
* V2
- Use bb.utils.to_boolean() for BB_FETCH_PREMIRRORONLY as RP suggested.
- Use bb.utils.to_boolean() for BB_NO_NETWORK.
- We also need use bb.utils.to_boolean() for oe-core's BB_NO_NETWORK, will
fix it later.
* V1
- Initial version
The following changes since commit acc242c7ec20a74e1afcc2420f5e2981e843b0df:
bitbake: fetch2: Print SCMs list when SRCREV_FORMAT is not set (2019-03-24 17:01:34 +0000)
are available in the git repository at:
git://git.pokylinux.org/poky-contrib rbt/premirror
http://git.pokylinux.org/cgit.cgi//log/?h=rbt/premirror
Robert Yang (2):
fetch2: Unify BB_FETCH_PREMIRRORONLY
fetch2: Use bb.utils.to_boolean() for BB_NO_NETWORK
bitbake/lib/bb/fetch2/__init__.py | 6 +++---
bitbake/lib/bb/fetch2/git.py | 2 +-
bitbake/lib/bb/fetch2/hg.py | 2 +-
3 files changed, 5 insertions(+), 5 deletions(-)
--
2.7.4
^ permalink raw reply [flat|nested] 3+ messages in thread
* [PATCH 1/2 v2] fetch2: Unify BB_FETCH_PREMIRRORONLY
2019-03-25 8:10 [PATCH 0/2 v2] fetch2: Unify BB_FETCH_PREMIRRORONLY Robert Yang
@ 2019-03-25 8:10 ` Robert Yang
2019-03-25 8:10 ` [PATCH 2/2 v2] fetch2: Use bb.utils.to_boolean() for BB_NO_NETWORK Robert Yang
1 sibling, 0 replies; 3+ messages in thread
From: Robert Yang @ 2019-03-25 8:10 UTC (permalink / raw)
To: bitbake-devel
The fetch2/__init__.py checks whether "BB_FETCH_PREMIRRORONLY" == "1", but
fetch2/git.py and hg.py checks whether it is None, this makes it discontinuous,
and BB_FETCH_PREMIRRORONLY = "0" doens't work as expected in the later case,
so unify it to the previous one. (As BB_NO_NETWORK does).
And also use bb.utils.to_boolean() to make them consistent.
Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
---
bitbake/lib/bb/fetch2/__init__.py | 2 +-
bitbake/lib/bb/fetch2/git.py | 2 +-
bitbake/lib/bb/fetch2/hg.py | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/bitbake/lib/bb/fetch2/__init__.py b/bitbake/lib/bb/fetch2/__init__.py
index 26ad388..6445184 100644
--- a/bitbake/lib/bb/fetch2/__init__.py
+++ b/bitbake/lib/bb/fetch2/__init__.py
@@ -1642,7 +1642,7 @@ class Fetch(object):
urls = self.urls
network = self.d.getVar("BB_NO_NETWORK")
- premirroronly = (self.d.getVar("BB_FETCH_PREMIRRORONLY") == "1")
+ premirroronly = bb.utils.to_boolean(self.d.getVar("BB_FETCH_PREMIRRORONLY"))
for u in urls:
ud = self.ud[u]
diff --git a/bitbake/lib/bb/fetch2/git.py b/bitbake/lib/bb/fetch2/git.py
index cf8bee7..8185bf4 100644
--- a/bitbake/lib/bb/fetch2/git.py
+++ b/bitbake/lib/bb/fetch2/git.py
@@ -318,7 +318,7 @@ class Git(FetchMethod):
def try_premirror(self, ud, d):
# If we don't do this, updating an existing checkout with only premirrors
# is not possible
- if d.getVar("BB_FETCH_PREMIRRORONLY") is not None:
+ if bb.utils.to_boolean(d.getVar("BB_FETCH_PREMIRRORONLY")):
return True
if os.path.exists(ud.clonedir):
return False
diff --git a/bitbake/lib/bb/fetch2/hg.py b/bitbake/lib/bb/fetch2/hg.py
index 936d043..5a2985e 100644
--- a/bitbake/lib/bb/fetch2/hg.py
+++ b/bitbake/lib/bb/fetch2/hg.py
@@ -99,7 +99,7 @@ class Hg(FetchMethod):
def try_premirror(self, ud, d):
# If we don't do this, updating an existing checkout with only premirrors
# is not possible
- if d.getVar("BB_FETCH_PREMIRRORONLY") is not None:
+ if bb.utils.to_boolean(d.getVar("BB_FETCH_PREMIRRORONLY")):
return True
if os.path.exists(ud.moddir):
return False
--
2.7.4
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [PATCH 2/2 v2] fetch2: Use bb.utils.to_boolean() for BB_NO_NETWORK
2019-03-25 8:10 [PATCH 0/2 v2] fetch2: Unify BB_FETCH_PREMIRRORONLY Robert Yang
2019-03-25 8:10 ` [PATCH 1/2 " Robert Yang
@ 2019-03-25 8:10 ` Robert Yang
1 sibling, 0 replies; 3+ messages in thread
From: Robert Yang @ 2019-03-25 8:10 UTC (permalink / raw)
To: bitbake-devel
Make it consistent with BB_FETCH_PREMIRRORONLY.
Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
---
bitbake/lib/bb/fetch2/__init__.py | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/bitbake/lib/bb/fetch2/__init__.py b/bitbake/lib/bb/fetch2/__init__.py
index 6445184..8fecc80 100644
--- a/bitbake/lib/bb/fetch2/__init__.py
+++ b/bitbake/lib/bb/fetch2/__init__.py
@@ -898,7 +898,7 @@ def check_network_access(d, info, url):
log remote network access, and error if BB_NO_NETWORK is set or the given
URI is untrusted
"""
- if d.getVar("BB_NO_NETWORK") == "1":
+ if bb.utils.to_boolean(d.getVar("BB_NO_NETWORK")):
raise NetworkAccess(url, info)
elif not trusted_network(d, url):
raise UntrustedUrl(url, info)
@@ -1098,7 +1098,7 @@ def trusted_network(d, url):
BB_ALLOWED_NETWORKS is set globally or for a specific recipe.
Note: modifies SRC_URI & mirrors.
"""
- if d.getVar('BB_NO_NETWORK') == "1":
+ if bb.utils.to_boolean(d.getVar("BB_NO_NETWORK")):
return True
pkgname = d.expand(d.getVar('PN', False))
--
2.7.4
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2019-03-25 7:51 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-03-25 8:10 [PATCH 0/2 v2] fetch2: Unify BB_FETCH_PREMIRRORONLY Robert Yang
2019-03-25 8:10 ` [PATCH 1/2 " Robert Yang
2019-03-25 8:10 ` [PATCH 2/2 v2] fetch2: Use bb.utils.to_boolean() for BB_NO_NETWORK Robert Yang
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.