Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Split dev packages on 3.20 #87

Merged
merged 12 commits into from
Jul 19, 2024
11 changes: 10 additions & 1 deletion update-repo.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,15 @@ done

shift $((OPTIND - 1))

generate_opts=
case "${ALPINE_VERSION}" in
3.20)
generate_opts="${generate_opts} --split-dev"
;;
*)
;;
esac

aports_dir=aports/v${ALPINE_VERSION}/ros/${ROS_DISTRO}

# env vars:
Expand Down Expand Up @@ -114,7 +123,7 @@ rosinstall_generator --deps --wet-only --flat ${package_list} --rosdistro ${ros_
echo $pkgname ${aports_dir}/${aportname}/APKBUILD >&2
fi
done \
| generate-rospkg-apkbuild-multi ${ros_distro}
| generate-rospkg-apkbuild-multi ${ros_distro} ${generate_opts}


# Commit changes and create PullRequest
Expand Down