]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
mk-ca-bundle: switch URLs to GitHub versions
authorDaniel Stenberg <daniel@haxx.se>
Mon, 12 May 2025 08:09:39 +0000 (10:09 +0200)
committerDaniel Stenberg <daniel@haxx.se>
Mon, 12 May 2025 09:09:17 +0000 (11:09 +0200)
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

scripts/mk-ca-bundle.pl

index 00d93c76def8d975cf47240b166aaddc574b0cf1..79c78eb85b19b7103c43ece90a36b48c4cabe6fb 100755 (executable)
@@ -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';