blob: 07fb7c12b4fe898c626735b08202152b35cec17c [file] [log] [blame]
#!/usr/bin/python
# Copyright 2014 The Chromium OS Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
"""Emerge hook to pre-parse and verify license information.
Called from src/scripts/hooks/install/gen-package-licenses.sh as part of a
package emerge.
"""
from chromite.lib import commandline
from chromite.licensing import licenses_lib
def main(args):
parser = commandline.ArgumentParser(usage=__doc__)
parser.add_argument('--builddir', type='path', dest='builddir',
help='Take $PORTAGE_BUILDDIR as argument.')
opts = parser.parse_args(args)
opts.Freeze()
licensing = licenses_lib.Licensing(None, None, True)
licensing.HookPackageProcess(opts.builddir)