From b9a51fc1901c378375cca041da27ddbd450c0412 Mon Sep 17 00:00:00 2001 From: Irina Patru Date: Mon, 28 Apr 2014 14:08:46 +0300 Subject: distrodata.bbclass: Fix checkpkg functionality Currently it wasn't working because *COMMAND variables were removed from fetcher. Now checkpkg sets the command internally and sends it as a parameter to _runwget() function from wget fetch. Signed-off-by: Irina Patru Signed-off-by: Saul Wold --- meta/classes/distrodata.bbclass | 40 +++++++++++++--------------------------- 1 file changed, 13 insertions(+), 27 deletions(-) (limited to 'meta/classes/distrodata.bbclass') diff --git a/meta/classes/distrodata.bbclass b/meta/classes/distrodata.bbclass index b47358b059..a890de7911 100644 --- a/meta/classes/distrodata.bbclass +++ b/meta/classes/distrodata.bbclass @@ -352,29 +352,14 @@ python do_checkpkg() { We don't want to exit whole build due to one recipe error. So handle all exceptions gracefully w/o leaking to outer. """ - def internal_fetch_wget(url, d, tmpf): + def internal_fetch_wget(url, ud, d, tmpf): status = "ErrFetchUnknown" - """ - Clear internal url cache as it's a temporary check. Not doing so will have - bitbake check url multiple times when looping through a single url - """ - fn = d.getVar('FILE', True) - bb.fetch2.urldata_cache[fn] = {} - - """ - To avoid impacting bitbake build engine, this trick is required for reusing bitbake - interfaces. bb.fetch.go() is not appliable as it checks downloaded content in ${DL_DIR} - while we don't want to pollute that place. So bb.fetch2.checkstatus() is borrowed here - which is designed for check purpose but we override check command for our own purpose - """ - ld = bb.data.createCopy(d) - d.setVar('CHECKCOMMAND_wget', "/usr/bin/env wget -t 1 --passive-ftp -O %s --user-agent=\"Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.2.12) Gecko/20101027 Ubuntu/9.10 (karmic) Firefox/3.6.12\" '${URI}'" \ - % tmpf.name) - bb.data.update_data(ld) + agent = "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.2.12) Gecko/20101027 Ubuntu/9.10 (karmic) Firefox/3.6.12" + fetchcmd = "/usr/bin/env wget -t 1 --passive-ftp -O %s --user-agent=\"%s\" '%s'" % (tmpf.name, agent, url) try: - fetcher = bb.fetch2.Fetch([url], ld) - fetcher.checkstatus() + fetcher = bb.fetch2.wget.Wget(d) + fetcher._runwget(ud, d, fetchcmd, True) status = "SUCC" except bb.fetch2.BBFetchException, e: status = "ErrFetch" @@ -388,10 +373,10 @@ python do_checkpkg() { 'curver' - current version Return new version if success, or else error in "Errxxxx" style """ - def check_new_dir(url, curver, d): + def check_new_dir(url, curver, ud, d): pn = d.getVar('PN', True) f = tempfile.NamedTemporaryFile(delete=False, prefix="%s-1-" % pn) - status = internal_fetch_wget(url, d, f) + status = internal_fetch_wget(url, ud, d, f) fhtml = f.read() if status == "SUCC" and len(fhtml): newver = parse_inter(curver) @@ -447,14 +432,14 @@ python do_checkpkg() { 'curname' - current package name Return new version if success, or else error in "Errxxxx" style """ - def check_new_version(url, curname, d): + def check_new_version(url, curname, ud, d): """possible to have no version in pkg name, such as spectrum-fw""" if not re.search("\d+", curname): return pcurver pn = d.getVar('PN', True) newver_regex = d.getVar('REGEX', True) f = tempfile.NamedTemporaryFile(delete=False, prefix="%s-2-" % pn) - status = internal_fetch_wget(url, d, f) + status = internal_fetch_wget(url, ud, d, f) fhtml = f.read() if status == "SUCC" and len(fhtml): @@ -605,6 +590,7 @@ python do_checkpkg() { if type in ['http', 'https', 'ftp']: + ud = bb.fetch2.FetchData(uri, d) newver = pcurver altpath = path dirver = "-" @@ -629,7 +615,7 @@ python do_checkpkg() { else: newver = d.getVar('PV', True) else: - newver = check_new_dir(alturi, dirver, d) + newver = check_new_dir(alturi, dirver, ud, d) altpath = path if not re.match("Err", newver) and dirver != newver: altpath = altpath.replace(dirver, newver, True) @@ -650,13 +636,13 @@ python do_checkpkg() { alturi = bb.fetch.encodeurl([type, host, altpath, user, pswd, {}]) else: alturi = chk_uri - newver = check_new_version(alturi, curname, d) + newver = check_new_version(alturi, curname, ud, d) while(newver == "ErrHostNoDir"): if alturi == "/download": break else: alturi = "/".join(alturi.split("/")[0:-2]) + "/download" - newver = check_new_version(alturi, curname, d) + newver = check_new_version(alturi, curname, ud, d) if not re.match("Err", newver): pupver = newver if pupver != pcurver: -- cgit 1.2.3-korg