From b7af1eac255cab2e63d43ba50b0ae1788f7116e1 Mon Sep 17 00:00:00 2001 From: LLONSIT Date: Thu, 4 Jun 2026 13:10:49 -0500 Subject: [PATCH 1/3] Add ido5.2 --- values.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/values.yaml b/values.yaml index e717b1d..87d6761 100644 --- a/values.yaml +++ b/values.yaml @@ -85,6 +85,11 @@ compilers: template: common/default file: https://github.com/decompme/compilers/releases/download/compilers/ido4.1.tar.gz + - id: ido5.2 + platform: n64 + template: common/default + file: https://github.com/LLONSIT/qemu-irix-helpers/raw/refs/heads/n/qemu/ido5.2.tar.xz + - id: ido5.3 platform: n64 template: common/default From 4dfd44acbd60dc02dde50b2972c30e7bd00067f4 Mon Sep 17 00:00:00 2001 From: LLONSIT Date: Thu, 4 Jun 2026 13:16:24 -0500 Subject: [PATCH 2/3] Add ido5.2 Dockerfile --- platforms/n64/ido5.2/Dockerfile | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 platforms/n64/ido5.2/Dockerfile diff --git a/platforms/n64/ido5.2/Dockerfile b/platforms/n64/ido5.2/Dockerfile new file mode 100644 index 0000000..e24540c --- /dev/null +++ b/platforms/n64/ido5.2/Dockerfile @@ -0,0 +1,17 @@ +# NOTE: This file is generated automatically via template.py. Do not edit manually! + + +FROM alpine:3.18 AS base + +RUN mkdir -p /compilers/n64/ido4.1 + +RUN wget -O ido5.2.tar.xz "https://github.com/LLONSIT/qemu-irix-helpers/raw/refs/heads/n/qemu/ido5.2.tar.xz" +RUN tar xvJf ido5.2.tar.xz -C /compilers/n64/ido5.2 + +RUN chown -R root:root /compilers/n64/ido5.2/ +RUN chmod +x /compilers/n64/ido5.2/* + + +FROM scratch AS release + +COPY --from=base /compilers /compilers From b2c41e364297a57857dadd356a21eae5fcf54b97 Mon Sep 17 00:00:00 2001 From: LLONSIT Date: Thu, 4 Jun 2026 16:58:47 -0500 Subject: [PATCH 3/3] Generate ido5.2 Dockerfile with template.py --- platforms/n64/ido5.2/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platforms/n64/ido5.2/Dockerfile b/platforms/n64/ido5.2/Dockerfile index e24540c..3074cf5 100644 --- a/platforms/n64/ido5.2/Dockerfile +++ b/platforms/n64/ido5.2/Dockerfile @@ -3,7 +3,7 @@ FROM alpine:3.18 AS base -RUN mkdir -p /compilers/n64/ido4.1 +RUN mkdir -p /compilers/n64/ido5.2 RUN wget -O ido5.2.tar.xz "https://github.com/LLONSIT/qemu-irix-helpers/raw/refs/heads/n/qemu/ido5.2.tar.xz" RUN tar xvJf ido5.2.tar.xz -C /compilers/n64/ido5.2