Add 23.0 arm glibc builds

Musl needs musl-1.2.4 stable

Signed-off-by: Andreas K. Hüttel <dilfridge@gentoo.org>
This commit is contained in:
Andreas K. Hüttel 2023-12-21 19:44:41 +01:00
parent b10160e1e5
commit 4d6b810204
No known key found for this signature in database
GPG key ID: DC2B16215ED5412A
25 changed files with 332 additions and 0 deletions

View file

@ -27,6 +27,18 @@ SETS="
armv7a_sf_systemd_mu
armv7a_hf_musl_openrc
armv7a_hf_musl_hardened_openrc
armv4tl_openrc_23
armv4tl_systemd_23
armv5tel_openrc_23
armv5tel_systemd_23
armv6j_hf_openrc_23
armv6j_hf_systemd_23
armv6j_sf_openrc_23
armv6j_sf_systemd_23
armv7a_hf_openrc_23
armv7a_hf_systemd_23
armv7a_sf_openrc_23
armv7a_sf_systemd_23
"
SET_armv4tl_openrc_SPECS="armv4tl/stage1-openrc.spec armv4tl/stage3-openrc.spec"
@ -53,6 +65,25 @@ SET_armv7a_hf_musl_hardened_openrc_SPECS="armv7a-musl-hardened/stage1-hardfloat.
SET_armv7a_sf_openrc_SPECS="armv7a/stage1-openrc.spec armv7a/stage3-openrc.spec"
SET_armv7a_sf_systemd_mu_SPECS="armv7a/stage1-systemd-mu.spec armv7a/stage3-systemd-mu.spec"
SET_armv4tl_openrc_23_SPECS="armv4tl/stage1-openrc-23.spec armv4tl/stage3-openrc-23.spec"
SET_armv4tl_systemd_23_SPECS="armv4tl/stage1-systemd-23.spec armv4tl/stage3-systemd-23.spec"
SET_armv5tel_openrc_23_SPECS="armv5tel/stage1-openrc-23.spec armv5tel/stage3-openrc-23.spec"
SET_armv5tel_systemd_23_SPECS="armv5tel/stage1-systemd-23.spec armv5tel/stage3-systemd-23.spec"
SET_armv6j_hf_openrc_23_SPECS="armv6j/stage1-hardfloat-openrc-23.spec armv6j/stage3-hardfloat-openrc-23.spec"
SET_armv6j_hf_systemd_23_SPECS="armv6j/stage1-hardfloat-systemd-23.spec armv6j/stage3-hardfloat-systemd-23.spec"
SET_armv6j_sf_openrc_23_SPECS="armv6j/stage1-openrc-23.spec armv6j/stage3-openrc-23.spec"
SET_armv6j_sf_systemd_23_SPECS="armv6j/stage1-systemd-23.spec armv6j/stage3-systemd-23.spec"
SET_armv7a_hf_openrc_23_SPECS="armv7a/stage1-hardfloat-openrc-23.spec armv7a/stage3-hardfloat-openrc-23.spec"
SET_armv7a_hf_systemd_23_SPECS="armv7a/stage1-hardfloat-systemd-23.spec armv7a/stage3-hardfloat-systemd-23.spec"
SET_armv7a_sf_openrc_23_SPECS="armv7a/stage1-openrc-23.spec armv7a/stage3-openrc-23.spec"
SET_armv7a_sf_systemd_23_SPECS="armv7a/stage1-systemd-23.spec armv7a/stage3-systemd-23.spec"
update_symlinks() {
# Symlink the latest stages3 to build from
local d f
@ -155,4 +186,29 @@ post_build() {
esac
popd >/dev/null
pushd "${BUILD_SRCDIR_BASE}/builds/23.0-default" >/dev/null
case ${spec} in
armv4tl/stage3-systemd-23.spec)
upsync_binpackages "${BUILD_SRCDIR_BASE}/packages/23.0-default/stage3-armv4tl" arm/23.0/armv4tl
;;
armv5tel/stage3-systemd-23.spec)
upsync_binpackages "${BUILD_SRCDIR_BASE}/packages/23.0-default/stage3-armv5tel" arm/23.0/armv5tel
;;
armv6j/stage3-systemd-23.spec)
upsync_binpackages "${BUILD_SRCDIR_BASE}/packages/23.0-default/stage3-armv6j" arm/23.0/armv6j_sf
;;
armv6j/stage3-hardfloat-systemd-23.spec)
upsync_binpackages "${BUILD_SRCDIR_BASE}/packages/23.0-default/stage3-armv6j_hardfp" arm/23.0/armv6j_hf
;;
armv7a/stage3-systemd-23.spec)
upsync_binpackages "${BUILD_SRCDIR_BASE}/packages/23.0-default/stage3-armv7a" arm/23.0/armv7a_sf
;;
armv7a/stage3-hardfloat-systemd-23.spec)
upsync_binpackages "${BUILD_SRCDIR_BASE}/packages/23.0-default/stage3-armv7a_hardfp" arm/23.0/armv7a_hf
;;
esac
popd >/dev/null
}