From d93c3154ac48bdd44856f95d7a5505e34d8ac685 Mon Sep 17 00:00:00 2001 From: Alfred Wingate Date: Sat, 2 Mar 2024 20:04:24 +0200 Subject: [PATCH] Update GNOME_URL_SOURCE * It gets redirected eitherway. Signed-off-by: Alfred Wingate --- src/euscan/handlers/gnome.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/euscan/handlers/gnome.py b/src/euscan/handlers/gnome.py index a488a46..e62478e 100644 --- a/src/euscan/handlers/gnome.py +++ b/src/euscan/handlers/gnome.py @@ -20,7 +20,7 @@ HANDLER_NAME = "gnome" CONFIDENCE = 100 PRIORITY = 90 -GNOME_URL_SOURCE = "http://ftp.gnome.org/pub/GNOME/sources" +GNOME_URL_SOURCE = "https://download.gnome.org/sources" def can_handle(_pkg, url=None): @@ -38,7 +38,7 @@ def guess_package(cp, url): def scan_url(pkg, url, options): - "http://ftp.gnome.org/pub/GNOME/sources/" + "https://download.gnome.org/sources/" package = { "data": guess_package(pkg.cpv, url), "type": "gnome",