Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
ebrains-spack-builds
Manage
Activity
Members
Labels
Plan
Issues
40
Issue boards
Milestones
Wiki
Code
Merge requests
29
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
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
ebrains-spack-builds
Merge requests
!511
fix(genpybind): Drop run-type dependency on llvm to avoid conflict
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
fix(genpybind): Drop run-type dependency on llvm to avoid conflict
test_open3d_vs_llvm
into
master
Overview
42
Commits
4
Pipelines
23
Changes
4
Merged
Eric Müller
requested to merge
test_open3d_vs_llvm
into
master
1 year ago
Overview
42
Commits
4
Pipelines
23
Changes
4
Expand
0
0
Merge request reports
Compare
master
version 25
6a6f8dd0
1 year ago
version 24
113129af
1 year ago
version 23
19b7cb87
1 year ago
version 22
3f3a207f
1 year ago
version 21
b56aa5d5
1 year ago
version 20
b8c7f996
1 year ago
version 19
f764c0da
1 year ago
version 18
f764c0da
1 year ago
version 17
f764c0da
1 year ago
version 16
e480ae94
1 year ago
version 15
6931121b
1 year ago
version 14
69bceb95
1 year ago
version 13
57065f96
1 year ago
version 12
1e9df504
1 year ago
version 11
df68dd5f
1 year ago
version 10
c371a56c
1 year ago
version 9
814b011e
1 year ago
version 8
dca5494f
1 year ago
version 7
b7c4d74d
1 year ago
version 6
b7c4d74d
1 year ago
version 5
b7c4d74d
1 year ago
version 4
8138b854
1 year ago
version 3
c9b23f4c
1 year ago
version 2
3c6f0849
1 year ago
version 1
560bebcd
1 year ago
master (base)
and
latest version
latest version
27e0d16e
4 commits,
1 year ago
version 25
6a6f8dd0
4 commits,
1 year ago
version 24
113129af
7 commits,
1 year ago
version 23
19b7cb87
7 commits,
1 year ago
version 22
3f3a207f
4 commits,
1 year ago
version 21
b56aa5d5
4 commits,
1 year ago
version 20
b8c7f996
3 commits,
1 year ago
version 19
f764c0da
3 commits,
1 year ago
version 18
f764c0da
3 commits,
1 year ago
version 17
f764c0da
3 commits,
1 year ago
version 16
e480ae94
4 commits,
1 year ago
version 15
6931121b
4 commits,
1 year ago
version 14
69bceb95
4 commits,
1 year ago
version 13
57065f96
4 commits,
1 year ago
version 12
1e9df504
4 commits,
1 year ago
version 11
df68dd5f
3 commits,
1 year ago
version 10
c371a56c
3 commits,
1 year ago
version 9
814b011e
3 commits,
1 year ago
version 8
dca5494f
3 commits,
1 year ago
version 7
b7c4d74d
3 commits,
1 year ago
version 6
b7c4d74d
54 commits,
1 year ago
version 5
b7c4d74d
3 commits,
1 year ago
version 4
8138b854
3 commits,
1 year ago
version 3
c9b23f4c
3 commits,
1 year ago
version 2
3c6f0849
3 commits,
1 year ago
version 1
560bebcd
3 commits,
1 year ago
4 files
+
14
−
10
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
4
Search (e.g. *.vue) (Ctrl+P)
packages/build-brainscales/package.py
+
7
−
0
Options
@@ -14,6 +14,13 @@ import spack.build_environment
class
BuildBrainscales
(
WafPackage
):
"""
Common stuff for BrainScaleS packages...
"""
# waf setup performs git clone and might query gerrit
depends_on
(
'
git
'
,
type
=
(
'
build
'
,
'
link
'
))
depends_on
(
'
py-git-review
'
,
type
=
(
'
build
'
,
'
link
'
))
# hack to provide genpybind PATH in all brainscales-style builds
depends_on
(
'
genpybind@ebrains
'
,
type
=
(
'
build
'
,
'
link
'
))
def
do_fetch
(
self
,
mirror_only
=
False
):
"""
Setup the project.
"""