From: Hans-Christoph Steiner Date: Mon, 4 Dec 2017 19:28:57 +0000 (+0100) Subject: lint: add more VCS HTTPS checks X-Git-Tag: 1.0.0~44^2~3 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=8588b89efff3ffd3c2540d5b11af65a2f6c2e187;p=fdroidserver.git lint: add more VCS HTTPS checks I manually checked that these work with HTTPS. fdroiddata!2710 should fix all of these issues. --- 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'), ]