internal/rosa/gnu: automake artifact
All checks were successful
Test / Create distribution (push) Successful in 1m0s
Test / Sandbox (push) Successful in 2m43s
Test / Hakurei (push) Successful in 3m56s
Test / ShareFS (push) Successful in 4m1s
Test / Hpkg (push) Successful in 4m42s
Test / Sandbox (race detector) (push) Successful in 5m3s
Test / Hakurei (race detector) (push) Successful in 5m56s
Test / Flake checks (push) Successful in 1m41s

This is very expensive. Avoid.

Signed-off-by: Ophestra <cat@gensokyo.uk>
This commit is contained in:
2026-02-02 18:49:18 +09:00
parent 550e83dda9
commit 9f98d12ad8
2 changed files with 36 additions and 0 deletions

View File

@@ -13,6 +13,7 @@ const (
ACL PArtifact = iota ACL PArtifact = iota
Attr Attr
Autoconf Autoconf
Automake
Bash Bash
CMake CMake
Coreutils Coreutils
@@ -94,6 +95,7 @@ func ResolveName(name string) (p PArtifact, ok bool) {
"acl": ACL, "acl": ACL,
"attr": Attr, "attr": Attr,
"autoconf": Autoconf, "autoconf": Autoconf,
"automake": Automake,
"bash": Bash, "bash": Bash,
"cmake": CMake, "cmake": CMake,
"coreutils": Coreutils, "coreutils": Coreutils,

View File

@@ -65,6 +65,40 @@ func (t Toolchain) newAutoconf() pkg.Artifact {
} }
func init() { artifactsF[Autoconf] = Toolchain.newAutoconf } func init() { artifactsF[Autoconf] = Toolchain.newAutoconf }
func (t Toolchain) newAutomake() pkg.Artifact {
const (
version = "1.18.1"
checksum = "FjvLG_GdQP7cThTZJLDMxYpRcKdpAVG-YDs1Fj1yaHlSdh_Kx6nRGN14E0r_BjcG"
)
return t.NewViaMake("automake", version, pkg.NewHTTPGetTar(
nil, "https://ftpmirror.gnu.org/gnu/automake/automake-"+version+".tar.gz",
mustDecode(checksum),
pkg.TarGzip,
), &MakeAttr{
Writable: true,
ScriptEarly: `
cd /usr/src/automake
test_disable() { chmod +w "$2" && echo "$1" > "$2"; }
test_disable '#!/bin/sh' t/objcxx-minidemo.sh
test_disable '#!/bin/sh' t/objcxx-deps.sh
test_disable '#!/bin/sh' t/dist-no-built-sources.sh
test_disable '#!/bin/sh' t/distname.sh
test_disable '#!/bin/sh' t/pr9.sh
`,
},
t.Load(M4),
t.Load(Perl),
t.Load(Grep),
t.Load(Gzip),
t.Load(Autoconf),
t.Load(Diffutils),
)
}
func init() { artifactsF[Automake] = Toolchain.newAutomake }
func (t Toolchain) newGzip() pkg.Artifact { func (t Toolchain) newGzip() pkg.Artifact {
const ( const (
version = "1.14" version = "1.14"