-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[projmgr] MVP prototype initial commit #1
base: main
Are you sure you want to change the base?
Conversation
3e9b419
to
6ef6ec7
Compare
6ef6ec7
to
4874cd5
Compare
Anything but python please. |
- spelling, CompilersType => CompilerType Contributed by STMicroelectronics Signed-off-by: Emil HAMMARSTEDT <[email protected]>
Whitespaces is throwing parser off
tools/projmgr/docs/Overview.md
Outdated
``` | ||
|
||
The proposed component name syntax is: | ||
`[Cvendor::] Cclass [&Cbundle] :Cgroup [:Csub] [&Cvariant] [@[>=]Cversion]` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The >=
operator has the drawback of potentially silently select incompatible versions, for example @>=1.0
could select version 2.0
which is considered a major (potentially incompatible) update. Other tools make use of the ~=
operator to select compatible versions, see Python for instance. We could allow @~=1.1
which means version range [1.1.0, 2.0.0)
.
…for execution of external commands.
3b8d6cd
to
9be8bfd
Compare
Section Name Conventions introduced
409545b
to
25a0229
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please don't add binaries into the repository. You could create a release instead and attache the binaries there.
This is a temporary solution agreed with @ReinhardKeil and @jkrech. The sources for these binaries are not yet public. |
25a0229
to
ac7d80e
Compare
Added $Output(project) proposal
- Introduced in *.csolution solution:/projects:
No description provided.