Skip to content

Instantly share code, notes, and snippets.

@pauldotknopf
Created December 12, 2017 21:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pauldotknopf/b551cd42b7987f5eec01a85cb84c7d78 to your computer and use it in GitHub Desktop.
Save pauldotknopf/b551cd42b7987f5eec01a85cb84c7d78 to your computer and use it in GitHub Desktop.
WARNING: Host distribution "ubuntu-16.04" has not been validated with this version of the build system; you may possibly experience unexpected failures. It is recommended that you use a tested distribution.
Loading cache: 100% |########################################################################################| Time: 0:00:00
Loaded 2643 entries from dependency cache.
WARNING: /home/pknopf/git/x3/abrarecipes/build/../meta-evo4k/recipes-evo4k/mxencoder/mxencoder_git.bb: AUTOINC detected for mxencoder
WARNING: /home/pknopf/git/x3/abrarecipes/build/../meta-evo4k/recipes-evo4k/mxencoder/mxencoder-test_git.bb: AUTOINC detected for mxencoder-test
WARNING: /home/pknopf/git/x3/abrarecipes/build/../meta-evo4k/recipes-evo4k/mxencoder/mxencoder-test-ui_git.bb: AUTOINC detected for mxencoder-test-ui
WARNING: /home/pknopf/git/x3/abrarecipes/build/../meta-evo4k/recipes-evo4k/app/clear-app_1.0.bb: AUTOINC detected for clear-app
Parsing recipes: 80% |#################################################################### | ETA: 0:00:00
Keyboard Interrupt, closing down...
WARNING: Timeout while attempting to communicate with bitbake server
WARNING: Timeout while attempting to communicate with bitbake server
WARNING: Timeout while attempting to communicate with bitbake server
WARNING: Timeout while attempting to communicate with bitbake server
ERROR: Gave up; Too many tries: timeout while attempting to communicate with bitbake server
ERROR: Error executing a python function in <code>:
The stack trace of python calls that resulted in this exception/failure was:
File: '<code>', lineno: 4, function: <module>
0001:__anon_25__home_pknopf_git_x3_abrarecipes_build____poky_meta_classes_patch_bbclass(d)
0002:__anon_167__home_pknopf_git_x3_abrarecipes_build____poky_meta_classes_base_bbclass(d)
0003:__anon_679__home_pknopf_git_x3_abrarecipes_build____poky_meta_classes_base_bbclass(d)
*** 0004:__anon_41__home_pknopf_git_x3_abrarecipes_build____meta_evo4k_classes_medx_buildhistory_bbclass(d)
0005:__anon_1352__home_pknopf_git_x3_abrarecipes_build____poky_meta_classes_insane_bbclass(d)
0006:__anon_250__home_pknopf_git_x3_abrarecipes_build____poky_meta_classes_package_bbclass(d)
0007:__anon_682__home_pknopf_git_x3_abrarecipes_build____poky_meta_classes_package_rpm_bbclass(d)
0008:__anon_25__home_pknopf_git_x3_abrarecipes_build____poky_meta_classes_debian_bbclass(d)
File: '/home/pknopf/git/x3/abrarecipes/build/../meta-evo4k/classes/medx-buildhistory.bbclass', lineno: 27, function: __anon_41__home_pknopf_git_x3_abrarecipes_build____meta_evo4k_classes_medx_buildhistory_bbclass
0023: else:
0024: fatal_autoinc = False
0025:
0026: srcrevs, tag_srcrevs = _get_srcrev_values(d)
*** 0027: for name, srcrev in srcrevs.items():
0028: original_srcrev = None
0029: if name == "default":
0030: original_srcrev = d.getVar('SRCREV', False)
0031: else:
File: '/home/pknopf/git/x3/abrarecipes/build/../poky/meta/classes/buildhistory.bbclass', lineno: 838, function: _get_srcrev_values
0834: Return the version strings for the current recipe
0835: """
0836:
0837: scms = []
*** 0838: fetcher = bb.fetch.Fetch(d.getVar('SRC_URI').split(), d)
0839: urldata = fetcher.ud
0840: for u in urldata:
0841: if urldata[u].method.supports_srcrev():
0842: scms.append(u)
File: '/home/pknopf/git/x3/abrarecipes/poky/bitbake/lib/bb/fetch2/__init__.py', lineno: 1565, function: __init__
1561:
1562: for url in urls:
1563: if url not in self.ud:
1564: try:
*** 1565: self.ud[url] = FetchData(url, d, localonly)
1566: except NonLocalMethod:
1567: if localonly:
1568: self.ud[url] = None
1569: pass
File: '/home/pknopf/git/x3/abrarecipes/poky/bitbake/lib/bb/fetch2/__init__.py', lineno: 1244, function: __init__
1240: logger.warning('Consider updating %s recipe to use "protocol" not "proto" in SRC_URI.', d.getVar('PN'))
1241: self.parm["protocol"] = self.parm.get("proto", None)
1242:
1243: if hasattr(self.method, "urldata_init"):
*** 1244: self.method.urldata_init(self, d)
1245:
1246: if "localpath" in self.parm:
1247: # if user sets localpath for file, use it instead.
1248: self.localpath = self.parm["localpath"]
File: '/home/pknopf/git/x3/abrarecipes/poky/bitbake/lib/bb/fetch2/git.py', lineno: 195, function: urldata_init
0191: # Ensure anything that doesn't look like a sha256 checksum/revision is translated into one
0192: if not ud.revisions[name] or len(ud.revisions[name]) != 40 or (False in [c in "abcdef0123456789" for c in ud.revisions[name]]):
0193: if ud.revisions[name]:
0194: ud.unresolvedrev[name] = ud.revisions[name]
*** 0195: ud.revisions[name] = self.latest_revision(ud, d, name)
0196:
0197: gitsrcname = '%s%s' % (ud.host.replace(':', '.'), ud.path.replace('/', '.').replace('*', '.'))
0198: if gitsrcname.startswith('.'):
0199: gitsrcname = gitsrcname[1:]
File: '/home/pknopf/git/x3/abrarecipes/poky/bitbake/lib/bb/fetch2/__init__.py', lineno: 1534, function: latest_revision
1530: key = self.generate_revision_key(ud, d, name)
1531: try:
1532: return revs[key]
1533: except KeyError:
*** 1534: revs[key] = rev = self._latest_revision(ud, d, name)
1535: return rev
1536:
1537: def sortable_revision(self, ud, d, name):
1538: latest_rev = self._build_revision(ud, d, name)
File: '/home/pknopf/git/x3/abrarecipes/poky/bitbake/lib/bb/fetch2/git.py', lineno: 408, function: _latest_revision
0404: def _latest_revision(self, ud, d, name):
0405: """
0406: Compute the HEAD revision for the url
0407: """
*** 0408: output = self._lsremote(ud, d, "")
0409: # Tags of the form ^{} may not work, need to fallback to other form
0410: if ud.unresolvedrev[name][:5] == "refs/" or ud.usehead:
0411: head = ud.unresolvedrev[name]
0412: tag = ud.unresolvedrev[name]
File: '/home/pknopf/git/x3/abrarecipes/poky/bitbake/lib/bb/fetch2/git.py', lineno: 397, function: _lsremote
0393: cmd = "%s ls-remote %s %s" % \
0394: (ud.basecmd, repourl, search)
0395: if ud.proto.lower() != 'file':
0396: bb.fetch2.check_network_access(d, cmd, repourl)
*** 0397: output = runfetchcmd(cmd, d, True)
0398: if not output:
0399: raise bb.fetch2.FetchError("The command %s gave empty output unexpectedly" % cmd, ud.url)
0400: finally:
0401: d.delVar('_BB_GIT_IN_LSREMOTE')
File: '/home/pknopf/git/x3/abrarecipes/poky/bitbake/lib/bb/fetch2/__init__.py', lineno: 868, function: runfetchcmd
0864: bb.utils.remove(f, True)
0865: except OSError:
0866: pass
0867:
*** 0868: raise FetchError(error_message)
0869:
0870: return output
0871:
0872:def check_network_access(d, info, url):
Exception: bb.fetch2.FetchError: Fetcher failure: Fetch command export DBUS_SESSION_BUS_ADDRESS="unix:abstract=/tmp/dbus-89oG9jrQmI,guid=fcbd2b59bd0e84655a4a54c55a1e78b3"; export SSH_AGENT_PID="1417"; export SSH_AUTH_SOCK="/tmp/ssh-DGbgTo8qqgJ4/agent.1381"; export PATH="/home/pknopf/git/x3/abrarecipes/build/tmp/sysroots-uninative/x86_64-linux/usr/bin:/home/pknopf/git/x3/abrarecipes/poky/scripts:/home/pknopf/git/x3/abrarecipes/build/tmp/work/intel_corei7_64-poky-linux/openssl-qat/0.4.9-009-r0/recipe-sysroot-native/usr/bin/x86_64-poky-linux:/home/pknopf/git/x3/abrarecipes/build/tmp/work/intel_corei7_64-poky-linux/openssl-qat/0.4.9-009-r0/recipe-sysroot/usr/bin/crossscripts:/home/pknopf/git/x3/abrarecipes/build/tmp/work/intel_corei7_64-poky-linux/openssl-qat/0.4.9-009-r0/recipe-sysroot-native/usr/sbin:/home/pknopf/git/x3/abrarecipes/build/tmp/work/intel_corei7_64-poky-linux/openssl-qat/0.4.9-009-r0/recipe-sysroot-native/usr/bin:/home/pknopf/git/x3/abrarecipes/build/tmp/work/intel_corei7_64-poky-linux/openssl-qat/0.4.9-009-r0/recipe-sysroot-native/sbin:/home/pknopf/git/x3/abrarecipes/build/tmp/work/intel_corei7_64-poky-linux/openssl-qat/0.4.9-009-r0/recipe-sysroot-native/bin:/home/pknopf/git/x3/abrarecipes/poky/bitbake/bin:/home/pknopf/git/x3/abrarecipes/build/tmp/hosttools"; export HOME="/home/pknopf"; git -c core.fsyncobjectfiles=0 ls-remote git://opensslfoundation.com/openssl-async.git failed with exit code 128, output:
fatal: unable to connect to opensslfoundation.com:
opensslfoundation.com[0: 185.9.166.107]: errno=Connection refused
opensslfoundation.com[1: 2a03:4bc0:2900:a501::2:2]: errno=Network is unreachable
ERROR: Failed to parse recipe: /home/pknopf/git/x3/abrarecipes/build/../meta-intel/common/recipes-extended/openssl-qat/openssl-qat_0.4.9-009.bb
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment