* Angstrom Build Fails
@ 2014-11-01 17:53 nick
2014-11-01 18:55 ` Sven Ebenfeld
0 siblings, 1 reply; 6+ messages in thread
From: nick @ 2014-11-01 17:53 UTC (permalink / raw)
To: yocto@yoctoproject.org
I am getting a failing build with the log below. If anyone knows how to fix this it would be very helpful.
Cheers Nick
nick@nick-System-Product-Name:/media/nick/Build_Drive/setup-scripts$ time MACHINE=beagleboard ./oebb.sh bitbake systemd-gnome-image
Using environment-angstrom-v2013.12 to setup needed variables. It is recommended to do '. environment-angstrom-v2013.12' and run 'bitbake something' without using ./oebb.sh as wrapper
Executing: MACHINE=beagleboard bitbake systemd-gnome-image
NOTE: Started PRServer with DBfile: /media/nick/Build_Drive/setup-scripts/cache/prserv.sqlite3, IP: 127.0.0.1, PORT: 57935, PID: 18666
WARNING: OPIE_VERSION has not been set; if you are going to build Opie, you need to 'require' an appropriate .inc file from meta-opie/conf/distro/include | ETA: 00:06:28
WARNING: OPIE_VERSION has not been set; if you are going to build Opie, you need to 'require' an appropriate .inc file from meta-opie/conf/distro/include | ETA: 00:06:18
WARNING: libgles-omap3-5.01.00.01 ONLY supports hardfp mode for now############################################ | ETA: 00:02:40
WARNING: libgles-omap3-5.00.00.01 ONLY supports hardfp mode for now
WARNING: omap3-sgx-modules-5.01.00.01 ONLY supports hardfp mode for now########################################## | ETA: 00:02:34
WARNING: omap3-sgx-modules-5.00.00.01 ONLY supports hardfp mode for now
WARNING: Unable to get checksum for lcr SRC_URI entry lcr-no_amr.diff: file could not be found################################################################################################################ | ETA: 00:00:14
WARNING: Unable to get checksum for mono SRC_URI entry Makefile.am.diff: file could not be found################################################################################################################## | ETA: 00:00:10
WARNING: Unable to get checksum for mono SRC_URI entry config.in.diff: file could not be found
WARNING: Unable to get checksum for mono SRC_URI entry Makefile.diff: file could not be found
WARNING: Variable key FILES_${PN}-dev (${includedir} ${FILES_SOLIBSDEV} ${libdir}/*.la ${libdir}/*.o ${libdir}/pkgconfig ${datadir}/pkgconfig ${datadir}/aclocal ${base_libdir}/*.o ${libdir}/${BPN}/*.la ${base_libdir}/*.la) replaces original key FILES_mono-xsp-dev ( /usr/lib/pkgconfig/xsp.pc /usr/lib/pkgconfig/xsp-2.pc ).
WARNING: Unable to get checksum for mono-native SRC_URI entry Makefile.am.diff: file could not be found
WARNING: Unable to get checksum for mono-native SRC_URI entry config.in.diff: file could not be found
WARNING: Unable to get checksum for mono-native SRC_URI entry Makefile.diff: file could not be found
ERROR: Error executing a python function in <code>:####################################################################################################################################################################### | ETA: 00:00:02
The stack trace of python calls that resulted in this exception/failure was:
File: '<code>', lineno: 1, function: <module>
*** 0001:__anon_634__media_nick_Build_Drive_setup_scripts_sources_openembedded_core_meta_classes_base_bbclass(d)
0002:__anon_954__media_nick_Build_Drive_setup_scripts_sources_openembedded_core_meta_classes_insane_bbclass(d)
0003:__anon_230__media_nick_Build_Drive_setup_scripts_sources_openembedded_core_meta_classes_package_bbclass(d)
0004:__anon_430__media_nick_Build_Drive_setup_scripts_sources_openembedded_core_meta_classes_package_ipk_bbclass(d)
0005:__anon_20__media_nick_Build_Drive_setup_scripts_sources_openembedded_core_meta_classes_debian_bbclass(d)
File: '__anon_634__media_nick_Build_Drive_setup_scripts_sources_openembedded_core_meta_classes_base_bbclass', lineno: 218, function: __anon_634__media_nick_Build_Drive_setup_scripts_sources_openembedded_core_meta_classes_base_bbclass
0214: #
0215: override = d.getVar('SRC_URI_OVERRIDES_PACKAGE_ARCH', True)
0216: if override != '0':
0217: paths = []
*** 0218: fpaths = (d.getVar('FILESPATH', True) or '').split(':')
0219: machine = d.getVar('MACHINE', True)
0220: for p in fpaths:
0221: if os.path.basename(p) == machine and os.path.isdir(p):
0222: paths.append(p)
File: '/media/nick/Build_Drive/setup-scripts/sources/bitbake/lib/bb/data_smart.py', lineno: 516, function: getVar
0512: self._seen_overrides[override] = set()
0513: self._seen_overrides[override].add( var )
0514:
0515: def getVar(self, var, expand=False, noweakdefault=False):
*** 0516: return self.getVarFlag(var, "_content", expand, noweakdefault)
0517:
0518: def renameVar(self, key, newkey, **loginfo):
0519: """
0520: Rename the variable key to newkey
File: '/media/nick/Build_Drive/setup-scripts/sources/bitbake/lib/bb/data_smart.py', lineno: 606, function: getVarFlag
0602: if flag == "_content":
0603: cachename = var
0604: else:
0605: cachename = var + "[" + flag + "]"
*** 0606: value = self.expand(value, cachename)
0607: if value is not None and flag == "_content" and local_var is not None and "_removeactive" in local_var:
0608: filtered = filter(lambda v: v not in local_var["_removeactive"],
0609: value.split(" "))
0610: value = " ".join(filtered)
File: '/media/nick/Build_Drive/setup-scripts/sources/bitbake/lib/bb/data_smart.py', lineno: 344, function: expand
0340:
0341: return varparse
0342:
0343: def expand(self, s, varname = None):
*** 0344: return self.expandWithRefs(s, varname).value
0345:
0346:
0347: def finalize(self, parent = False):
0348: """Performs final steps upon the datastore, including application of overrides"""
File: '/media/nick/Build_Drive/setup-scripts/sources/bitbake/lib/bb/data_smart.py', lineno: 325, function: expandWithRefs
0321:
0322: while s.find('${') != -1:
0323: olds = s
0324: try:
*** 0325: s = __expand_var_regexp__.sub(varparse.var_sub, s)
0326: s = __expand_python_regexp__.sub(varparse.python_sub, s)
0327: if s == olds:
0328: break
0329: except ExpansionError:
File: '/media/nick/Build_Drive/setup-scripts/sources/bitbake/lib/bb/data_smart.py', lineno: 101, function: var_sub
0097: if key in self.d.expand_cache:
0098: varparse = self.d.expand_cache[key]
0099: var = varparse.value
0100: else:
*** 0101: var = self.d.getVar(key, True)
0102: self.references.add(key)
0103: if var is not None:
0104: return var
0105: else:
File: '/media/nick/Build_Drive/setup-scripts/sources/bitbake/lib/bb/data_smart.py', lineno: 516, function: getVar
0512: self._seen_overrides[override] = set()
0513: self._seen_overrides[override].add( var )
0514:
0515: def getVar(self, var, expand=False, noweakdefault=False):
*** 0516: return self.getVarFlag(var, "_content", expand, noweakdefault)
0517:
0518: def renameVar(self, key, newkey, **loginfo):
0519: """
0520: Rename the variable key to newkey
File: '/media/nick/Build_Drive/setup-scripts/sources/bitbake/lib/bb/data_smart.py', lineno: 606, function: getVarFlag
0602: if flag == "_content":
0603: cachename = var
0604: else:
0605: cachename = var + "[" + flag + "]"
*** 0606: value = self.expand(value, cachename)
0607: if value is not None and flag == "_content" and local_var is not None and "_removeactive" in local_var:
0608: filtered = filter(lambda v: v not in local_var["_removeactive"],
0609: value.split(" "))
0610: value = " ".join(filtered)
File: '/media/nick/Build_Drive/setup-scripts/sources/bitbake/lib/bb/data_smart.py', lineno: 344, function: expand
0340:
0341: return varparse
0342:
0343: def expand(self, s, varname = None):
*** 0344: return self.expandWithRefs(s, varname).value
0345:
0346:
0347: def finalize(self, parent = False):
0348: """Performs final steps upon the datastore, including application of overrides"""
File: '/media/nick/Build_Drive/setup-scripts/sources/bitbake/lib/bb/data_smart.py', lineno: 325, function: expandWithRefs
0321:
0322: while s.find('${') != -1:
0323: olds = s
0324: try:
*** 0325: s = __expand_var_regexp__.sub(varparse.var_sub, s)
0326: s = __expand_python_regexp__.sub(varparse.python_sub, s)
0327: if s == olds:
0328: break
0329: except ExpansionError:
File: '/media/nick/Build_Drive/setup-scripts/sources/bitbake/lib/bb/data_smart.py', lineno: 101, function: var_sub
0097: if key in self.d.expand_cache:
0098: varparse = self.d.expand_cache[key]
0099: var = varparse.value
0100: else:
*** 0101: var = self.d.getVar(key, True)
0102: self.references.add(key)
0103: if var is not None:
0104: return var
0105: else:
File: '/media/nick/Build_Drive/setup-scripts/sources/bitbake/lib/bb/data_smart.py', lineno: 516, function: getVar
0512: self._seen_overrides[override] = set()
0513: self._seen_overrides[override].add( var )
0514:
0515: def getVar(self, var, expand=False, noweakdefault=False):
*** 0516: return self.getVarFlag(var, "_content", expand, noweakdefault)
0517:
0518: def renameVar(self, key, newkey, **loginfo):
0519: """
0520: Rename the variable key to newkey
File: '/media/nick/Build_Drive/setup-scripts/sources/bitbake/lib/bb/data_smart.py', lineno: 606, function: getVarFlag
0602: if flag == "_content":
0603: cachename = var
0604: else:
0605: cachename = var + "[" + flag + "]"
*** 0606: value = self.expand(value, cachename)
0607: if value is not None and flag == "_content" and local_var is not None and "_removeactive" in local_var:
0608: filtered = filter(lambda v: v not in local_var["_removeactive"],
0609: value.split(" "))
0610: value = " ".join(filtered)
File: '/media/nick/Build_Drive/setup-scripts/sources/bitbake/lib/bb/data_smart.py', lineno: 344, function: expand
0340:
0341: return varparse
0342:
0343: def expand(self, s, varname = None):
*** 0344: return self.expandWithRefs(s, varname).value
0345:
0346:
0347: def finalize(self, parent = False):
0348: """Performs final steps upon the datastore, including application of overrides"""
File: '/media/nick/Build_Drive/setup-scripts/sources/bitbake/lib/bb/data_smart.py', lineno: 325, function: expandWithRefs
0321:
0322: while s.find('${') != -1:
0323: olds = s
0324: try:
*** 0325: s = __expand_var_regexp__.sub(varparse.var_sub, s)
0326: s = __expand_python_regexp__.sub(varparse.python_sub, s)
0327: if s == olds:
0328: break
0329: except ExpansionError:
File: '/media/nick/Build_Drive/setup-scripts/sources/bitbake/lib/bb/data_smart.py', lineno: 101, function: var_sub
0097: if key in self.d.expand_cache:
0098: varparse = self.d.expand_cache[key]
0099: var = varparse.value
0100: else:
*** 0101: var = self.d.getVar(key, True)
0102: self.references.add(key)
0103: if var is not None:
0104: return var
0105: else:
File: '/media/nick/Build_Drive/setup-scripts/sources/bitbake/lib/bb/data_smart.py', lineno: 516, function: getVar
0512: self._seen_overrides[override] = set()
0513: self._seen_overrides[override].add( var )
0514:
0515: def getVar(self, var, expand=False, noweakdefault=False):
*** 0516: return self.getVarFlag(var, "_content", expand, noweakdefault)
0517:
0518: def renameVar(self, key, newkey, **loginfo):
0519: """
0520: Rename the variable key to newkey
File: '/media/nick/Build_Drive/setup-scripts/sources/bitbake/lib/bb/data_smart.py', lineno: 606, function: getVarFlag
0602: if flag == "_content":
0603: cachename = var
0604: else:
0605: cachename = var + "[" + flag + "]"
*** 0606: value = self.expand(value, cachename)
0607: if value is not None and flag == "_content" and local_var is not None and "_removeactive" in local_var:
0608: filtered = filter(lambda v: v not in local_var["_removeactive"],
0609: value.split(" "))
0610: value = " ".join(filtered)
File: '/media/nick/Build_Drive/setup-scripts/sources/bitbake/lib/bb/data_smart.py', lineno: 344, function: expand
0340:
0341: return varparse
0342:
0343: def expand(self, s, varname = None):
*** 0344: return self.expandWithRefs(s, varname).value
0345:
0346:
0347: def finalize(self, parent = False):
0348: """Performs final steps upon the datastore, including application of overrides"""
File: '/media/nick/Build_Drive/setup-scripts/sources/bitbake/lib/bb/data_smart.py', lineno: 334, function: expandWithRefs
0330: raise
0331: except bb.parse.SkipPackage:
0332: raise
0333: except Exception as exc:
*** 0334: raise ExpansionError(varname, s, exc)
0335:
0336: varparse.value = s
0337:
0338: if varname:
Exception: ExpansionError: Failure expanding variable SRCPV, expression was ${@bb.fetch2.get_srcrev(d)} which triggered exception FetchError: Fetcher failure: Fetch command failed with exit code 128, output:
fatal: unable to connect to gitorious.org:
gitorious.org: Name or service not known
ERROR: Failed to parse recipe: /media/nick/Build_Drive/setup-scripts/sources/meta-opie/recipes-opie/opie-connmanapplet/opie-connmanapplet_git.bb
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: Angstrom Build Fails
2014-11-01 17:53 Angstrom Build Fails nick
@ 2014-11-01 18:55 ` Sven Ebenfeld
2014-11-01 20:54 ` Paul Eggleton
0 siblings, 1 reply; 6+ messages in thread
From: Sven Ebenfeld @ 2014-11-01 18:55 UTC (permalink / raw)
To: nick, yocto@yoctoproject.org
Looks like problems with gitorious.org again.
You should either find a mirror again or wait if the problem solves
itself. Unfortunately I don't know, which git repository this recipe
(opie) needs so I don't know if a mirror exists.
Am 01.11.2014 18:53, schrieb nick:
> I am getting a failing build with the log below. If anyone knows how to fix this it would be very helpful.
> Cheers Nick
> nick@nick-System-Product-Name:/media/nick/Build_Drive/setup-scripts$ time MACHINE=beagleboard ./oebb.sh bitbake systemd-gnome-image
> Using environment-angstrom-v2013.12 to setup needed variables. It is recommended to do '. environment-angstrom-v2013.12' and run 'bitbake something' without using ./oebb.sh as wrapper
> Executing: MACHINE=beagleboard bitbake systemd-gnome-image
> NOTE: Started PRServer with DBfile: /media/nick/Build_Drive/setup-scripts/cache/prserv.sqlite3, IP: 127.0.0.1, PORT: 57935, PID: 18666
> WARNING: OPIE_VERSION has not been set; if you are going to build Opie, you need to 'require' an appropriate .inc file from meta-opie/conf/distro/include | ETA: 00:06:28
> WARNING: OPIE_VERSION has not been set; if you are going to build Opie, you need to 'require' an appropriate .inc file from meta-opie/conf/distro/include | ETA: 00:06:18
> WARNING: libgles-omap3-5.01.00.01 ONLY supports hardfp mode for now############################################ | ETA: 00:02:40
> WARNING: libgles-omap3-5.00.00.01 ONLY supports hardfp mode for now
> WARNING: omap3-sgx-modules-5.01.00.01 ONLY supports hardfp mode for now########################################## | ETA: 00:02:34
> WARNING: omap3-sgx-modules-5.00.00.01 ONLY supports hardfp mode for now
> WARNING: Unable to get checksum for lcr SRC_URI entry lcr-no_amr.diff: file could not be found################################################################################################################ | ETA: 00:00:14
> WARNING: Unable to get checksum for mono SRC_URI entry Makefile.am.diff: file could not be found################################################################################################################## | ETA: 00:00:10
> WARNING: Unable to get checksum for mono SRC_URI entry config.in.diff: file could not be found
> WARNING: Unable to get checksum for mono SRC_URI entry Makefile.diff: file could not be found
> WARNING: Variable key FILES_${PN}-dev (${includedir} ${FILES_SOLIBSDEV} ${libdir}/*.la ${libdir}/*.o ${libdir}/pkgconfig ${datadir}/pkgconfig ${datadir}/aclocal ${base_libdir}/*.o ${libdir}/${BPN}/*.la ${base_libdir}/*.la) replaces original key FILES_mono-xsp-dev ( /usr/lib/pkgconfig/xsp.pc /usr/lib/pkgconfig/xsp-2.pc ).
> WARNING: Unable to get checksum for mono-native SRC_URI entry Makefile.am.diff: file could not be found
> WARNING: Unable to get checksum for mono-native SRC_URI entry config.in.diff: file could not be found
> WARNING: Unable to get checksum for mono-native SRC_URI entry Makefile.diff: file could not be found
> ERROR: Error executing a python function in <code>:####################################################################################################################################################################### | ETA: 00:00:02
>
> The stack trace of python calls that resulted in this exception/failure was:
> File: '<code>', lineno: 1, function: <module>
> *** 0001:__anon_634__media_nick_Build_Drive_setup_scripts_sources_openembedded_core_meta_classes_base_bbclass(d)
> 0002:__anon_954__media_nick_Build_Drive_setup_scripts_sources_openembedded_core_meta_classes_insane_bbclass(d)
> 0003:__anon_230__media_nick_Build_Drive_setup_scripts_sources_openembedded_core_meta_classes_package_bbclass(d)
> 0004:__anon_430__media_nick_Build_Drive_setup_scripts_sources_openembedded_core_meta_classes_package_ipk_bbclass(d)
> 0005:__anon_20__media_nick_Build_Drive_setup_scripts_sources_openembedded_core_meta_classes_debian_bbclass(d)
> File: '__anon_634__media_nick_Build_Drive_setup_scripts_sources_openembedded_core_meta_classes_base_bbclass', lineno: 218, function: __anon_634__media_nick_Build_Drive_setup_scripts_sources_openembedded_core_meta_classes_base_bbclass
> 0214: #
> 0215: override = d.getVar('SRC_URI_OVERRIDES_PACKAGE_ARCH', True)
> 0216: if override != '0':
> 0217: paths = []
> *** 0218: fpaths = (d.getVar('FILESPATH', True) or '').split(':')
> 0219: machine = d.getVar('MACHINE', True)
> 0220: for p in fpaths:
> 0221: if os.path.basename(p) == machine and os.path.isdir(p):
> 0222: paths.append(p)
> File: '/media/nick/Build_Drive/setup-scripts/sources/bitbake/lib/bb/data_smart.py', lineno: 516, function: getVar
> 0512: self._seen_overrides[override] = set()
> 0513: self._seen_overrides[override].add( var )
> 0514:
> 0515: def getVar(self, var, expand=False, noweakdefault=False):
> *** 0516: return self.getVarFlag(var, "_content", expand, noweakdefault)
> 0517:
> 0518: def renameVar(self, key, newkey, **loginfo):
> 0519: """
> 0520: Rename the variable key to newkey
> File: '/media/nick/Build_Drive/setup-scripts/sources/bitbake/lib/bb/data_smart.py', lineno: 606, function: getVarFlag
> 0602: if flag == "_content":
> 0603: cachename = var
> 0604: else:
> 0605: cachename = var + "[" + flag + "]"
> *** 0606: value = self.expand(value, cachename)
> 0607: if value is not None and flag == "_content" and local_var is not None and "_removeactive" in local_var:
> 0608: filtered = filter(lambda v: v not in local_var["_removeactive"],
> 0609: value.split(" "))
> 0610: value = " ".join(filtered)
> File: '/media/nick/Build_Drive/setup-scripts/sources/bitbake/lib/bb/data_smart.py', lineno: 344, function: expand
> 0340:
> 0341: return varparse
> 0342:
> 0343: def expand(self, s, varname = None):
> *** 0344: return self.expandWithRefs(s, varname).value
> 0345:
> 0346:
> 0347: def finalize(self, parent = False):
> 0348: """Performs final steps upon the datastore, including application of overrides"""
> File: '/media/nick/Build_Drive/setup-scripts/sources/bitbake/lib/bb/data_smart.py', lineno: 325, function: expandWithRefs
> 0321:
> 0322: while s.find('${') != -1:
> 0323: olds = s
> 0324: try:
> *** 0325: s = __expand_var_regexp__.sub(varparse.var_sub, s)
> 0326: s = __expand_python_regexp__.sub(varparse.python_sub, s)
> 0327: if s == olds:
> 0328: break
> 0329: except ExpansionError:
> File: '/media/nick/Build_Drive/setup-scripts/sources/bitbake/lib/bb/data_smart.py', lineno: 101, function: var_sub
> 0097: if key in self.d.expand_cache:
> 0098: varparse = self.d.expand_cache[key]
> 0099: var = varparse.value
> 0100: else:
> *** 0101: var = self.d.getVar(key, True)
> 0102: self.references.add(key)
> 0103: if var is not None:
> 0104: return var
> 0105: else:
> File: '/media/nick/Build_Drive/setup-scripts/sources/bitbake/lib/bb/data_smart.py', lineno: 516, function: getVar
> 0512: self._seen_overrides[override] = set()
> 0513: self._seen_overrides[override].add( var )
> 0514:
> 0515: def getVar(self, var, expand=False, noweakdefault=False):
> *** 0516: return self.getVarFlag(var, "_content", expand, noweakdefault)
> 0517:
> 0518: def renameVar(self, key, newkey, **loginfo):
> 0519: """
> 0520: Rename the variable key to newkey
> File: '/media/nick/Build_Drive/setup-scripts/sources/bitbake/lib/bb/data_smart.py', lineno: 606, function: getVarFlag
> 0602: if flag == "_content":
> 0603: cachename = var
> 0604: else:
> 0605: cachename = var + "[" + flag + "]"
> *** 0606: value = self.expand(value, cachename)
> 0607: if value is not None and flag == "_content" and local_var is not None and "_removeactive" in local_var:
> 0608: filtered = filter(lambda v: v not in local_var["_removeactive"],
> 0609: value.split(" "))
> 0610: value = " ".join(filtered)
> File: '/media/nick/Build_Drive/setup-scripts/sources/bitbake/lib/bb/data_smart.py', lineno: 344, function: expand
> 0340:
> 0341: return varparse
> 0342:
> 0343: def expand(self, s, varname = None):
> *** 0344: return self.expandWithRefs(s, varname).value
> 0345:
> 0346:
> 0347: def finalize(self, parent = False):
> 0348: """Performs final steps upon the datastore, including application of overrides"""
> File: '/media/nick/Build_Drive/setup-scripts/sources/bitbake/lib/bb/data_smart.py', lineno: 325, function: expandWithRefs
> 0321:
> 0322: while s.find('${') != -1:
> 0323: olds = s
> 0324: try:
> *** 0325: s = __expand_var_regexp__.sub(varparse.var_sub, s)
> 0326: s = __expand_python_regexp__.sub(varparse.python_sub, s)
> 0327: if s == olds:
> 0328: break
> 0329: except ExpansionError:
> File: '/media/nick/Build_Drive/setup-scripts/sources/bitbake/lib/bb/data_smart.py', lineno: 101, function: var_sub
> 0097: if key in self.d.expand_cache:
> 0098: varparse = self.d.expand_cache[key]
> 0099: var = varparse.value
> 0100: else:
> *** 0101: var = self.d.getVar(key, True)
> 0102: self.references.add(key)
> 0103: if var is not None:
> 0104: return var
> 0105: else:
> File: '/media/nick/Build_Drive/setup-scripts/sources/bitbake/lib/bb/data_smart.py', lineno: 516, function: getVar
> 0512: self._seen_overrides[override] = set()
> 0513: self._seen_overrides[override].add( var )
> 0514:
> 0515: def getVar(self, var, expand=False, noweakdefault=False):
> *** 0516: return self.getVarFlag(var, "_content", expand, noweakdefault)
> 0517:
> 0518: def renameVar(self, key, newkey, **loginfo):
> 0519: """
> 0520: Rename the variable key to newkey
> File: '/media/nick/Build_Drive/setup-scripts/sources/bitbake/lib/bb/data_smart.py', lineno: 606, function: getVarFlag
> 0602: if flag == "_content":
> 0603: cachename = var
> 0604: else:
> 0605: cachename = var + "[" + flag + "]"
> *** 0606: value = self.expand(value, cachename)
> 0607: if value is not None and flag == "_content" and local_var is not None and "_removeactive" in local_var:
> 0608: filtered = filter(lambda v: v not in local_var["_removeactive"],
> 0609: value.split(" "))
> 0610: value = " ".join(filtered)
> File: '/media/nick/Build_Drive/setup-scripts/sources/bitbake/lib/bb/data_smart.py', lineno: 344, function: expand
> 0340:
> 0341: return varparse
> 0342:
> 0343: def expand(self, s, varname = None):
> *** 0344: return self.expandWithRefs(s, varname).value
> 0345:
> 0346:
> 0347: def finalize(self, parent = False):
> 0348: """Performs final steps upon the datastore, including application of overrides"""
> File: '/media/nick/Build_Drive/setup-scripts/sources/bitbake/lib/bb/data_smart.py', lineno: 325, function: expandWithRefs
> 0321:
> 0322: while s.find('${') != -1:
> 0323: olds = s
> 0324: try:
> *** 0325: s = __expand_var_regexp__.sub(varparse.var_sub, s)
> 0326: s = __expand_python_regexp__.sub(varparse.python_sub, s)
> 0327: if s == olds:
> 0328: break
> 0329: except ExpansionError:
> File: '/media/nick/Build_Drive/setup-scripts/sources/bitbake/lib/bb/data_smart.py', lineno: 101, function: var_sub
> 0097: if key in self.d.expand_cache:
> 0098: varparse = self.d.expand_cache[key]
> 0099: var = varparse.value
> 0100: else:
> *** 0101: var = self.d.getVar(key, True)
> 0102: self.references.add(key)
> 0103: if var is not None:
> 0104: return var
> 0105: else:
> File: '/media/nick/Build_Drive/setup-scripts/sources/bitbake/lib/bb/data_smart.py', lineno: 516, function: getVar
> 0512: self._seen_overrides[override] = set()
> 0513: self._seen_overrides[override].add( var )
> 0514:
> 0515: def getVar(self, var, expand=False, noweakdefault=False):
> *** 0516: return self.getVarFlag(var, "_content", expand, noweakdefault)
> 0517:
> 0518: def renameVar(self, key, newkey, **loginfo):
> 0519: """
> 0520: Rename the variable key to newkey
> File: '/media/nick/Build_Drive/setup-scripts/sources/bitbake/lib/bb/data_smart.py', lineno: 606, function: getVarFlag
> 0602: if flag == "_content":
> 0603: cachename = var
> 0604: else:
> 0605: cachename = var + "[" + flag + "]"
> *** 0606: value = self.expand(value, cachename)
> 0607: if value is not None and flag == "_content" and local_var is not None and "_removeactive" in local_var:
> 0608: filtered = filter(lambda v: v not in local_var["_removeactive"],
> 0609: value.split(" "))
> 0610: value = " ".join(filtered)
> File: '/media/nick/Build_Drive/setup-scripts/sources/bitbake/lib/bb/data_smart.py', lineno: 344, function: expand
> 0340:
> 0341: return varparse
> 0342:
> 0343: def expand(self, s, varname = None):
> *** 0344: return self.expandWithRefs(s, varname).value
> 0345:
> 0346:
> 0347: def finalize(self, parent = False):
> 0348: """Performs final steps upon the datastore, including application of overrides"""
> File: '/media/nick/Build_Drive/setup-scripts/sources/bitbake/lib/bb/data_smart.py', lineno: 334, function: expandWithRefs
> 0330: raise
> 0331: except bb.parse.SkipPackage:
> 0332: raise
> 0333: except Exception as exc:
> *** 0334: raise ExpansionError(varname, s, exc)
> 0335:
> 0336: varparse.value = s
> 0337:
> 0338: if varname:
> Exception: ExpansionError: Failure expanding variable SRCPV, expression was ${@bb.fetch2.get_srcrev(d)} which triggered exception FetchError: Fetcher failure: Fetch command failed with exit code 128, output:
> fatal: unable to connect to gitorious.org:
> gitorious.org: Name or service not known
>
>
>
> ERROR: Failed to parse recipe: /media/nick/Build_Drive/setup-scripts/sources/meta-opie/recipes-opie/opie-connmanapplet/opie-connmanapplet_git.bb
>
>
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: Angstrom Build Fails
2014-11-01 18:55 ` Sven Ebenfeld
@ 2014-11-01 20:54 ` Paul Eggleton
2014-11-01 23:25 ` nick
0 siblings, 1 reply; 6+ messages in thread
From: Paul Eggleton @ 2014-11-01 20:54 UTC (permalink / raw)
To: nick; +Cc: yocto
On Saturday 01 November 2014 19:55:47 Sven Ebenfeld wrote:
> Looks like problems with gitorious.org again.
> You should either find a mirror again or wait if the problem solves
> itself. Unfortunately I don't know, which git repository this recipe
> (opie) needs so I don't know if a mirror exists.
>
> Am 01.11.2014 18:53, schrieb nick:
> > Exception: ExpansionError: Failure expanding variable SRCPV, expression
> > was ${@bb.fetch2.get_srcrev(d)} which triggered exception FetchError:
> > Fetcher failure: Fetch command failed with exit code 128, output: fatal:
> > unable to connect to gitorious.org:
> > gitorious.org: Name or service not known
"Name or service not known" - that suggests a DNS failure - are you sure you
don't have local network issues?
Cheers,
Paul
--
Paul Eggleton
Intel Open Source Technology Centre
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: Angstrom Build Fails
2014-11-01 20:54 ` Paul Eggleton
@ 2014-11-01 23:25 ` nick
2014-11-03 15:08 ` Richard Purdie
0 siblings, 1 reply; 6+ messages in thread
From: nick @ 2014-11-01 23:25 UTC (permalink / raw)
To: Paul Eggleton; +Cc: yocto
This isn't a network issue as I can fetch Yocto sources from other servers without
any problems.
Cheers Nick
On 14-11-01 04:54 PM, Paul Eggleton wrote:
> On Saturday 01 November 2014 19:55:47 Sven Ebenfeld wrote:
>> Looks like problems with gitorious.org again.
>> You should either find a mirror again or wait if the problem solves
>> itself. Unfortunately I don't know, which git repository this recipe
>> (opie) needs so I don't know if a mirror exists.
>>
>> Am 01.11.2014 18:53, schrieb nick:
>>> Exception: ExpansionError: Failure expanding variable SRCPV, expression
>>> was ${@bb.fetch2.get_srcrev(d)} which triggered exception FetchError:
>>> Fetcher failure: Fetch command failed with exit code 128, output: fatal:
>>> unable to connect to gitorious.org:
>>> gitorious.org: Name or service not known
>
> "Name or service not known" - that suggests a DNS failure - are you sure you
> don't have local network issues?
>
> Cheers,
> Paul
>
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: Angstrom Build Fails
2014-11-01 23:25 ` nick
@ 2014-11-03 15:08 ` Richard Purdie
2014-11-03 17:33 ` Chris Tapp
0 siblings, 1 reply; 6+ messages in thread
From: Richard Purdie @ 2014-11-03 15:08 UTC (permalink / raw)
To: nick; +Cc: Paul Eggleton, yocto
On Sat, 2014-11-01 at 19:25 -0400, nick wrote:
> This isn't a network issue as I can fetch Yocto sources from other servers without
> any problems.
It can a network issue, routes to different places go through different
servers and so whilst less common than complete network failure, you can
have a DNS problem or a routing problem to certain hosts, maybe not in
your local network but in that of your provider.
Cheers,
Richard
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: Angstrom Build Fails
2014-11-03 15:08 ` Richard Purdie
@ 2014-11-03 17:33 ` Chris Tapp
0 siblings, 0 replies; 6+ messages in thread
From: Chris Tapp @ 2014-11-03 17:33 UTC (permalink / raw)
To: Richard Purdie; +Cc: Paul Eggleton, yocto
On 3 Nov 2014, at 15:08, Richard Purdie <richard.purdie@linuxfoundation.org> wrote:
> On Sat, 2014-11-01 at 19:25 -0400, nick wrote:
>> This isn't a network issue as I can fetch Yocto sources from other servers without
>> any problems.
>
> It can a network issue, routes to different places go through different
> servers and so whilst less common than complete network failure, you can
> have a DNS problem or a routing problem to certain hosts, maybe not in
> your local network but in that of your provider.
Seems to be a bit of this going on today.
Sites like http://downforeveryoneorjustme.com/ can help resolve if its a local or global issue.
--
Chris Tapp
opensource@keylevel.com
www.keylevel.com
----
You can tell you're getting older when your car insurance gets real cheap!
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2014-11-03 17:34 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-11-01 17:53 Angstrom Build Fails nick
2014-11-01 18:55 ` Sven Ebenfeld
2014-11-01 20:54 ` Paul Eggleton
2014-11-01 23:25 ` nick
2014-11-03 15:08 ` Richard Purdie
2014-11-03 17:33 ` Chris Tapp
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.