Build Error : localization-tool-native-1.11.0

On my terminal,

WARNING: localization-tool-native-1.11.0-r9 do_fetch: Failed to fetch URL git://github.com/iLib-js/ilib-loctool-webos-dist.git;branch=master;protocol=https, attempting MIRRORS if available
ERROR: localization-tool-native-1.11.0-r9 do_fetch: Fetcher failure: Unable to find revision 9ac1b6554a0e4ce54da7c7ebbd581877b7330055 in branch master even from upstream
ERROR: localization-tool-native-1.11.0-r9 do_fetch: Bitbake Fetcher Error: FetchError('Unable to fetch URL from any source.', 'git://github.com/iLib-js/ilib-loctool-webos-dist.git;branch=master;protocol=https')
ERROR: Logfile of failure stored in: /home/acyo/build-webos/BUILD/work/x86_64-linux/localization-tool-native/1.11.0-r9/temp/log.do_fetch.6006
ERROR: Task (/home/acyo/build-webos/meta-webosose/meta-webos/recipes-webos/localization-tool/localization-tool-native.bb:do_fetch) failed with exit code '1'

And i checked log file,

DEBUG: Running 'export PSEUDO_DISABLED=1; 
export DBUS_SESSION_BUS_ADDRESS="unix:path=/run/user/1000/bus"; 
export SSH_AGENT_PID="1902"; 
export SSH_AUTH_SOCK="/run/user/1000/keyring/ssh"; 
export PATH="/home/acyo/build-webos/oe-core/scripts/native-intercept:/home/acyo/build-webos/BUILD/sysroots-uninative/x86_64-linux/usr/bin:/home/acyo/build-webos/meta-webosose/meta-webos/scripts:/home/acyo/build-webos/oe-core/scripts:/home/acyo/build-webos/BUILD/work/x86_64-linux/localization-tool-native/1.11.0-r9/recipe-sysroot-native/usr/bin/x86_64-linux:/home/acyo/build-webos/BUILD/work/x86_64-linux/localization-tool-native/1.11.0-r9/recipe-sysroot-native/usr/bin:/home/acyo/build-webos/BUILD/work/x86_64-linux/localization-tool-native/1.11.0-r9/recipe-sysroot-native/usr/sbin:/home/acyo/build-webos/BUILD/work/x86_64-linux/localization-tool-native/1.11.0-r9/recipe-sysroot-native/usr/bin:/home/acyo/build-webos/BUILD/work/x86_64-linux/localization-tool-native/1.11.0-r9/recipe-sysroot-native/sbin:/home/acyo/build-webos/BUILD/work/x86_64-linux/localization-tool-native/1.11.0-r9/recipe-sysroot-native/bin:/home/acyo/build-webos/bitbake/bin:/home/acyo/build-webos/BUILD/hosttools"; 
export HOME="/home/acyo"; 
git -c core.fsyncobjectfiles=0 -c gc.autoDetach=false -c core.pager=cat branch --contains 9ac1b6554a0e4ce54da7c7ebbd581877b7330055 --list master 2> /dev/null | wc -l' in /home/acyo/build-webos/downloads/git2/github.com.iLib-js.ilib-loctool-webos-dist.git

i checked git, but it works well,

My building Env. was

ubuntu 18.04
gcc 11.1.0

and i tried building img for rpi4_devel.

Hi @ChangyongAhn,

This error is caused by the change of branch name.

The branch name of the iLib-js/ilib-loctool-webos-dist repository is changed to 'main' (from 'master'). So the build script cannot download the repository.

To fix it, change the codes in the build-webos/meta-webosose/meta-webos/recipes-webos/localization-tool/localization-tool-native.bb file:

Before:

SRC_URI = "git://github.com/iLib-js/ilib-loctool-webos-dist.git;branch=master;protocol=https"

After:

SRC_URI = "git://github.com/iLib-js/ilib-loctool-webos-dist.git;branch=main;protocol=https"

I'll report this issue to our dev. team.
Thanks for the issue report.

2 Likes

@ChangyongAhn,

This error has been resolved in v2.21.0.

Thanks for the report.

1 Like