guix_mirror_bot pushed a commit to branch qt-team
in repository guix.

commit a9605cbcf7ac902270cb7509ebfde75cfd0034f0
Author: Andreas Enge <[email protected]>
AuthorDate: Sat Oct 25 19:19:21 2025 +0200

    guix: download: Add mirrors for Qt5.
    
    The prefix of the download URL has changed for Qt5, which has been moved
    from "official_releases" to "archive".
    
    * guix/download.scm (%mirrors)[qt]: Duplicate all mirrors with a
    different subdirectory in the URL.
    
    Change-Id: I775b346f6bd98fbb47961245b7288580fb6fd6e1
---
 guix/download.scm | 11 +++++++++--
 1 file changed, 9 insertions(+), 2 deletions(-)

diff --git a/guix/download.scm b/guix/download.scm
index 80ccbefd4f..06c027ae71 100644
--- a/guix/download.scm
+++ b/guix/download.scm
@@ -1,6 +1,6 @@
 ;;; GNU Guix --- Functional package management for GNU
 ;;; Copyright © 2012-2021, 2024-2025 Ludovic Courtès <[email protected]>
-;;; Copyright © 2013, 2014, 2015 Andreas Enge <[email protected]>
+;;; Copyright © 2013, 2014, 2015, 2025 Andreas Enge <[email protected]>
 ;;; Copyright © 2015 Federico Beffa <[email protected]>
 ;;; Copyright © 2016 Alex Griffin <[email protected]>
 ;;; Copyright © 2016 David Craven <[email protected]>
@@ -348,12 +348,19 @@
        "http://pub.mate-desktop.org/releases/";)
       (qt
        "https://mirrors.ocf.berkeley.edu/qt/official_releases/";
+       "https://mirrors.ocf.berkeley.edu/qt/archive/"; ; Qt5
        "https://ftp.jaist.ac.jp/pub/qtproject/official_releases/";
+       "https://ftp.jaist.ac.jp/pub/qtproject/archive/";
        "https://ftp.nluug.nl/languages/qt/official_releases/";
+       "https://ftp.nluug.nl/languages/qt/archive/";
        "https://mirrors.cloud.tencent.com/qt/official_releases/";
+       "https://mirrors.cloud.tencent.com/qt/archive/";
        "https://mirrors.sjtug.sjtu.edu.cn/qt/official_releases/";
+       "https://mirrors.sjtug.sjtu.edu.cn/qt/archive/";
        "https://qtproject.mirror.liquidtelecom.com/official_releases/";
-       "https://download.qt.io/official_releases/";)))) ;slow
+       "https://qtproject.mirror.liquidtelecom.com/archive/";
+       "https://download.qt.io/official_releases/"; ;slow
+       "https://download.qt.io/archive/";))))
 
 (define %mirror-file
   ;; Copy of the list of mirrors to a file.  This allows us to keep a single

Reply via email to