mirror of
git://git.yoctoproject.org/poky.git
synced 2025-07-19 21:09:03 +02:00

This adds SPDX license headers in place of the wide assortment of things currently in our script headers. We default to GPL-2.0-only except for the oeqa code where it was clearly submitted and marked as MIT on the most part or some scripts which had the "or later" GPL versioning. The patch also drops other obsolete bits of file headers where they were encoountered such as editor modelines, obsolete maintainer information or the phrase "All rights reserved" which is now obsolete and not required in copyright headers (in this case its actually confusing for licensing as all rights were not reserved). More work is needed for OE-Core but this takes care of the bulk of the scripts and meta/lib directories. The top level LICENSE files are tweaked to match the new structure and the SPDX naming. (From OE-Core rev: 3248a9e3c5a197321b1c4417509b9309cc3bae97) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Armin Kuster <akuster808@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
109 lines
4.2 KiB
Python
109 lines
4.2 KiB
Python
# Development tool - search command plugin
|
|
#
|
|
# Copyright (C) 2015 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
|
#
|
|
|
|
"""Devtool search plugin"""
|
|
|
|
import os
|
|
import bb
|
|
import logging
|
|
import argparse
|
|
import re
|
|
from devtool import setup_tinfoil, parse_recipe, DevtoolError
|
|
|
|
logger = logging.getLogger('devtool')
|
|
|
|
def search(args, config, basepath, workspace):
|
|
"""Entry point for the devtool 'search' subcommand"""
|
|
|
|
tinfoil = setup_tinfoil(config_only=False, basepath=basepath)
|
|
try:
|
|
pkgdata_dir = tinfoil.config_data.getVar('PKGDATA_DIR')
|
|
defsummary = tinfoil.config_data.getVar('SUMMARY', False) or ''
|
|
|
|
keyword_rc = re.compile(args.keyword)
|
|
|
|
def print_match(pn):
|
|
rd = parse_recipe(config, tinfoil, pn, True)
|
|
if not rd:
|
|
return
|
|
summary = rd.getVar('SUMMARY')
|
|
if summary == rd.expand(defsummary):
|
|
summary = ''
|
|
print("%s %s" % (pn.ljust(20), summary))
|
|
|
|
|
|
matches = []
|
|
if os.path.exists(pkgdata_dir):
|
|
for fn in os.listdir(pkgdata_dir):
|
|
pfn = os.path.join(pkgdata_dir, fn)
|
|
if not os.path.isfile(pfn):
|
|
continue
|
|
|
|
packages = []
|
|
match = False
|
|
if keyword_rc.search(fn):
|
|
match = True
|
|
|
|
if not match:
|
|
with open(pfn, 'r') as f:
|
|
for line in f:
|
|
if line.startswith('PACKAGES:'):
|
|
packages = line.split(':', 1)[1].strip().split()
|
|
|
|
for pkg in packages:
|
|
if keyword_rc.search(pkg):
|
|
match = True
|
|
break
|
|
if os.path.exists(os.path.join(pkgdata_dir, 'runtime', pkg + '.packaged')):
|
|
with open(os.path.join(pkgdata_dir, 'runtime', pkg), 'r') as f:
|
|
for line in f:
|
|
if ': ' in line:
|
|
splitline = line.split(':', 1)
|
|
key = splitline[0]
|
|
value = splitline[1].strip()
|
|
if key in ['PKG_%s' % pkg, 'DESCRIPTION', 'FILES_INFO'] or key.startswith('FILERPROVIDES_'):
|
|
if keyword_rc.search(value):
|
|
match = True
|
|
break
|
|
if match:
|
|
print_match(fn)
|
|
matches.append(fn)
|
|
else:
|
|
logger.warning('Package data is not available, results may be limited')
|
|
|
|
for recipe in tinfoil.all_recipes():
|
|
if args.fixed_setup and 'nativesdk' in recipe.inherits():
|
|
continue
|
|
|
|
match = False
|
|
if keyword_rc.search(recipe.pn):
|
|
match = True
|
|
else:
|
|
for prov in recipe.provides:
|
|
if keyword_rc.search(prov):
|
|
match = True
|
|
break
|
|
if not match:
|
|
for rprov in recipe.rprovides:
|
|
if keyword_rc.search(rprov):
|
|
match = True
|
|
break
|
|
if match and not recipe.pn in matches:
|
|
print_match(recipe.pn)
|
|
finally:
|
|
tinfoil.shutdown()
|
|
|
|
return 0
|
|
|
|
def register_commands(subparsers, context):
|
|
"""Register devtool subcommands from this plugin"""
|
|
parser_search = subparsers.add_parser('search', help='Search available recipes',
|
|
description='Searches for available recipes. Matches on recipe name, package name, description and installed files, and prints the recipe name and summary on match.',
|
|
group='info')
|
|
parser_search.add_argument('keyword', help='Keyword to search for (regular expression syntax allowed, use quotes to avoid shell expansion)')
|
|
parser_search.set_defaults(func=search, no_workspace=True, fixed_setup=context.fixed_setup)
|