+solver that accepts __git behaviour :)
Signed-off-by: Nico Schottelius <nico@brief.schottelius.org>
This commit is contained in:
parent
2e083db90a
commit
d289cc2d3e
1 changed files with 72 additions and 0 deletions
72
docs/dev/logs/2012-12-11.dependencies
Normal file
72
docs/dev/logs/2012-12-11.dependencies
Normal file
|
@ -0,0 +1,72 @@
|
||||||
|
2.1.0 behaviour:
|
||||||
|
|
||||||
|
|
||||||
|
__git foo
|
||||||
|
__package git --state present
|
||||||
|
|
||||||
|
__git bar
|
||||||
|
__package git --state present
|
||||||
|
|
||||||
|
|
||||||
|
require="__git/foo" git bar:
|
||||||
|
|
||||||
|
__git bar
|
||||||
|
__git foo
|
||||||
|
__package git --state present
|
||||||
|
__package git --state present
|
||||||
|
__git foo
|
||||||
|
__package git --state present
|
||||||
|
|
||||||
|
-> detects circular dependency
|
||||||
|
|
||||||
|
|
||||||
|
--------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
__package abc
|
||||||
|
__package_apt abc
|
||||||
|
|
||||||
|
__sometype def
|
||||||
|
__package abc
|
||||||
|
__package_apt abc
|
||||||
|
|
||||||
|
|
||||||
|
--------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
Change proposal:
|
||||||
|
|
||||||
|
Each object only depends on the objects it directly requires, tree build to
|
||||||
|
ensure correct running behaviour:
|
||||||
|
|
||||||
|
|
||||||
|
__git bar
|
||||||
|
__git foo
|
||||||
|
__package git --state present
|
||||||
|
|
||||||
|
__git foo
|
||||||
|
__package git --state present
|
||||||
|
|
||||||
|
Order:
|
||||||
|
|
||||||
|
1)
|
||||||
|
__package/git (leaf node!)
|
||||||
|
|
||||||
|
2)
|
||||||
|
__git/foo (new leaf node!)
|
||||||
|
|
||||||
|
3)
|
||||||
|
__git/bar (new leaf node!)
|
||||||
|
|
||||||
|
|
||||||
|
For __package:
|
||||||
|
|
||||||
|
__sometype def
|
||||||
|
__package abc
|
||||||
|
|
||||||
|
__package abc
|
||||||
|
__package_apt abc
|
||||||
|
|
||||||
|
1) __package_apt/abc (leaf node)
|
||||||
|
|
||||||
|
2) __package/abc (new leaf node)
|
||||||
|
|
||||||
|
3) __sometype/def (new leaf node)
|
Loading…
Reference in a new issue