From: Ciaran Gultnieks Date: Wed, 9 Oct 2013 08:43:02 +0000 (+0100) Subject: Detect proprietary youtube api lib X-Git-Tag: 0.1~378 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=5ce730a3a000ff98a546d074f192282a3db5a13d;p=fdroidserver.git Detect proprietary youtube api lib --- diff --git a/fdroidserver/common.py b/fdroidserver/common.py index 809dd326..3e56dd10 100644 --- a/fdroidserver/common.py +++ b/fdroidserver/common.py @@ -1514,7 +1514,7 @@ def scan_source(build_dir, root_dir, thisbuild): problems = [] - # Common known non-free blobs: + # Common known non-free blobs (always lower case): usual_suspects = ['flurryagent', 'paypal_mpl', 'libgoogleanalytics', @@ -1524,7 +1524,8 @@ def scan_source(build_dir, root_dir, thisbuild): 'google-play-services', 'crittercism', 'heyzap', - 'jpct-ae'] + 'jpct-ae', + 'youtubeandroidplayerapi'] if 'scanignore' in thisbuild: ignore = [p.strip() for p in thisbuild['scanignore'].split(';')]