internal/rosa/python: enable bzip2 and xz
All checks were successful
Test / Create distribution (push) Successful in 1m0s
Test / Sandbox (push) Successful in 2m47s
Test / Hakurei (push) Successful in 7m7s
Test / Sandbox (race detector) (push) Successful in 8m43s
Test / Hpkg (push) Successful in 8m51s
Test / ShareFS (push) Successful in 8m52s
Test / Hakurei (race detector) (push) Successful in 10m58s
Test / Flake checks (push) Successful in 1m49s

This is required by qemu test suite.

Signed-off-by: Ophestra <cat@gensokyo.uk>
This commit is contained in:
2026-02-17 02:39:11 +09:00
parent 50c9da8b6d
commit 47860b0387

View File

@@ -49,10 +49,6 @@ func (t Toolchain) newPython() pkg.Artifact {
"ld-musl-" + linuxArch() + ".so.1",
},
Configure: [][2]string{
{"with-openssl", "/system"},
},
ScriptEarly: `
export HOME="$(mktemp -d)"
`,
@@ -61,7 +57,11 @@ export HOME="$(mktemp -d)"
},
t.Load(Zlib),
t.Load(Libffi),
t.Load(PkgConfig),
t.Load(OpenSSL),
t.Load(Bzip2),
t.Load(XZ),
)
}
func init() { artifactsF[Python] = Toolchain.newPython }