forked from AdaCore/e3-core
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request AdaCore#546 from leocardao/VB28-011
Fix issue where downloaded dependencies are not tracked
- Loading branch information
Showing
3 changed files
with
42 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
from e3.anod.spec import Anod | ||
|
||
class Spec6(Anod): | ||
component = 'spec6' | ||
|
||
@property | ||
def build_source_list(self): | ||
return [Anod.Source(name='spec6-src', publish=True, dest='a'), | ||
Anod.Source(name='spec6-internal-src', publish=False, dest='b')] | ||
|
||
@property | ||
def build_deps(self): | ||
return [Anod.Dependency(name='spec2', track=True, | ||
require='download'), | ||
Anod.Dependency(name='spec-tools', track=False, | ||
require='download')] | ||
|
||
@property | ||
def source_pkg_build(self): | ||
return [Anod.ThirdPartySourceBuilder(name='spec6-src'), | ||
Anod.ThirdPartySourceBuilder(name='spec6-internal-src')] | ||
|
||
@Anod.primitive() | ||
def build(self): | ||
pass |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters