From 8588b89efff3ffd3c2540d5b11af65a2f6c2e187 Mon Sep 17 00:00:00 2001 From: Hans-Christoph Steiner Date: Mon, 4 Dec 2017 20:28:57 +0100 Subject: [PATCH] lint: add more VCS HTTPS checks I manually checked that these work with HTTPS. fdroiddata!2710 should fix all of these issues. --- fdroidserver/lint.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/fdroidserver/lint.py b/fdroidserver/lint.py index beaf097a..66b66245 100644 --- a/fdroidserver/lint.py +++ b/fdroidserver/lint.py @@ -42,7 +42,15 @@ https_enforcings = [ enforce_https('bitbucket.org'), enforce_https('apache.org'), enforce_https('google.com'), + enforce_https('git.code.sf.net'), enforce_https('svn.code.sf.net'), + enforce_https('anongit.kde.org'), + enforce_https('savannah.nongnu.org'), + enforce_https('git.savannah.nongnu.org'), + enforce_https('download.savannah.nongnu.org'), + enforce_https('savannah.gnu.org'), + enforce_https('git.savannah.gnu.org'), + enforce_https('download.savannah.gnu.org'), ]