mirror of
git://git.yoctoproject.org/poky.git
synced 2025-07-19 12:59:02 +02:00

This adds the SPDX-License-Identifier license headers to the majority of our source files to make it clearer exactly which license files are under. The bulk of the files are under GPL v2.0 with one found to be under V2.0 or later, some under MIT and some have dual license. There are some files which are potentially harder to classify where we've imported upstream code and those can be handled specifically in later commits. The COPYING file is replaced with LICENSE.X files which contain the full license texts. (Bitbake rev: ff237c33337f4da2ca06c3a2c49699bc26608a6b) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
78 lines
3.1 KiB
Python
78 lines
3.1 KiB
Python
# ex:ts=4:sw=4:sts=4:et
|
|
# -*- tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*-
|
|
#
|
|
# Extra RecipeInfo will be all defined in this file. Currently,
|
|
# Only Hob (Image Creator) Requests some extra fields. So
|
|
# HobRecipeInfo is defined. It's named HobRecipeInfo because it
|
|
# is introduced by 'hob'. Users could also introduce other
|
|
# RecipeInfo or simply use those already defined RecipeInfo.
|
|
# In the following patch, this newly defined new extra RecipeInfo
|
|
# will be dynamically loaded and used for loading/saving the extra
|
|
# cache fields
|
|
|
|
# Copyright (C) 2011, Intel Corporation. All rights reserved.
|
|
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
|
#
|
|
# This program is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License version 2 as
|
|
# published by the Free Software Foundation.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License along
|
|
# with this program; if not, write to the Free Software Foundation, Inc.,
|
|
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
from bb.cache import RecipeInfoCommon
|
|
|
|
class HobRecipeInfo(RecipeInfoCommon):
|
|
__slots__ = ()
|
|
|
|
classname = "HobRecipeInfo"
|
|
# please override this member with the correct data cache file
|
|
# such as (bb_cache.dat, bb_extracache_hob.dat)
|
|
cachefile = "bb_extracache_" + classname +".dat"
|
|
|
|
# override this member with the list of extra cache fields
|
|
# that this class will provide
|
|
cachefields = ['summary', 'license', 'section',
|
|
'description', 'homepage', 'bugtracker',
|
|
'prevision', 'files_info']
|
|
|
|
def __init__(self, filename, metadata):
|
|
|
|
self.summary = self.getvar('SUMMARY', metadata)
|
|
self.license = self.getvar('LICENSE', metadata)
|
|
self.section = self.getvar('SECTION', metadata)
|
|
self.description = self.getvar('DESCRIPTION', metadata)
|
|
self.homepage = self.getvar('HOMEPAGE', metadata)
|
|
self.bugtracker = self.getvar('BUGTRACKER', metadata)
|
|
self.prevision = self.getvar('PR', metadata)
|
|
self.files_info = self.getvar('FILES_INFO', metadata)
|
|
|
|
@classmethod
|
|
def init_cacheData(cls, cachedata):
|
|
# CacheData in Hob RecipeInfo Class
|
|
cachedata.summary = {}
|
|
cachedata.license = {}
|
|
cachedata.section = {}
|
|
cachedata.description = {}
|
|
cachedata.homepage = {}
|
|
cachedata.bugtracker = {}
|
|
cachedata.prevision = {}
|
|
cachedata.files_info = {}
|
|
|
|
def add_cacheData(self, cachedata, fn):
|
|
cachedata.summary[fn] = self.summary
|
|
cachedata.license[fn] = self.license
|
|
cachedata.section[fn] = self.section
|
|
cachedata.description[fn] = self.description
|
|
cachedata.homepage[fn] = self.homepage
|
|
cachedata.bugtracker[fn] = self.bugtracker
|
|
cachedata.prevision[fn] = self.prevision
|
|
cachedata.files_info[fn] = self.files_info
|