From 56f2c86b692de07463e63292b51175511ec5a2b4 Mon Sep 17 00:00:00 2001 From: Fijxu Date: Fri, 22 Mar 2024 16:14:23 -0300 Subject: [PATCH] test1234567 --- linux-fresh/Dockerfile | 12 ++++++------ linux-mingw/Dockerfile | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/linux-fresh/Dockerfile b/linux-fresh/Dockerfile index 113312a..4368aa2 100644 --- a/linux-fresh/Dockerfile +++ b/linux-fresh/Dockerfile @@ -103,7 +103,7 @@ RUN cd /tmp && \ # Install Boost from yuzu-emu/ext-linux-bin RUN cd /tmp && \ - wget --no-verbose https://github.com/yuzu-emu/ext-linux-bin/raw/main/boost/boost-${BOOST_VER}.tar.xz && \ + wget --no-verbose https://git.suyu.dev/suyu/ext-linux-bin/raw/main/boost/boost-${BOOST_VER}.tar.xz && \ tar xvf boost-${BOOST_VER}.tar.xz && \ chown -R root:root boost-${BOOST_VER}/ && \ cp -rv boost-${BOOST_VER}/usr / && \ @@ -112,10 +112,10 @@ RUN cd /tmp && \ # Install GCC from yuzu-emu/ext-linux-bin RUN cd /tmp && \ wget --no-verbose \ - https://github.com/yuzu-emu/ext-linux-bin/raw/main/gcc/gcc-${GCC_VER}-ubuntu.tar.xz.aa \ - https://github.com/yuzu-emu/ext-linux-bin/raw/main/gcc/gcc-${GCC_VER}-ubuntu.tar.xz.ab \ - https://github.com/yuzu-emu/ext-linux-bin/raw/main/gcc/gcc-${GCC_VER}-ubuntu.tar.xz.ac \ - https://github.com/yuzu-emu/ext-linux-bin/raw/main/gcc/gcc-${GCC_VER}-ubuntu.tar.xz.ad && \ + https://git.suyu.dev/suyu/ext-linux-bin/raw/main/gcc/gcc-${GCC_VER}-ubuntu.tar.xz.aa \ + https://git.suyu.dev/suyu/ext-linux-bin/raw/main/gcc/gcc-${GCC_VER}-ubuntu.tar.xz.ab \ + https://git.suyu.dev/suyu/ext-linux-bin/raw/main/gcc/gcc-${GCC_VER}-ubuntu.tar.xz.ac \ + https://git.suyu.dev/suyu/ext-linux-bin/raw/main/gcc/gcc-${GCC_VER}-ubuntu.tar.xz.ad && \ cat gcc-${GCC_VER}-ubuntu.tar.xz.* | tar xJ && \ cp -rv gcc-${GCC_VER}/usr / && \ rm -rf /tmp/gcc* && \ @@ -131,7 +131,7 @@ RUN cd /tmp && \ # Install GNU binutils from yuzu-emu/ext-linux-bin RUN cd /tmp && \ wget --no-verbose \ - https://github.com/yuzu-emu/ext-linux-bin/raw/main/binutils/binutils-${GNU_BIN_VER}-${UBUNTU_VER}.tar.xz && \ + https://git.suyu.dev/suyu/ext-linux-bin/raw/main/binutils/binutils-${GNU_BIN_VER}-${UBUNTU_VER}.tar.xz && \ tar xf binutils-${GNU_BIN_VER}-${UBUNTU_VER}.tar.xz && \ cp -rv binutils-${GNU_BIN_VER}-${UBUNTU_VER}/usr / && \ rm -rf /tmp/binutils* diff --git a/linux-mingw/Dockerfile b/linux-mingw/Dockerfile index b88fedc..de9835d 100644 --- a/linux-mingw/Dockerfile +++ b/linux-mingw/Dockerfile @@ -49,7 +49,7 @@ RUN useradd -m -u 1027 -s /bin/bash yuzu && mkdir -p /tmp/pkgs && \ # Install Boost from yuzu-emu/ext-linux-bin RUN wget --no-verbose \ - https://github.com/yuzu-emu/ext-linux-bin/raw/main/mingw/mingw-w64-boost-1.79.0-1-any.pkg.tar.zst && \ + https://git.suyu.dev/suyu/ext-linux-bin/raw/main/mingw/mingw-w64-boost-1.79.0-1-any.pkg.tar.zst && \ pacman -U --noconfirm mingw-w64-boost-1.79.0-1-any.pkg.tar.zst && \ rm mingw-w64-boost-1.79.0-1-any.pkg.tar.zst