代码拉取完成,页面将自动刷新
同步操作将从 openEuler/ros-porting-tools 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
#!/bin/bash
. base.sh
ROS_DEPS=${OUTPUT}/ros-deps.list
ROS_DEPS_SRC=${OUTPUT}/ros-deps-src.list
prepare()
{
if [ ! -d ${ROS_DEPS_BASE} ]
then
error_log "Can not find ${ROS_DEPS_BASE}, you can use get-pkg-deps.sh to create it"
exit 1
fi
cat /etc/os-release | grep -q Ubuntu
if [ $? -ne 0 ]
then
error_log "Please run me in Ubuntu system"
exit 1
fi
>${ROS_DEPS}
>${ROS_DEPS_SRC}
}
main()
{
prepare
info_log "Start to analyse ros-pkg."
for i in `cat ${ROS_DEPS_BASE}/*ExtDeps | sort | uniq`
do
info_log "Analyse $i"
echo -e "$i" >> ${ROS_DEPS}
apt show $i 2>/dev/null >${OUTPUT}/.apt_result
if [ $? -ne 0 ]
then
error_log "Can not find pkg $i"
echo $i >>${ROS_DEPS_SRC}
continue
fi
src_pkg=`cat ${OUTPUT}/.apt_result | grep "Source: " | awk -F "Source: " '{print $2}'`
if [ "$src_pkg" = "" ]
then
src_pkg=$i
fi
echo -e "$i\t$src_pkg" >> ${ROS_DEPS_SRC}
done
info_log "Gen ros-pkg-src.list done, you can find it in ${ROS_DEPS_SRC}"
}
main $*
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。