spl-core 7.11.0__tar.gz → 7.11.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {spl_core-7.11.0 → spl_core-7.11.1}/PKG-INFO +4 -3
- {spl_core-7.11.0 → spl_core-7.11.1}/pyproject.toml +2 -2
- spl_core-7.11.1/src/spl_core/__init__.py +1 -0
- spl_core-7.11.1/src/spl_core/kickstart/templates/application/src/greeter/doc/index.md +31 -0
- spl_core-7.11.0/src/spl_core/kickstart/templates/application/src/main/doc/index.rst → spl_core-7.11.1/src/spl_core/kickstart/templates/application/src/main/doc/index.md +7 -6
- {spl_core-7.11.0 → spl_core-7.11.1}/src/spl_core/kickstart/templates/project/conf.py +20 -10
- {spl_core-7.11.0 → spl_core-7.11.1}/src/spl_core/kickstart/templates/project/doc/Doxyfile.in +1 -1
- spl_core-7.11.1/src/spl_core/kickstart/templates/project/doc/common/index.md +3 -0
- spl_core-7.11.1/src/spl_core/kickstart/templates/project/doc/components/index.md +21 -0
- spl_core-7.11.1/src/spl_core/kickstart/templates/project/doc/software_architecture/index.md +3 -0
- spl_core-7.11.1/src/spl_core/kickstart/templates/project/doc/software_requirements/index.md +8 -0
- spl_core-7.11.1/src/spl_core/kickstart/templates/project/index.md +40 -0
- {spl_core-7.11.0 → spl_core-7.11.1}/src/spl_core/kickstart/templates/project/pypeline.yaml +1 -0
- {spl_core-7.11.0 → spl_core-7.11.1}/src/spl_core/kickstart/templates/project/pyproject.toml +7 -4
- {spl_core-7.11.0 → spl_core-7.11.1}/src/spl_core/spl.cmake +2 -1
- spl_core-7.11.0/src/spl_core/__init__.py +0 -1
- spl_core-7.11.0/src/spl_core/kickstart/templates/application/src/greeter/doc/index.rst +0 -26
- spl_core-7.11.0/src/spl_core/kickstart/templates/project/doc/common/index.rst +0 -5
- spl_core-7.11.0/src/spl_core/kickstart/templates/project/doc/components/index.rst +0 -22
- spl_core-7.11.0/src/spl_core/kickstart/templates/project/doc/software_architecture/index.rst +0 -2
- spl_core-7.11.0/src/spl_core/kickstart/templates/project/doc/software_requirements/index.rst +0 -7
- spl_core-7.11.0/src/spl_core/kickstart/templates/project/index.rst +0 -39
- {spl_core-7.11.0 → spl_core-7.11.1}/LICENSE +0 -0
- {spl_core-7.11.0 → spl_core-7.11.1}/README.md +0 -0
- {spl_core-7.11.0 → spl_core-7.11.1}/src/spl_core/__run.py +0 -0
- {spl_core-7.11.0 → spl_core-7.11.1}/src/spl_core/common/__init__.py +0 -0
- {spl_core-7.11.0 → spl_core-7.11.1}/src/spl_core/common/path.py +0 -0
- {spl_core-7.11.0 → spl_core-7.11.1}/src/spl_core/common.cmake +0 -0
- {spl_core-7.11.0 → spl_core-7.11.1}/src/spl_core/conan.cmake +0 -0
- {spl_core-7.11.0 → spl_core-7.11.1}/src/spl_core/config/KConfig +0 -0
- {spl_core-7.11.0 → spl_core-7.11.1}/src/spl_core/gcov_maid/__init__.py +0 -0
- {spl_core-7.11.0 → spl_core-7.11.1}/src/spl_core/gcov_maid/gcov_maid.py +0 -0
- {spl_core-7.11.0 → spl_core-7.11.1}/src/spl_core/kconfig/__init__.py +0 -0
- {spl_core-7.11.0 → spl_core-7.11.1}/src/spl_core/kconfig/kconfig.py +0 -0
- {spl_core-7.11.0 → spl_core-7.11.1}/src/spl_core/kconfig.cmake +0 -0
- {spl_core-7.11.0 → spl_core-7.11.1}/src/spl_core/kickstart/__init__.py +0 -0
- {spl_core-7.11.0 → spl_core-7.11.1}/src/spl_core/kickstart/create.py +0 -0
- {spl_core-7.11.0 → spl_core-7.11.1}/src/spl_core/kickstart/templates/application/.vscode/cmake-variants.json +0 -0
- {spl_core-7.11.0 → spl_core-7.11.1}/src/spl_core/kickstart/templates/application/KConfig +0 -0
- {spl_core-7.11.0 → spl_core-7.11.1}/src/spl_core/kickstart/templates/application/src/greeter/CMakeLists.txt +0 -0
- {spl_core-7.11.0 → spl_core-7.11.1}/src/spl_core/kickstart/templates/application/src/greeter/doc/_images/screenshot.png +0 -0
- {spl_core-7.11.0 → spl_core-7.11.1}/src/spl_core/kickstart/templates/application/src/greeter/src/greeter.c +0 -0
- {spl_core-7.11.0 → spl_core-7.11.1}/src/spl_core/kickstart/templates/application/src/greeter/src/greeter.h +0 -0
- {spl_core-7.11.0 → spl_core-7.11.1}/src/spl_core/kickstart/templates/application/src/greeter/test/test_greeter.cc +0 -0
- {spl_core-7.11.0 → spl_core-7.11.1}/src/spl_core/kickstart/templates/application/src/main/CMakeLists.txt +0 -0
- {spl_core-7.11.0 → spl_core-7.11.1}/src/spl_core/kickstart/templates/application/src/main/src/main.c +0 -0
- {spl_core-7.11.0 → spl_core-7.11.1}/src/spl_core/kickstart/templates/application/test/EnglishVariant/test__EnglishVariant.py +0 -0
- {spl_core-7.11.0 → spl_core-7.11.1}/src/spl_core/kickstart/templates/application/test/German/test__GermanVariant.py +0 -0
- {spl_core-7.11.0 → spl_core-7.11.1}/src/spl_core/kickstart/templates/application/variants/EnglishVariant/config.cmake +0 -0
- {spl_core-7.11.0 → spl_core-7.11.1}/src/spl_core/kickstart/templates/application/variants/EnglishVariant/parts.cmake +0 -0
- {spl_core-7.11.0 → spl_core-7.11.1}/src/spl_core/kickstart/templates/application/variants/GermanVariant/config.cmake +0 -0
- {spl_core-7.11.0 → spl_core-7.11.1}/src/spl_core/kickstart/templates/application/variants/GermanVariant/config.txt +0 -0
- {spl_core-7.11.0 → spl_core-7.11.1}/src/spl_core/kickstart/templates/application/variants/GermanVariant/parts.cmake +0 -0
- {spl_core-7.11.0 → spl_core-7.11.1}/src/spl_core/kickstart/templates/project/.gitignore +0 -0
- {spl_core-7.11.0 → spl_core-7.11.1}/src/spl_core/kickstart/templates/project/.vscode/cmake-kits.json +0 -0
- {spl_core-7.11.0 → spl_core-7.11.1}/src/spl_core/kickstart/templates/project/.vscode/extensions.json +0 -0
- {spl_core-7.11.0 → spl_core-7.11.1}/src/spl_core/kickstart/templates/project/.vscode/launch.json +0 -0
- {spl_core-7.11.0 → spl_core-7.11.1}/src/spl_core/kickstart/templates/project/.vscode/settings.json +0 -0
- {spl_core-7.11.0 → spl_core-7.11.1}/src/spl_core/kickstart/templates/project/.vscode/tasks.json +0 -0
- {spl_core-7.11.0 → spl_core-7.11.1}/src/spl_core/kickstart/templates/project/CMakeLists.txt +0 -0
- {spl_core-7.11.0 → spl_core-7.11.1}/src/spl_core/kickstart/templates/project/README.md +0 -0
- {spl_core-7.11.0 → spl_core-7.11.1}/src/spl_core/kickstart/templates/project/bootstrap.json +0 -0
- {spl_core-7.11.0 → spl_core-7.11.1}/src/spl_core/kickstart/templates/project/build.bat +0 -0
- {spl_core-7.11.0 → spl_core-7.11.1}/src/spl_core/kickstart/templates/project/build.ps1 +0 -0
- {spl_core-7.11.0 → spl_core-7.11.1}/src/spl_core/kickstart/templates/project/doc/doxygen-awesome/LICENSE +0 -0
- {spl_core-7.11.0 → spl_core-7.11.1}/src/spl_core/kickstart/templates/project/doc/doxygen-awesome/doxygen-awesome.css +0 -0
- {spl_core-7.11.0 → spl_core-7.11.1}/src/spl_core/kickstart/templates/project/doc/test_report_template.txt +0 -0
- {spl_core-7.11.0 → spl_core-7.11.1}/src/spl_core/kickstart/templates/project/pytest.ini +0 -0
- {spl_core-7.11.0 → spl_core-7.11.1}/src/spl_core/kickstart/templates/project/scoopfile.json +0 -0
- {spl_core-7.11.0 → spl_core-7.11.1}/src/spl_core/kickstart/templates/project/tools/toolchains/clang/toolchain.cmake +0 -0
- {spl_core-7.11.0 → spl_core-7.11.1}/src/spl_core/kickstart/templates/project/tools/toolchains/gcc/toolchain.cmake +0 -0
- {spl_core-7.11.0 → spl_core-7.11.1}/src/spl_core/main.py +0 -0
- {spl_core-7.11.0 → spl_core-7.11.1}/src/spl_core/steps/collect_pr_changes.py +0 -0
- {spl_core-7.11.0 → spl_core-7.11.1}/src/spl_core/test_utils/archive_artifacts_collection.py +0 -0
- {spl_core-7.11.0 → spl_core-7.11.1}/src/spl_core/test_utils/artifacts_archiver.py +0 -0
- {spl_core-7.11.0 → spl_core-7.11.1}/src/spl_core/test_utils/base_variant_test_runner.py +0 -0
- {spl_core-7.11.0 → spl_core-7.11.1}/src/spl_core/test_utils/spl_build.py +0 -0
|
@@ -1,8 +1,9 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: spl-core
|
|
3
|
-
Version: 7.11.
|
|
3
|
+
Version: 7.11.1
|
|
4
4
|
Summary: Software Product Line Support for CMake
|
|
5
5
|
License: MIT
|
|
6
|
+
License-File: LICENSE
|
|
6
7
|
Author: Avengineers
|
|
7
8
|
Author-email: karsten.guenther@kamg.de
|
|
8
9
|
Requires-Python: >=3.10,<3.12
|
|
@@ -20,7 +21,7 @@ Requires-Dist: doxysphinx (>=3.3,<4.0)
|
|
|
20
21
|
Requires-Dist: gcovr (>=8.3,<9.0)
|
|
21
22
|
Requires-Dist: hammocking (>=0.8,<0.10)
|
|
22
23
|
Requires-Dist: kconfiglib (>=14.1,<15.0)
|
|
23
|
-
Requires-Dist: mlx-traceability (>=10
|
|
24
|
+
Requires-Dist: mlx-traceability (>=10,<12)
|
|
24
25
|
Requires-Dist: myst-parser (>=0.16)
|
|
25
26
|
Requires-Dist: py-app-dev (>=2.1,<3.0)
|
|
26
27
|
Requires-Dist: py7zr (>=1.0.0,<2.0.0)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[tool.poetry]
|
|
2
2
|
name = "spl-core"
|
|
3
|
-
version = "7.11.
|
|
3
|
+
version = "7.11.1"
|
|
4
4
|
description = "Software Product Line Support for CMake"
|
|
5
5
|
authors = ["Avengineers <karsten.guenther@kamg.de>"]
|
|
6
6
|
license = "MIT"
|
|
@@ -43,7 +43,7 @@ sphinxcontrib-plantuml = ">=0.29,<0.31"
|
|
|
43
43
|
sphinx-copybutton = "^0.5"
|
|
44
44
|
sphinx-new-tab-link = ">=0.4,<0.9"
|
|
45
45
|
myst-parser = ">=0.16"
|
|
46
|
-
mlx-traceability = "
|
|
46
|
+
mlx-traceability = ">=10,<12"
|
|
47
47
|
sphinx-book-theme = "^1.1"
|
|
48
48
|
sphinx-design = ">=0.5,<0.7"
|
|
49
49
|
pypeline-semantic-release = ">=0.4.1,<=0.5.0"
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "7.11.1"
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# Software Detailed Design
|
|
2
|
+
|
|
3
|
+
```{figure} _images/screenshot.png
|
|
4
|
+
```
|
|
5
|
+
|
|
6
|
+
```{mermaid}
|
|
7
|
+
|
|
8
|
+
graph TD
|
|
9
|
+
A[Start] --> B{Language}
|
|
10
|
+
B -->|DE| C[Hallo Welt]
|
|
11
|
+
B -->|EN| D[Hello World]
|
|
12
|
+
|
|
13
|
+
C --> E[End]
|
|
14
|
+
D --> E
|
|
15
|
+
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
Requirements
|
|
19
|
+
------------
|
|
20
|
+
|
|
21
|
+
```{spec} Say Hello
|
|
22
|
+
:id: SWDD_GREETER-001
|
|
23
|
+
:integrity: QM
|
|
24
|
+
|
|
25
|
+
{% if config.LANG_DE %}
|
|
26
|
+
It shall greet the user with ``Hallo Welt``.
|
|
27
|
+
{% else %}
|
|
28
|
+
It shall greet the user with ``Hello World``.
|
|
29
|
+
{% endif %}
|
|
30
|
+
|
|
31
|
+
```
|
|
@@ -1,11 +1,12 @@
|
|
|
1
|
-
Software Detailed Design
|
|
2
|
-
========================
|
|
1
|
+
# Software Detailed Design
|
|
3
2
|
|
|
4
|
-
|
|
5
|
-
|
|
3
|
+
```{toctree}
|
|
4
|
+
:maxdepth: 2
|
|
5
|
+
:caption: Table of Contents
|
|
6
|
+
:class: toc
|
|
7
|
+
```
|
|
6
8
|
|
|
7
|
-
Introduction
|
|
8
|
-
------------
|
|
9
|
+
## Introduction
|
|
9
10
|
|
|
10
11
|
This is the documentation for the ``Main`` component.
|
|
11
12
|
|
|
@@ -29,7 +29,7 @@ exclude_patterns = [
|
|
|
29
29
|
"**/test_results.rst", # We renamed this file, but nobody deletes it.
|
|
30
30
|
]
|
|
31
31
|
|
|
32
|
-
include_patterns = ["index.
|
|
32
|
+
include_patterns = ["index.md", "doc/**"]
|
|
33
33
|
|
|
34
34
|
# configuration of built-in stuff ###########################################
|
|
35
35
|
# @see https://www.sphinx-doc.org/en/master/usage/configuration.html
|
|
@@ -119,9 +119,7 @@ extensions.append("sphinxcontrib.datatemplates")
|
|
|
119
119
|
|
|
120
120
|
# needs_types - this option allows the setup of own need types like bugs, user_stories and more.
|
|
121
121
|
needs_types = [
|
|
122
|
-
dict(
|
|
123
|
-
directive="req", title="Requirement", prefix="R_", color="#BFD8D2", style="node"
|
|
124
|
-
),
|
|
122
|
+
dict(directive="req", title="Requirement", prefix="R_", color="#BFD8D2", style="node"),
|
|
125
123
|
dict(
|
|
126
124
|
directive="spec",
|
|
127
125
|
title="Specification",
|
|
@@ -136,9 +134,7 @@ needs_types = [
|
|
|
136
134
|
color="#DF744A",
|
|
137
135
|
style="node",
|
|
138
136
|
),
|
|
139
|
-
dict(
|
|
140
|
-
directive="test", title="Test Case", prefix="T_", color="#DCB239", style="node"
|
|
141
|
-
),
|
|
137
|
+
dict(directive="test", title="Test Case", prefix="T_", color="#DCB239", style="node"),
|
|
142
138
|
]
|
|
143
139
|
|
|
144
140
|
# Define own options
|
|
@@ -161,19 +157,33 @@ needs_global_options = {
|
|
|
161
157
|
"results": "[[tr_link('title', 'case')]]",
|
|
162
158
|
}
|
|
163
159
|
|
|
160
|
+
# Parse markdown files
|
|
161
|
+
extensions.append("myst_parser")
|
|
162
|
+
myst_enable_extensions = [
|
|
163
|
+
"colon_fence",
|
|
164
|
+
"deflist",
|
|
165
|
+
"html_admonition",
|
|
166
|
+
"html_image",
|
|
167
|
+
]
|
|
168
|
+
|
|
169
|
+
# The suffix of source filenames.
|
|
170
|
+
source_suffix = [
|
|
171
|
+
".rst",
|
|
172
|
+
".md",
|
|
173
|
+
]
|
|
174
|
+
|
|
164
175
|
# Provide all config values to jinja
|
|
165
176
|
html_context = {
|
|
166
177
|
"build_config": {},
|
|
167
178
|
"config": {},
|
|
179
|
+
"timestamp": f"{datetime.datetime.now(tz=datetime.timezone.utc).strftime('%Y-%m-%d %H:%M:%S')} UTC",
|
|
168
180
|
}
|
|
169
181
|
|
|
170
182
|
# pass build configuration to jinja
|
|
171
183
|
if "SPHINX_BUILD_CONFIGURATION_FILE" in os.environ:
|
|
172
184
|
with open(os.environ["SPHINX_BUILD_CONFIGURATION_FILE"], "r") as file:
|
|
173
185
|
html_context["build_config"] = json.load(file)
|
|
174
|
-
include_patterns.extend(
|
|
175
|
-
html_context["build_config"].get("include_patterns", [])
|
|
176
|
-
)
|
|
186
|
+
include_patterns.extend(html_context["build_config"].get("include_patterns", []))
|
|
177
187
|
|
|
178
188
|
# pass feature configuration to jinja
|
|
179
189
|
if "AUTOCONF_JSON_FILE" in os.environ:
|
{spl_core-7.11.0 → spl_core-7.11.1}/src/spl_core/kickstart/templates/project/doc/Doxyfile.in
RENAMED
|
@@ -2356,7 +2356,7 @@ INCLUDE_FILE_PATTERNS =
|
|
|
2356
2356
|
# recursively expanded use the := operator instead of the = operator.
|
|
2357
2357
|
# This tag requires that the tag ENABLE_PREPROCESSING is set to YES.
|
|
2358
2358
|
|
|
2359
|
-
PREDEFINED = "
|
|
2359
|
+
PREDEFINED = "SPLE_TESTABLE_STATIC=static"
|
|
2360
2360
|
|
|
2361
2361
|
# If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then this
|
|
2362
2362
|
# tag can be used to specify a list of macro names that should be expanded. The
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# Components
|
|
2
|
+
|
|
3
|
+
{% for component_info in build_config.components_info %}
|
|
4
|
+
{% if component_info.has_docs %}
|
|
5
|
+
|
|
6
|
+
## {{ component_info.long_name or component_info.name }}
|
|
7
|
+
|
|
8
|
+
```{toctree}
|
|
9
|
+
:maxdepth: 2
|
|
10
|
+
|
|
11
|
+
/{{ component_info.path }}/doc/index
|
|
12
|
+
{% if (build_config.target == 'reports') and component_info.has_reports %}
|
|
13
|
+
/{{ component_info.reports_output_dir }}/unit_test_spec
|
|
14
|
+
/{{ component_info.reports_output_dir }}/unit_test_results
|
|
15
|
+
/{{ component_info.reports_output_dir }}/doxygen/html/index
|
|
16
|
+
/{{ component_info.reports_output_dir }}/coverage
|
|
17
|
+
{% endif %}
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
{% endif %}
|
|
21
|
+
{% endfor %}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
{% if build_config.component_info %}
|
|
2
|
+
|
|
3
|
+
# Software Component Report
|
|
4
|
+
|
|
5
|
+
**Variant:** {{ build_config.variant }}<br/>
|
|
6
|
+
**Component:** {{ build_config.component_info.long_name }}<br/>
|
|
7
|
+
**Timestamp:** {{ timestamp }}
|
|
8
|
+
|
|
9
|
+
```{toctree}
|
|
10
|
+
:maxdepth: 2
|
|
11
|
+
|
|
12
|
+
{{ build_config.component_info.path }}/doc/index
|
|
13
|
+
{% if build_config.component_info.has_reports %}
|
|
14
|
+
{{ build_config.component_info.reports_output_dir }}/unit_test_spec
|
|
15
|
+
{{ build_config.component_info.reports_output_dir }}/unit_test_results
|
|
16
|
+
{{ build_config.component_info.reports_output_dir }}/doxygen/html/index
|
|
17
|
+
{{ build_config.component_info.reports_output_dir }}/coverage
|
|
18
|
+
{% endif %}
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
{% else %}
|
|
22
|
+
|
|
23
|
+
# Variant Report
|
|
24
|
+
|
|
25
|
+
**Variant:** {{ build_config.variant }}<br/>
|
|
26
|
+
**Timestamp:** {{ timestamp }}
|
|
27
|
+
|
|
28
|
+
```{toctree}
|
|
29
|
+
:maxdepth: 1
|
|
30
|
+
:caption: Contents
|
|
31
|
+
|
|
32
|
+
doc/software_architecture/index
|
|
33
|
+
doc/software_requirements/index
|
|
34
|
+
doc/components/index
|
|
35
|
+
{% if build_config.target == 'reports' %}
|
|
36
|
+
{{ build_config.reports_output_dir }}/coverage
|
|
37
|
+
{% endif %}
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
{% endif %}
|
|
@@ -2,17 +2,20 @@
|
|
|
2
2
|
name = "spled"
|
|
3
3
|
version = "0.0.1"
|
|
4
4
|
description = "SPL demo project"
|
|
5
|
-
authors = [
|
|
6
|
-
{name = "Avengineers"},
|
|
7
|
-
]
|
|
5
|
+
authors = [{ name = "Avengineers" }]
|
|
8
6
|
requires-python = "<3.12,>=3.10"
|
|
9
7
|
|
|
10
8
|
dependencies = [
|
|
11
|
-
"spl-core>=7,<8",
|
|
9
|
+
"spl-core (>=7,<8)",
|
|
12
10
|
"pypeline-runner>=1,<2",
|
|
13
11
|
"pytest>=8,<9",
|
|
14
12
|
"pip_system_certs>=4.0,<5",
|
|
13
|
+
"myst-parser>=4.0,<5",
|
|
14
|
+
"pypeline-semantic-release (>=0.4.1,<0.5.0)",
|
|
15
15
|
]
|
|
16
16
|
|
|
17
17
|
[tool.poetry]
|
|
18
18
|
package-mode = false
|
|
19
|
+
|
|
20
|
+
[tool.ruff]
|
|
21
|
+
line-length = 180
|
|
@@ -110,7 +110,8 @@ endfunction(_spl_hook_end_of_configure)
|
|
|
110
110
|
set(_CONFIGURATION_TARGET configuration.stamp)
|
|
111
111
|
add_custom_command(
|
|
112
112
|
OUTPUT ${_CONFIGURATION_TARGET}
|
|
113
|
-
COMMAND
|
|
113
|
+
COMMAND ${CMAKE_COMMAND} -E env KCONFIG_CONFIG=${CMAKE_SOURCE_DIR}/variants/${VARIANT}/config.txt VARIANT=${VARIANT} guiconfig
|
|
114
|
+
WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}
|
|
114
115
|
)
|
|
115
116
|
|
|
116
117
|
add_custom_target(configuration DEPENDS ${_CONFIGURATION_TARGET})
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "7.11.0"
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
Software Detailed Design
|
|
2
|
-
========================
|
|
3
|
-
|
|
4
|
-
.. figure:: _images/screenshot.png
|
|
5
|
-
|
|
6
|
-
.. mermaid::
|
|
7
|
-
|
|
8
|
-
graph TD
|
|
9
|
-
A[Start] --> B{Language}
|
|
10
|
-
B -->|DE| C[Hallo Welt]
|
|
11
|
-
B -->|EN| D[Hello World]
|
|
12
|
-
C --> E[End]
|
|
13
|
-
D --> E
|
|
14
|
-
|
|
15
|
-
Requirements
|
|
16
|
-
------------
|
|
17
|
-
|
|
18
|
-
.. spec:: Say Hello
|
|
19
|
-
:id: SWDD_GREETER-001
|
|
20
|
-
:integrity: QM
|
|
21
|
-
|
|
22
|
-
{% if config.LANG_DE %}
|
|
23
|
-
It shall greet the user with ``Hallo Welt``.
|
|
24
|
-
{% else %}
|
|
25
|
-
It shall greet the user with ``Hello World``.
|
|
26
|
-
{% endif %}
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
Components
|
|
2
|
-
==========
|
|
3
|
-
|
|
4
|
-
{% for component_info in build_config.components_info %}
|
|
5
|
-
{% if component_info.has_docs %}
|
|
6
|
-
|
|
7
|
-
{{ component_info.long_name or component_info.name }}
|
|
8
|
-
-----------------------------------------------------
|
|
9
|
-
|
|
10
|
-
.. toctree::
|
|
11
|
-
:maxdepth: 2
|
|
12
|
-
|
|
13
|
-
/{{ component_info.path }}/doc/index
|
|
14
|
-
{% if (build_config.target == 'reports') and component_info.has_reports %}
|
|
15
|
-
/{{ component_info.reports_output_dir }}/unit_test_results
|
|
16
|
-
/{{ component_info.reports_output_dir }}/doxygen/html/index
|
|
17
|
-
/{{ component_info.reports_output_dir }}/coverage
|
|
18
|
-
{% endif %}
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
{% endif %}
|
|
22
|
-
{% endfor %}
|
|
@@ -1,39 +0,0 @@
|
|
|
1
|
-
{% if build_config.component_info %}
|
|
2
|
-
|
|
3
|
-
Software Component Report
|
|
4
|
-
#########################
|
|
5
|
-
|
|
6
|
-
| **Variant:** {{ build_config.variant }}
|
|
7
|
-
| **Component:** {{ build_config.component_info.long_name }}
|
|
8
|
-
|
|
9
|
-
.. toctree::
|
|
10
|
-
:maxdepth: 2
|
|
11
|
-
|
|
12
|
-
{{ build_config.component_info.path }}/doc/index
|
|
13
|
-
{% if build_config.component_info.has_reports %}
|
|
14
|
-
{{ build_config.component_info.reports_output_dir }}/unit_test_spec
|
|
15
|
-
{{ build_config.component_info.reports_output_dir }}/unit_test_results
|
|
16
|
-
{{ build_config.component_info.reports_output_dir }}/doxygen/html/index
|
|
17
|
-
{{ build_config.component_info.reports_output_dir }}/coverage
|
|
18
|
-
{% endif %}
|
|
19
|
-
|
|
20
|
-
{% else %}
|
|
21
|
-
|
|
22
|
-
Variant Report
|
|
23
|
-
##############
|
|
24
|
-
|
|
25
|
-
**Variant:** {{ build_config.variant }}
|
|
26
|
-
|
|
27
|
-
.. toctree::
|
|
28
|
-
:maxdepth: 1
|
|
29
|
-
:caption: Contents
|
|
30
|
-
|
|
31
|
-
doc/software_requirements/index
|
|
32
|
-
doc/software_architecture/index
|
|
33
|
-
doc/components/index
|
|
34
|
-
{% if build_config.target == 'reports' %}
|
|
35
|
-
{{ build_config.reports_output_dir }}/coverage
|
|
36
|
-
{% endif %}
|
|
37
|
-
doc/results/index
|
|
38
|
-
|
|
39
|
-
{% endif %}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{spl_core-7.11.0 → spl_core-7.11.1}/src/spl_core/kickstart/templates/application/src/main/src/main.c
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{spl_core-7.11.0 → spl_core-7.11.1}/src/spl_core/kickstart/templates/project/.vscode/cmake-kits.json
RENAMED
|
File without changes
|
{spl_core-7.11.0 → spl_core-7.11.1}/src/spl_core/kickstart/templates/project/.vscode/extensions.json
RENAMED
|
File without changes
|
{spl_core-7.11.0 → spl_core-7.11.1}/src/spl_core/kickstart/templates/project/.vscode/launch.json
RENAMED
|
File without changes
|
{spl_core-7.11.0 → spl_core-7.11.1}/src/spl_core/kickstart/templates/project/.vscode/settings.json
RENAMED
|
File without changes
|
{spl_core-7.11.0 → spl_core-7.11.1}/src/spl_core/kickstart/templates/project/.vscode/tasks.json
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|