DEBUG: Executing python function sstate_task_prefunc
DEBUG: Python function sstate_task_prefunc finished
DEBUG: Executing python function do_populate_lic
DEBUG: Python function do_populate_lic finished
DEBUG: Executing python function populate_lic_qa_checksum
NOTE: binutils-cross-aarch64: md5 checksum matched for file://COPYING;md5=59530bdf33659b29e73d4adb9f9f6552
NOTE: binutils-cross-aarch64: md5 checksum matched for file://COPYING.LIB;md5=9f604d8a4f8e74f4f5140845a21b6674
NOTE: binutils-cross-aarch64: md5 checksum matched for file://COPYING3;md5=d32239bcb673463ab874e80d47fae504
NOTE: binutils-cross-aarch64: md5 checksum matched for file://COPYING3.LIB;md5=6a6a8e020838b23406c81b19c1d46df6
NOTE: binutils-cross-aarch64: md5 checksum matched for file://gas/COPYING;md5=d32239bcb673463ab874e80d47fae504
NOTE: binutils-cross-aarch64: md5 checksum matched for file://include/COPYING;md5=59530bdf33659b29e73d4adb9f9f6552
NOTE: binutils-cross-aarch64: md5 checksum matched for file://include/COPYING3;md5=d32239bcb673463ab874e80d47fae504
NOTE: binutils-cross-aarch64: md5 checksum matched for file://libiberty/COPYING.LIB;md5=a916467b91076e631dd8edb7424769c7
NOTE: binutils-cross-aarch64: md5 checksum matched for file://bfd/COPYING;md5=d32239bcb673463ab874e80d47fae504
DEBUG: Python function populate_lic_qa_checksum finished
DEBUG: Executing python function sstate_task_postfunc
NOTE: Using umask 2 (not 22) for sstate packaging
DEBUG: Preparing tree TOPDIR/tmp/work/aarch64-linux/binutils-cross-aarch64/2.46/license-destdir for packaging at TOPDIR/tmp/work/aarch64-linux/binutils-cross-aarch64/2.46/sstate-build-populate_lic/license-destdir
DEBUG: Executing python function target_add_sysroot_deps
DEBUG: Python function target_add_sysroot_deps finished
DEBUG: Executing python function sstate_hardcode_path
NOTE: Removing hardcoded paths from sstate package: 'grep -Irl -e TOPDIR/tmp/work/aarch64-linux/binutils-cross-aarch64/2.46/recipe-sysroot -e TOPDIR/tmp/work/aarch64-linux/binutils-cross-aarch64/2.46/recipe-sysroot-native -e TOPDIR/tmp/hosttools TOPDIR/tmp/work/aarch64-linux/binutils-cross-aarch64/2.46/sstate-build-populate_lic/ | xargs grep -l -e 'TOPDIR/tmp/work/aarch64-linux/binutils-cross-aarch64/2.46/recipe-sysroot' -e 'TOPDIR/tmp/work/aarch64-linux/binutils-cross-aarch64/2.46/recipe-sysroot-native' -e 'TOPDIR/tmp/hosttools' | tee TOPDIR/tmp/work/aarch64-linux/binutils-cross-aarch64/2.46/sstate-build-populate_lic/fixmepath | xargs --no-run-if-empty sed -i -e 's:TOPDIR/tmp/work/aarch64-linux/binutils-cross-aarch64/2.46/recipe-sysroot-native:FIXMESTAGINGDIRHOST:g' -e 's:TOPDIR/tmp/work/aarch64-linux/binutils-cross-aarch64/2.46/recipe-sysroot:FIXMESTAGINGDIRTARGET:g' -e 's:TOPDIR/tmp/hosttools:FIXME_HOSTTOOLS_DIR:g''
DEBUG: Python function sstate_hardcode_path finished
DEBUG: Executing python function cross_add_do_populate_sysroot_deps
DEBUG: Python function cross_add_do_populate_sysroot_deps finished
DEBUG: Executing python function sstate_report_unihash
DEBUG: Reported task 2379f312e4a1b69e36c9a1131a613abfcd20faecdeae88d91d60551a9dc5a470 as unihash 2379f312e4a1b69e36c9a1131a613abfcd20faecdeae88d91d60551a9dc5a470 to wss://hashserv-eu.yoctoproject.org/ws
DEBUG: Python function sstate_report_unihash finished
DEBUG: Executing python function sstate_create_and_sign_package
ERROR: Error executing a python function in exec_func_python() autogenerated:
The stack trace of python calls that resulted in this exception/failure was:
File: 'exec_func_python() autogenerated', lineno: 2, function: <module>
0001:
*** 0002:sstate_create_and_sign_package(d)
0003:
File: '/srv/pokybuild/yocto-worker/qemuarm64-ptest/build/layers/openembedded-core/meta/classes-global/sstate.bbclass', lineno: 862, function: sstate_create_and_sign_package
0858: # be updated.
0859: update_file(tmp_pkg, sstate_pkg, force=True)
0860: else:
0861: from tempfile import NamedTemporaryFile
*** 0862: with NamedTemporaryFile(prefix=sstate_pkg.name, dir=sstate_pkg.parent) as tmp_pkg_fd:
0863: tmp_pkg = tmp_pkg_fd.name
0864: sstate_archive_package(tmp_pkg, d)
0865: update_file(tmp_pkg, sstate_pkg)
0866: # update_file() may have renamed tmp_pkg, which must exist when the
File: '/usr/lib/python3.13/tempfile.py', lineno: 773, function: NamedTemporaryFile
0769: nonlocal name
0770: fd, name = _mkstemp_inner(dir, prefix, suffix, flags, output_type)
0771: return fd
0772: try:
*** 0773: file = _io.open(dir, mode, buffering=buffering,
0774: newline=newline, encoding=encoding, errors=errors,
0775: opener=opener)
0776: try:
0777: raw = getattr(file, 'buffer', file)
File: '/usr/lib/python3.13/tempfile.py', lineno: 770, function: opener
0766:
0767: name = None
0768: def opener(*args):
0769: nonlocal name
*** 0770: fd, name = _mkstemp_inner(dir, prefix, suffix, flags, output_type)
0771: return fd
0772: try:
0773: file = _io.open(dir, mode, buffering=buffering,
0774: newline=newline, encoding=encoding, errors=errors,
File: '/usr/lib/python3.13/tempfile.py', lineno: 447, function: _mkstemp_inner
0443: name = next(names)
0444: file = _os.path.join(dir, pre + name + suf)
0445: _sys.audit("tempfile.mkstemp", file)
0446: try:
*** 0447: fd = _os.open(file, flags, 0o600)
0448: except FileExistsError:
0449: continue # try again
0450: except PermissionError:
0451: # This exception is thrown when a directory with the chosen name
Exception: OSError: [Errno 121] Remote I/O error: '/srv/autobuilder/valkyrie.yocto.io/pub/sstate/23/79/sstate:binutils-cross-aarch64::2.46:r0::14:2379f312e4a1b69e36c9a1131a613abfcd20faecdeae88d91d60551a9dc5a470_populate_lic.tar.zsteijfgjwm'
DEBUG: Python function sstate_create_and_sign_package finished
DEBUG: Python function sstate_task_postfunc finished