poky/bitbake/lib/layerindexlib
Richard Purdie cf9c0be3f6 bitbake: bitbake: Drop duplicate license boilerplace text
With the introduction of SPDX-License-Identifier headers, we don't need a ton
of header boilerplate in every file. Simplify the files and rely on the top
level for the full licence text.

(Bitbake rev: 695d84397b68cc003186e22f395caa378b06bc75)

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2019-05-04 10:44:10 +01:00
..
tests bitbake: bitbake: Drop duplicate license boilerplace text 2019-05-04 10:44:10 +01:00
__init__.py bitbake: bitbake: Drop duplicate license boilerplace text 2019-05-04 10:44:10 +01:00
cooker.py bitbake: bitbake: Drop duplicate license boilerplace text 2019-05-04 10:44:10 +01:00
plugin.py bitbake: bitbake: Drop duplicate license boilerplace text 2019-05-04 10:44:10 +01:00
README bitbake: layerindexlib: Initial layer index processing module implementation 2018-08-02 10:18:27 +01:00
restapi.py bitbake: bitbake: Drop duplicate license boilerplace text 2019-05-04 10:44:10 +01:00

The layerindexlib module is designed to permit programs to work directly with layer index information. (See layers.openembedded.org...)

The layerindexlib module includes a plugin interface that is used to extend the basic functionality. There are two primary plugins available: restapi and cooker.

The restapi plugin works with a web based REST Api compatible with the layerindex-web project, as well as the ability to store and retried a the information for one or more files on the disk.

The cooker plugin works by reading the information from the current build project and processing it as if it were a layer index.

TODO:

init.py: Implement local on-disk caching (using the rest api store/load) Implement layer index style query operations on a combined index

common.py: Stop network access if BB_NO_NETWORK or allowed hosts is restricted

cooker.py: Cooker - Implement recipe parsing