Bug 1413185 - Remove obsolete license whitelist entry. r?froydnj draft
authorKartikaya Gupta <kgupta@mozilla.com>
Tue, 31 Oct 2017 09:39:50 -0400
changeset 689375 dfe5aca3ad448ad2a3f051ad4f102e9962e9779d
parent 689370 b474bde3239454cbf5be4115d764c011733b524b
child 738299 d232dcd026c099e05130d81a272885c49e6e22ae
push id87003
push userkgupta@mozilla.com
push dateTue, 31 Oct 2017 13:40:15 +0000
reviewersfroydnj
bugs1413185
milestone58.0a1
Bug 1413185 - Remove obsolete license whitelist entry. r?froydnj DONTBUILD because this only gets run as part of a manual `mach vendor rust` invocation and won't run in a regular CI run. MozReview-Commit-ID: FMym1BsEAFe
python/mozbuild/mozbuild/vendor_rust.py
--- a/python/mozbuild/mozbuild/vendor_rust.py
+++ b/python/mozbuild/mozbuild/vendor_rust.py
@@ -159,18 +159,16 @@ Please commit or stash these changes bef
         # license-file and for which the license-file entry has been
         # reviewed.  The table is keyed by package names and maps to the
         # sha256 hash of the license file that we reviewed.
         #
         # As above, it is insufficient to have additions to this whitelist
         # reviewed solely by a build peer; any additions must be checked by
         # somebody competent to review licensing minutiae.
         LICENSE_FILE_PACKAGE_WHITELIST = {
-            # Google BSD-like license; some directories have separate licenses
-            'gamma-lut': '1f04103e3a61b91343b3f9d2ed2cc8543062917e2cc7d52a739ffe6429ccaf61',
             # MIT
             'deque': '6485b8ed310d3f0340bf1ad1f47645069ce4069dcc6bb46c7d5c6faf41de1fdb',
         }
 
         LICENSE_LINE_RE = re.compile(r'\s*license\s*=\s*"([^"]+)"')
         LICENSE_FILE_LINE_RE = re.compile(r'\s*license[-_]file\s*=\s*"([^"]+)"')
 
         def check_package(package):