Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
dedal
Manage
Activity
Members
Labels
Plan
Issues
2
Issue boards
Milestones
Wiki
Code
Merge requests
1
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Harbor Registry
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
EBRAINS RI
Tech Hub
Platform
EBRAINS Software Distribution
dedal
Commits
18b10d9f
Commit
18b10d9f
authored
2 months ago
by
Eric Müller
Browse files
Options
Downloads
Patches
Plain Diff
chore: initial commit
parents
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.gitreview
+7
-0
7 additions, 0 deletions
.gitreview
README.md
+3
-0
3 additions, 0 deletions
README.md
wscript
+21
-0
21 additions, 0 deletions
wscript
with
31 additions
and
0 deletions
.gitreview
0 → 100644
+
7
−
0
View file @
18b10d9f
[gerrit]
host=brainscales-r.kip.uni-heidelberg.de
port=29418
project=yashchiki
defaultbranch=koutakia
defaultremote=review
defaultrebase=0
This diff is collapsed.
Click to expand it.
README.md
0 → 100644
+
3
−
0
View file @
18b10d9f
# ~~Yashchiki~~Koutakia
For now, this repository provides helpers for the EBRAINS container image build flow.
This diff is collapsed.
Click to expand it.
wscript
0 → 100755
+
21
−
0
View file @
18b10d9f
def depends(ctx):
ctx("spack", branch="visionary")
def options(opt):
pass
def configure(cfg):
pass
def build(bld):
# install /bin
for bin in bld.path.ant_glob('bin/**/*'):
bld.install_as('${PREFIX}/%s' % bin.path_from(bld.path), bin)
# install /lib
for lib in bld.path.ant_glob('lib/**/*'):
bld.install_as('${PREFIX}/%s' % lib.path_from(bld.path), lib)
# install /share
for share in bld.path.ant_glob('share/**/*'):
bld.install_as('${PREFIX}/%s' % share.path_from(bld.path), share)
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment