From 536f0cbae6134bceac8f45266398439edd8f1a49 Mon Sep 17 00:00:00 2001 From: Ophestra Date: Sat, 31 Jan 2026 11:41:07 +0900 Subject: [PATCH] internal/rosa/gnu: gettext 0.26 to 1.0 This now requires kernel headers for some reason. Signed-off-by: Ophestra --- internal/rosa/gnu.go | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/internal/rosa/gnu.go b/internal/rosa/gnu.go index fa4bb0a..5a0265d 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 }