mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
Merge branch 'feature/add_component_manager_python_dependency_v4.3' into 'release/v4.3'
Build System: Add idf-component-manager python dependency (v4.3) See merge request espressif/esp-idf!15663
This commit is contained in:
commit
d9be879a76
72
docs/en/api-guides/tools/idf-component-manager.rst
Normal file
72
docs/en/api-guides/tools/idf-component-manager.rst
Normal file
@ -0,0 +1,72 @@
|
||||
*********************
|
||||
IDF Component Manager
|
||||
*********************
|
||||
|
||||
The IDF Component manager is a tool that downloads dependencies for any ESP-IDF CMake project. The download happens automatically during a run of CMake. It can source components either from `the component registry <https://components.espressif.com>`_ or from a git repository.
|
||||
|
||||
A list of components can be found on `<https://components.espressif.com/>`_
|
||||
|
||||
Activating the Component Manager
|
||||
================================
|
||||
|
||||
If CMake is started using ``idf.py`` or `ESP-IDF VSCode Extension <https://marketplace.visualstudio.com/items?itemName=espressif.esp-idf-extension>`_ then the component manager will be activated by default.
|
||||
|
||||
If CMake is used directly or with some CMake-based IDE like CLion, it's necessary to set the ``IDF_COMPONENT_MANAGER`` environment variable to ``1`` to enable the component manager integration with the build system.
|
||||
|
||||
Using with a project
|
||||
====================
|
||||
|
||||
Dependencies for each component in the project are defined in a separate manifest file named ``idf_component.yml`` placed in the root of the component. The manifest file template can be created for a component by running ``idf.py create-manifest --component=my_component``. When a new manifest is added to one of the components in the project it's necessary to reconfigure it manually by running ``idf.py reconfigure``. Then build will track changes in ``idf_component.yml`` manifests and automatically triggers CMake when necessary.
|
||||
|
||||
There is an example application: example:`build_system/cmake/component_manager` that uses components installed by the component manager.
|
||||
|
||||
It's not necessary to have a manifest for components that don't need any managed dependencies.
|
||||
|
||||
When CMake configures the project (e.g. ``idf.py reconfigure``) component manager does a few things:
|
||||
|
||||
- Processes ``idf_component.yml`` manifests for every component in the project and recursively solves dependencies
|
||||
- Creates a ``dependencies.lock`` file in the root of the project with a full list of dependencies
|
||||
- Downloads all dependencies to the ``managed_components`` directory
|
||||
|
||||
The lock-file ``dependencies.lock`` and content of ``managed_components`` directory is not supposed to be modified by a user. When the component manager runs it always make sure they are up to date. If these files were accidentally modified it's possible to re-run the component manager by triggering CMake with ``idf.py reconfigure``
|
||||
|
||||
Defining dependencies in the manifest
|
||||
=====================================
|
||||
|
||||
.. code-block:: yaml
|
||||
|
||||
dependencies:
|
||||
# Required IDF version
|
||||
idf: ">=4.1"
|
||||
# Defining a dependency from the registry:
|
||||
# https://components.espressif.com/component/example/cmp
|
||||
example/cmp: ">=1.0.0"
|
||||
|
||||
# # Other ways to define dependencies
|
||||
#
|
||||
# # For components maintained by Espressif only name can be used.
|
||||
# # Same as `espressif/cmp`
|
||||
# component: "~1.0.0"
|
||||
#
|
||||
# # Or in a longer form with extra parameters
|
||||
# component2:
|
||||
# version: ">=2.0.0"
|
||||
#
|
||||
# # For transient dependencies `public` flag can be set.
|
||||
# # `public` flag doesn't affect the `main` component.
|
||||
# # All dependencies of `main` are public by default.
|
||||
# public: true
|
||||
#
|
||||
# # For components hosted on non-default registry:
|
||||
# service_url: "https://componentregistry.company.com"
|
||||
#
|
||||
# # For components in git repository:
|
||||
# test_component:
|
||||
# path: test_component
|
||||
# git: ssh://git@gitlab.com/user/components.git
|
||||
#
|
||||
# # For test projects during component development
|
||||
# # components can be used from a local directory
|
||||
# # with relative or absolute path
|
||||
# some_local_component:
|
||||
# path: ../../projects/component
|
@ -8,3 +8,4 @@ Tools
|
||||
IDF Monitor <idf-monitor>
|
||||
IDF Docker image <idf-docker-image>
|
||||
IDF Windows Installer <idf-windows-installer>
|
||||
IDF Component Manager <idf-component-manager>
|
||||
|
1
docs/zh_CN/api-guides/tools/idf-component-manager.rst
Normal file
1
docs/zh_CN/api-guides/tools/idf-component-manager.rst
Normal file
@ -0,0 +1 @@
|
||||
.. include:: ../../../en/api-guides/tools/idf-component-manager.rst
|
@ -8,3 +8,4 @@
|
||||
IDF 监视器 <idf-monitor>
|
||||
IDF Docker image <idf-docker-image>
|
||||
IDF Windows Installer <idf-windows-installer>
|
||||
IDF Component Manager <idf-component-manager>
|
||||
|
@ -0,0 +1,8 @@
|
||||
# For more information about build system see
|
||||
# https://docs.espressif.com/projects/esp-idf/en/latest/api-guides/build-system.html
|
||||
# The following five lines of boilerplate have to be in your project's
|
||||
# CMakeLists in this exact order for cmake to work correctly
|
||||
cmake_minimum_required(VERSION 3.5)
|
||||
|
||||
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
||||
project(component_manager)
|
55
examples/build_system/cmake/component_manager/README.md
Normal file
55
examples/build_system/cmake/component_manager/README.md
Normal file
@ -0,0 +1,55 @@
|
||||
# Using the component manager for downloading dependencies
|
||||
|
||||
This example demonstrates how to use [IDF Component Manager](https://pypi.org/project/idf-component-manager/) for downloading dependencies from [the component registry](https://components.espressif.com). More details and use cases of IDF Component Manager can be found in the programming guide under `API Guides` -> `Tools` -> `IDF Component Manager`.
|
||||
|
||||
## How to use the example
|
||||
### Hardware Required
|
||||
|
||||
This example is designed to work with any commonly available development kit.
|
||||
|
||||
### Build and Flash
|
||||
|
||||
Run `idf.py reconfigure` to configure this project. During CMake execution the component manager will process data from the manifest file `./main/idf_component.yml` where 2 dependencies are defined:
|
||||
|
||||
- `idf: ">=4.1"` - Specifies required version of ESP-IDF.
|
||||
- `example/cmp: ">=3.3.3"` - Defines dependency on [example/cmp](https://components.espressif.com/component/example/cmp) component that is used by the main component.
|
||||
|
||||
CMake Output:
|
||||
```
|
||||
...
|
||||
Solving dependencies requirements
|
||||
Updating lock file at /home/user/esp-idf/examples/build_system/cmake/component_manager/dependencies.lock
|
||||
Processing 2 dependencies:
|
||||
[1/2] example/cmp
|
||||
[2/2] idf
|
||||
...
|
||||
```
|
||||
|
||||
Content of the `./managed_components` directory after successful build:
|
||||
```
|
||||
> find ./managed_components
|
||||
./managed_components
|
||||
./managed_components/example__cmp
|
||||
./managed_components/example__cmp/include
|
||||
./managed_components/example__cmp/include/cmp.h
|
||||
./managed_components/example__cmp/LICENSE
|
||||
./managed_components/example__cmp/README.md
|
||||
./managed_components/example__cmp/CMakeLists.txt
|
||||
./managed_components/example__cmp/changelog.md
|
||||
./managed_components/example__cmp/cmp.c
|
||||
./managed_components/example__cmp/idf_component.yml
|
||||
```
|
||||
|
||||
Flash the project and run the serial monitor to view the output:
|
||||
|
||||
```
|
||||
idf.py -p PORT flash monitor
|
||||
```
|
||||
|
||||
### Example Output
|
||||
|
||||
The example outputs a line from the `cmp_hello` function from the component downloaded by the component manager.
|
||||
|
||||
```
|
||||
Hello from example component!
|
||||
```
|
@ -0,0 +1,2 @@
|
||||
idf_component_register(SRCS "component_manager.c"
|
||||
INCLUDE_DIRS ".")
|
@ -0,0 +1,7 @@
|
||||
#include <stdio.h>
|
||||
#include "cmp.h"
|
||||
|
||||
void app_main(void)
|
||||
{
|
||||
cmp_hello();
|
||||
}
|
@ -0,0 +1,36 @@
|
||||
dependencies:
|
||||
# Required IDF version
|
||||
idf: ">=4.1"
|
||||
|
||||
# Defining a dependency from the registry:
|
||||
# https://components.espressif.com/component/example/cmp
|
||||
example/cmp: ">=3.3.3"
|
||||
|
||||
# # Other ways to define dependencies
|
||||
#
|
||||
# # For components maintained by Espressif only name can be used.
|
||||
# # Same as `espressif/cmp`
|
||||
# component: "~1.0.0"
|
||||
#
|
||||
# # Or in a longer form with extra parameters
|
||||
# component2:
|
||||
# version: ">=2.0.0"
|
||||
#
|
||||
# # For transient dependencies `public` flag can be set.
|
||||
# # `public` flag doesn't have an effect for the `main` component.
|
||||
# # All dependencies of `main` are public by default.
|
||||
# public: true
|
||||
#
|
||||
# # For components hosted on non-default registry:
|
||||
# service_url: "https://componentregistry.company.com"
|
||||
#
|
||||
# # For components in git repository:
|
||||
# test_component:
|
||||
# path: test_component
|
||||
# git: ssh://git@gitlab.com/user/components.git
|
||||
#
|
||||
# # For test projects during component development
|
||||
# # components can be used from a local directory
|
||||
# # with relative or absolute path
|
||||
# some_local_component:
|
||||
# path: ../../projects/component
|
@ -13,6 +13,7 @@ cryptography>=2.1.4,<35
|
||||
cffi<1.15;python_version<'3.6'
|
||||
pyparsing>=2.0.3,<2.4.0
|
||||
pyelftools>=0.22
|
||||
idf-component-manager~=1.0
|
||||
|
||||
gdbgui==0.13.2.0
|
||||
# 0.13.2.1 supports Python 3.6+ only
|
||||
|
@ -434,9 +434,8 @@ function(idf_component_register)
|
||||
__component_check_target()
|
||||
__component_add_sources(sources)
|
||||
|
||||
# Add component manifest and lock files to list of dependencies
|
||||
# Add component manifest to the list of dependencies
|
||||
set_property(DIRECTORY APPEND PROPERTY CMAKE_CONFIGURE_DEPENDS "${COMPONENT_DIR}/idf_component.yml")
|
||||
set_property(DIRECTORY APPEND PROPERTY CMAKE_CONFIGURE_DEPENDS "${COMPONENT_DIR}/dependencies.lock")
|
||||
|
||||
# Create the final target for the component. This target is the target that is
|
||||
# visible outside the build system.
|
||||
|
Loading…
Reference in New Issue
Block a user