internal/rosa: sed artifact
All checks were successful
Test / Create distribution (push) Successful in 59s
Test / Sandbox (push) Successful in 2m38s
Test / Hakurei (push) Successful in 3m57s
Test / ShareFS (push) Successful in 3m58s
Test / Hpkg (push) Successful in 4m30s
Test / Sandbox (race detector) (push) Successful in 4m58s
Test / Hakurei (race detector) (push) Successful in 6m11s
Test / Flake checks (push) Successful in 2m0s

Required by various GNU programs as they are not happy with toybox sed.

Signed-off-by: Ophestra <cat@gensokyo.uk>
This commit is contained in:
2026-01-29 18:17:18 +09:00
parent 85eda49b2b
commit 744e4e0632
2 changed files with 26 additions and 0 deletions

View File

@@ -51,6 +51,7 @@ const (
Pygments
Python
Rsync
Sed
Setuptools
Toybox
Wayland
@@ -129,6 +130,7 @@ func ResolveName(name string) (p PArtifact, ok bool) {
"pygments": Pygments,
"python": Python,
"rsync": Rsync,
"sed": Sed,
"setuptools": Setuptools,
"toybox": Toybox,
"wayland": Wayland,

View File

@@ -50,6 +50,30 @@ make DESTDIR=/work install
}
func init() { artifactsF[M4] = Toolchain.newM4 }
func (t Toolchain) newSed() pkg.Artifact {
const (
version = "4.9"
checksum = "pe7HWH4PHNYrazOTlUoE1fXmhn2GOPFN_xE62i0llOr3kYGrH1g2_orDz0UtZ9Nt"
)
return t.New("sed-"+version, false, []pkg.Artifact{
t.Load(Make),
t.Load(Gawk),
}, nil, nil, `
cd "$(mktemp -d)"
/usr/src/sed/configure \
--prefix=/system \
--build="${ROSA_TRIPLE}"
make "-j$(nproc)" check
make DESTDIR=/work install
`, pkg.Path(AbsUsrSrc.Append("sed"), false, pkg.NewHTTPGetTar(
nil,
"https://ftp.gnu.org/gnu/sed/sed-"+version+".tar.gz",
mustDecode(checksum),
pkg.TarGzip,
)))
}
func init() { artifactsF[Sed] = Toolchain.newSed }
func (t Toolchain) newAutoconf() pkg.Artifact {
const (
version = "2.72"