aboutsummaryrefslogtreecommitdiffhomepage
path: root/internal/rosa/package
diff options
context:
space:
mode:
authorOphestra <cat@gensokyo.uk>2026-07-25 14:14:34 +0900
committerOphestra <cat@gensokyo.uk>2026-07-25 14:14:34 +0900
commit0d3efeb456117b87f256e3bfaabd5abbace67ab4 (patch)
tree7405be7a58e634f2d6d1fa00b34b3e054e35666c /internal/rosa/package
parent35147f6dfb0b81d2fe21f69b3800162b0cd7060f (diff)
internal/rosa: remove xz utils hack
This replaces all xz invocations with the native decompressor. This also significantly cleans up the Gentoo stage3 bootstrap path. Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'internal/rosa/package')
-rw-r--r--internal/rosa/package/gnu.az6
1 files changed, 4 insertions, 2 deletions
diff --git a/internal/rosa/package/gnu.az b/internal/rosa/package/gnu.az
index d1da6b8a..7cfcc726 100644
--- a/internal/rosa/package/gnu.az
+++ b/internal/rosa/package/gnu.az
@@ -292,11 +292,14 @@ package findutils {
anitya = 812;
version# = "4.11.0";
- source = remoteFile {
+ source = remoteTar {
url = "https://ftpmirror.gnu.org/gnu/findutils/findutils-"+version+".tar.xz";
+ compress = xz;
checksum = "X-qsv9aUoBL583q-4iZcBI3_7Ufd3fSIqFmNLXWdEpUihlRfMpGGyAUt8SAvDKae";
};
+ writable = true;
+ chmod = true;
early = `
echo '#!/bin/sh' > gnulib-tests/test-c32ispunct.sh
echo 'int main(){return 0;}' > gnulib-tests/test-fstatat.c
@@ -307,7 +310,6 @@ echo 'int main(){return 0;}' > tests/xargs/test-sigusr.c
inputs = [
diffutils,
- xz,
sed,
];
}