From: Daniel Stenberg Date: Mon, 12 May 2025 08:09:39 +0000 (+0200) Subject: mk-ca-bundle: switch URLs to GitHub versions X-Git-Tag: curl-8_14_0~104 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4f055feee236ce2bed9ac5147de0106c7c143c96;p=thirdparty%2Fcurl.git mk-ca-bundle: switch URLs to GitHub versions The offical Firefox source code has moved to GitHub: https://github.com/mozilla-firefox/firefox This change adjusts to the new URLs. The old branches nss and central are not provided so they are removed and the new 'autoland' is added. Closes #17321 --- diff --git a/scripts/mk-ca-bundle.pl b/scripts/mk-ca-bundle.pl index 00d93c76de..79c78eb85b 100755 --- a/scripts/mk-ca-bundle.pl +++ b/scripts/mk-ca-bundle.pl @@ -50,10 +50,9 @@ if($@) { eval "require LWP::UserAgent"; my %urls = ( - 'nss' => 'https://hg.mozilla.org/projects/nss/raw-file/default/lib/ckfw/builtins/certdata.txt', - 'central' => 'https://hg.mozilla.org/mozilla-central/raw-file/default/security/nss/lib/ckfw/builtins/certdata.txt', - 'beta' => 'https://hg.mozilla.org/releases/mozilla-beta/raw-file/default/security/nss/lib/ckfw/builtins/certdata.txt', - 'release' => 'https://hg.mozilla.org/releases/mozilla-release/raw-file/default/security/nss/lib/ckfw/builtins/certdata.txt', + 'autoland' => 'https://raw.githubusercontent.com/mozilla-firefox/firefox/refs/heads/autoland/security/nss/lib/ckfw/builtins/certdata.txt', + 'beta' => 'https://raw.githubusercontent.com/mozilla-firefox/firefox/refs/heads/beta/security/nss/lib/ckfw/builtins/certdata.txt', + 'release' => 'https://raw.githubusercontent.com/mozilla-firefox/firefox/refs/heads/release/security/nss/lib/ckfw/builtins/certdata.txt', ); $opt_d = 'release';