From 8b411a0c9e3eb530037ea190b34bb83f09a8964c Mon Sep 17 00:00:00 2001 From: Olaf Bergmann <bergmann@tzi.org> Date: Mon, 16 Dec 2024 15:56:04 +0100 Subject: [PATCH] [manifest] fix yaml --- idf_component.yml | 37 +++++++++++++++++++++---------------- 1 file changed, 21 insertions(+), 16 deletions(-) diff --git a/idf_component.yml b/idf_component.yml index 7d0c5fa..28e2ea5 100644 --- a/idf_component.yml +++ b/idf_component.yml @@ -17,21 +17,26 @@ dependencies: mbedtls: require: private dcaf_upstream: - git: "https://gitlab.informatik.uni-bremen.de/DCAF/dcaf.git" + path: dcaf files: - exclude: - - "*~" # Exclude all editor backup files - - "\#*\#" # Exclude all editor backup files - - "TAGS" # Exclude `.list` files in all directories - - "**/tests" - - "**/examples" - include: - - "README.md" - - "AUTHORS" - - "LICENSE" - - "Kconfig" - - "port/**/*" - - "include/**/*" - - "dcaf/**/*" - + exclude: + - "*~" + - '\#*#' + - "TAGS" + - "**/tests" + - "**/examples" + - "dcaf/**/*" + include: + - "README.md" + - "AUTHORS" + - "LICENSE" + - "Kconfig" + - "port/**/*" + - "include/**/*" + - "dcaf/README.md" + - "dcaf/LICENSE" + - "dcaf/doc/Doxyfile" + - "dcaf/doc/Makefile.am" + - "dcaf/include/**/*.h" + - "dcaf/src/**/*.c" -- GitLab