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
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:
@@ -51,6 +51,7 @@ const (
|
|||||||
Pygments
|
Pygments
|
||||||
Python
|
Python
|
||||||
Rsync
|
Rsync
|
||||||
|
Sed
|
||||||
Setuptools
|
Setuptools
|
||||||
Toybox
|
Toybox
|
||||||
Wayland
|
Wayland
|
||||||
@@ -129,6 +130,7 @@ func ResolveName(name string) (p PArtifact, ok bool) {
|
|||||||
"pygments": Pygments,
|
"pygments": Pygments,
|
||||||
"python": Python,
|
"python": Python,
|
||||||
"rsync": Rsync,
|
"rsync": Rsync,
|
||||||
|
"sed": Sed,
|
||||||
"setuptools": Setuptools,
|
"setuptools": Setuptools,
|
||||||
"toybox": Toybox,
|
"toybox": Toybox,
|
||||||
"wayland": Wayland,
|
"wayland": Wayland,
|
||||||
|
|||||||
@@ -50,6 +50,30 @@ make DESTDIR=/work install
|
|||||||
}
|
}
|
||||||
func init() { artifactsF[M4] = Toolchain.newM4 }
|
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 {
|
func (t Toolchain) newAutoconf() pkg.Artifact {
|
||||||
const (
|
const (
|
||||||
version = "2.72"
|
version = "2.72"
|
||||||
|
|||||||
Reference in New Issue
Block a user