mirror of
git://git.yoctoproject.org/poky.git
synced 2025-07-19 12:59:02 +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: f8c9c511b5f1b7dbd45b77f345cb6c048ae6763e) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
65 lines
2.0 KiB
Python
Executable File
65 lines
2.0 KiB
Python
Executable File
#!/usr/bin/env python3
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
|
#
|
|
# This script can be used to verify HOMEPAGE values for all recipes in
|
|
# the current configuration.
|
|
# The result is influenced by network environment, since the timeout of connect url is 5 seconds as default.
|
|
|
|
import sys
|
|
import os
|
|
import subprocess
|
|
import urllib.request
|
|
|
|
|
|
# Allow importing scripts/lib modules
|
|
scripts_path = os.path.abspath(os.path.dirname(os.path.realpath(__file__)) + '/..')
|
|
lib_path = scripts_path + '/lib'
|
|
sys.path = sys.path + [lib_path]
|
|
import scriptpath
|
|
import scriptutils
|
|
|
|
# Allow importing bitbake modules
|
|
bitbakepath = scriptpath.add_bitbake_lib_path()
|
|
|
|
import bb.tinfoil
|
|
|
|
logger = scriptutils.logger_create('verify_homepage')
|
|
|
|
def wgetHomepage(pn, homepage):
|
|
result = subprocess.call('wget ' + '-q -T 5 -t 1 --spider ' + homepage, shell = True)
|
|
if result:
|
|
logger.warning("%s: failed to verify HOMEPAGE: %s " % (pn, homepage))
|
|
return 1
|
|
else:
|
|
return 0
|
|
|
|
def verifyHomepage(bbhandler):
|
|
pkg_pn = bbhandler.cooker.recipecaches[''].pkg_pn
|
|
pnlist = sorted(pkg_pn)
|
|
count = 0
|
|
checked = []
|
|
for pn in pnlist:
|
|
for fn in pkg_pn[pn]:
|
|
# There's no point checking multiple BBCLASSEXTENDed variants of the same recipe
|
|
realfn, _, _ = bb.cache.virtualfn2realfn(fn)
|
|
if realfn in checked:
|
|
continue
|
|
data = bbhandler.parse_recipe_file(realfn)
|
|
homepage = data.getVar("HOMEPAGE")
|
|
if homepage:
|
|
try:
|
|
urllib.request.urlopen(homepage, timeout=5)
|
|
except Exception:
|
|
count = count + wgetHomepage(os.path.basename(realfn), homepage)
|
|
checked.append(realfn)
|
|
return count
|
|
|
|
if __name__=='__main__':
|
|
with bb.tinfoil.Tinfoil() as bbhandler:
|
|
bbhandler.prepare()
|
|
logger.info("Start verifying HOMEPAGE:")
|
|
failcount = verifyHomepage(bbhandler)
|
|
logger.info("Finished verifying HOMEPAGE.")
|
|
logger.info("Summary: %s failed" % failcount)
|