aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorOphestra <cat@gensokyo.uk>2026-01-31 11:41:07 +0900
committerOphestra <cat@gensokyo.uk>2026-01-31 11:41:07 +0900
commit536f0cbae6134bceac8f45266398439edd8f1a49 (patch)
tree22da5ee4df8ce67c7e0ee3bc15e7d66cfef89770
parent8d872ff1cdd0f193cb491a6190eeee28c2ba1192 (diff)
internal/rosa/gnu: gettext 0.26 to 1.0
This now requires kernel headers for some reason. Signed-off-by: Ophestra <cat@gensokyo.uk>
-rw-r--r--internal/rosa/gnu.go8
1 files changed, 5 insertions, 3 deletions
diff --git a/internal/rosa/gnu.go b/internal/rosa/gnu.go
index fa4bb0a4..5a0265d7 100644
--- a/internal/rosa/gnu.go
+++ b/internal/rosa/gnu.go
@@ -84,8 +84,8 @@ func init() { artifactsF[Gzip] = Toolchain.newGzip }
func (t Toolchain) newGettext() pkg.Artifact {
const (
- version = "0.26"
- checksum = "IMu7yDZX7xL5UO1ZxXc-iBMbY9LLEUlOroyuSlHMZwg9MKtxG7HIm8F2LheDua0y"
+ version = "1.0"
+ checksum = "3MasKeEdPeFEgWgzsBKk7JqWqql1wEMbgPmzAfs-mluyokoW0N8oQVxPQoOnSdgC"
)
return t.NewViaMake("gettext", version, pkg.NewHTTPGetTar(
nil, "https://ftpmirror.gnu.org/gnu/gettext/gettext-"+version+".tar.gz",
@@ -107,12 +107,14 @@ test_disable '#!/bin/sh' gettext-tools/tests/format-c-5
test_disable '#!/bin/sh' gettext-tools/gnulib-tests/test-c32ispunct.sh
test_disable 'int main(){return 0;}' gettext-tools/gnulib-tests/test-stdcountof-h.c
-touch gettext-tools/misc/archive.dir.tar
+touch gettext-tools/autotools/archive.dir.tar
`,
},
t.Load(Diffutils),
t.Load(Gzip),
t.Load(Sed),
+
+ t.Load(KernelHeaders),
)
}
func init() { artifactsF[Gettext] = Toolchain.newGettext }