spl-core 6.4.0__py3-none-any.whl → 6.5.0__py3-none-any.whl

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/__init__.py CHANGED
@@ -1 +1 @@
1
- __version__ = "6.4.0"
1
+ __version__ = "6.5.0"
@@ -0,0 +1,50 @@
1
+ menu "SPL Core"
2
+ menu "Linking"
3
+ config LINKER_OUTPUT_FILE
4
+ string "LINKER_OUTPUT_FILE"
5
+ default "link_out.elf"
6
+ help
7
+ The main output file generated by the linker (e.g. main.exe or main.elf).
8
+
9
+ config LINKER_BYPRODUCTS_CONFIG
10
+ bool "LINKER_BYPRODUCTS_CONFIG"
11
+ default n
12
+ help
13
+ Enable to configure other byproduct files generated by the linker
14
+
15
+ config LINKER_BYPRODUCTS_EXTENSIONS
16
+ string "LINKER_BYPRODUCTS_EXTENSIONS"
17
+ depends on !LINKER_BYPRODUCTS_CONFIG
18
+ default "hex,map,mdf"
19
+ help
20
+ The extensions of other byproducts generated by the linker (comma separated list, e.g., "hex,map,mdf")
21
+
22
+ config LINKER_BYPRODUCT_HEX
23
+ string "LINKER_BYPRODUCT_HEX"
24
+ depends on LINKER_BYPRODUCTS_CONFIG
25
+ default "link_out.hex"
26
+ help
27
+ The hex file generated by the linker
28
+
29
+ config LINKER_BYPRODUCT_MAP
30
+ string "LINKER_BYPRODUCT_MAP"
31
+ depends on LINKER_BYPRODUCTS_CONFIG
32
+ default "link_out.map"
33
+ help
34
+ The map file generated by the linker
35
+
36
+ config LINKER_BYPRODUCT_MDF
37
+ string "LINKER_BYPRODUCT_MDF"
38
+ depends on LINKER_BYPRODUCTS_CONFIG
39
+ default "link_out.mdf"
40
+ help
41
+ The mdf file generated by the linker
42
+
43
+ config LINKER_BYPRODUCT_OTHERS
44
+ string "LINKER_BYPRODUCT_OTHERS"
45
+ depends on LINKER_BYPRODUCTS_CONFIG
46
+ default ""
47
+ help
48
+ Other byproduct files generated by the linker (comma separated list, e.g., "link_out.xml")
49
+ endmenu
50
+ endmenu
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: spl-core
3
- Version: 6.4.0
3
+ Version: 6.5.0
4
4
  Summary: Software Product Line Support for CMake
5
5
  License: MIT
6
6
  Author: Avengineers
@@ -16,26 +16,26 @@ Classifier: Programming Language :: Python :: 3.10
16
16
  Classifier: Programming Language :: Python :: 3.11
17
17
  Classifier: Topic :: Software Development :: Libraries
18
18
  Requires-Dist: cookiecutter (==2.1.1)
19
- Requires-Dist: doxysphinx (>=3.3.7,<4.0.0)
20
- Requires-Dist: gcovr
21
- Requires-Dist: hammocking
22
- Requires-Dist: kconfiglib
23
- Requires-Dist: mlx-traceability (>=10.0.0,<11.0.0)
19
+ Requires-Dist: doxysphinx (>=3.3,<4.0)
20
+ Requires-Dist: gcovr (>=8.3,<9.0)
21
+ Requires-Dist: hammocking (>=0.4.1,<0.5.0)
22
+ Requires-Dist: kconfiglib (>=14.1,<15.0)
23
+ Requires-Dist: mlx-traceability (>=10.0,<11.0)
24
24
  Requires-Dist: myst-parser (>=0.16)
25
25
  Requires-Dist: py-app-dev (>=2.1,<3.0)
26
- Requires-Dist: sphinx (>=7.3.5,<8.0.0)
27
- Requires-Dist: sphinx-book-theme (>=1.1.2,<2.0.0)
28
- Requires-Dist: sphinx-copybutton (>=0.5.2,<0.6.0)
29
- Requires-Dist: sphinx-design (>=0.5.0,<0.6.0)
30
- Requires-Dist: sphinx-needs (>=2.0.0,<3.0.0)
31
- Requires-Dist: sphinx-new-tab-link (>=0.4.0,<0.5.0)
32
- Requires-Dist: sphinx-rtd-size (>=0.2.0,<0.3.0)
33
- Requires-Dist: sphinx-rtd-theme (>=2.0.0,<3.0.0)
34
- Requires-Dist: sphinx-test-reports (>=1.0.2,<2.0.0)
35
- Requires-Dist: sphinxcontrib-datatemplates (>=0.11.0,<0.12.0)
36
- Requires-Dist: sphinxcontrib-mermaid (>=0.9.2,<0.10.0)
26
+ Requires-Dist: sphinx (>=7.3,<8.0)
27
+ Requires-Dist: sphinx-book-theme (>=1.1,<2.0)
28
+ Requires-Dist: sphinx-copybutton (>=0.5,<0.6)
29
+ Requires-Dist: sphinx-design (>=0.5,<0.6)
30
+ Requires-Dist: sphinx-needs (>=2.0,<3.0)
31
+ Requires-Dist: sphinx-new-tab-link (>=0.4,<0.5)
32
+ Requires-Dist: sphinx-rtd-size (>=0.2,<0.3)
33
+ Requires-Dist: sphinx-rtd-theme (>=2.0,<3.0)
34
+ Requires-Dist: sphinx-test-reports (>=1.0,<2.0)
35
+ Requires-Dist: sphinxcontrib-datatemplates (>=0.11,<0.12)
36
+ Requires-Dist: sphinxcontrib-mermaid (>=0.9,<0.10)
37
37
  Requires-Dist: sphinxcontrib-plantuml (>=0.29,<0.30)
38
- Requires-Dist: typer (>=0.12.3,<0.13.0)
38
+ Requires-Dist: typer (>=0,<1)
39
39
  Project-URL: Bug Tracker, https://github.com/avengineers/spl-core/issues
40
40
  Project-URL: Changelog, https://github.com/avengineers/spl-core/blob/develop/CHANGELOG.md
41
41
  Project-URL: Documentation, https://spl-core.readthedocs.io
@@ -1,10 +1,11 @@
1
- spl_core/__init__.py,sha256=mLmu_37xnjX9cko1tT6SySyXdfQZ1f3ZP12S3GzhmVA,22
1
+ spl_core/__init__.py,sha256=gp-lLlwFu2zSdoW-9KJF20SpGpKvzbNC2pWwy2d56R0,22
2
2
  spl_core/__run.py,sha256=DphnN7_Bjiw_mOOztsHxTDHS8snz1g2MMWAaJpZxPKM,361
3
3
  spl_core/common/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
4
  spl_core/common/command_line_executor.py,sha256=GHIMpNiMD_eP44vq7L_HiC08aKt7lgW_wn_omU6REwQ,2217
5
5
  spl_core/common/path.py,sha256=sDujd3n4XP1XGjHc7ImXEdjihO6A8BOIDbKCf7HgQ0Y,462
6
6
  spl_core/common.cmake,sha256=SGDojoED4jazy_Y8C2lo31F1oYNChbTYbRk0UkGWOcc,32415
7
7
  spl_core/conan.cmake,sha256=i1AuyN-e8cczX7TI1nl6e3Y8N-EP-QXPVY7LG6NUyJY,41958
8
+ spl_core/config/KConfig,sha256=atlUwl0kPIdoGjbOI2PoaCQ2wgao7-mblZKn3dXUCxI,1755
8
9
  spl_core/gcov_maid/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
9
10
  spl_core/gcov_maid/gcov_maid.py,sha256=5rPIeL9daQDm5ad9xzaIhlDf_0H5g6r2zHo8WN8T4-8,1455
10
11
  spl_core/kconfig/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -59,8 +60,8 @@ spl_core/main.py,sha256=_hL4j155WZMXog_755bgAH1PeUwvTdJZvVdVw9EWhvo,1225
59
60
  spl_core/spl.cmake,sha256=uG1tnDba1Tgjj1ql5rgIRJFkfi9CY9IHoYLePWklYxw,4524
60
61
  spl_core/test_utils/base_variant_test_runner.py,sha256=jW9mRbSI0rSFLh-lOwkj7oJgyk2xm07Dw63vhJmnE3s,3312
61
62
  spl_core/test_utils/spl_build.py,sha256=TtYFTY94Fa9eXdtY9NavrCulx-NEONRm81GSLHGB_yQ,5599
62
- spl_core-6.4.0.dist-info/LICENSE,sha256=UjjA0o8f5tT3wVm7qodTLAhPWLl6kgVyn9FPAd1VeYY,1099
63
- spl_core-6.4.0.dist-info/METADATA,sha256=EE21w-lBnPNxaJ4t5czLWp2milF2maDPYzp33uugbyk,5177
64
- spl_core-6.4.0.dist-info/WHEEL,sha256=XbeZDeTWKc1w7CSIyre5aMDU_-PohRwTQceYnisIYYY,88
65
- spl_core-6.4.0.dist-info/entry_points.txt,sha256=18_sdVY93N1GVBiAHxQ_F9ZM-bBvOmVMOMn7PNe2EqU,45
66
- spl_core-6.4.0.dist-info/RECORD,,
63
+ spl_core-6.5.0.dist-info/LICENSE,sha256=UjjA0o8f5tT3wVm7qodTLAhPWLl6kgVyn9FPAd1VeYY,1099
64
+ spl_core-6.5.0.dist-info/METADATA,sha256=vaCun7hgn-Tgw2nSK6ixgfvrAGTu4jWwHfjTO5zkITc,5160
65
+ spl_core-6.5.0.dist-info/WHEEL,sha256=XbeZDeTWKc1w7CSIyre5aMDU_-PohRwTQceYnisIYYY,88
66
+ spl_core-6.5.0.dist-info/entry_points.txt,sha256=18_sdVY93N1GVBiAHxQ_F9ZM-bBvOmVMOMn7PNe2EqU,45
67
+ spl_core-6.5.0.dist-info/RECORD,,