Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
ebrains-spack-builds
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
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
Klaus Noelp
ebrains-spack-builds
Commits
fed05fbe
Commit
fed05fbe
authored
2 years ago
by
Eleni Mathioulaki
Browse files
Options
Downloads
Patches
Plain Diff
Revert "Revert "Merge branch 'brent-master-patch-66860' into 'master'""
This reverts commit
383726f9
parent
4e3e03a4
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
packages/arbor/package.py
+14
-10
14 additions, 10 deletions
packages/arbor/package.py
spack.yaml
+1
-1
1 addition, 1 deletion
spack.yaml
with
15 additions
and
11 deletions
packages/arbor/package.py
+
14
−
10
View file @
fed05fbe
...
...
@@ -12,10 +12,15 @@ class Arbor(CMakePackage, CudaPackage):
homepage
=
"
https://arbor-sim.org
"
git
=
"
https://github.com/arbor-sim/arbor.git
"
url
=
"
https://github.com/arbor-sim/arbor/releases/download/v0.
7
/arbor-v0.
7
-full.tar.gz
"
url
=
"
https://github.com/arbor-sim/arbor/releases/download/v0.
8
/arbor-v0.
8
-full.tar.gz
"
maintainers
=
[
"
bcumming
"
,
"
brenthuisman
"
,
"
haampie
"
,
"
schmitts
"
]
version
(
"
master
"
,
branch
=
"
master
"
,
submodules
=
True
)
version
(
"
0.8
"
,
sha256
=
"
18df5600308841616996a9de93b55a105be0f59692daa5febd3a65aae5bc2c5d
"
,
url
=
"
https://github.com/arbor-sim/arbor/releases/download/v0.8/arbor-v0.8-full.tar.gz
"
,
)
version
(
"
0.7
"
,
sha256
=
"
c3a6b7193946aee882bb85f9c38beac74209842ee94e80840968997ba3b84543
"
,
...
...
@@ -31,11 +36,6 @@ class Arbor(CMakePackage, CudaPackage):
sha256
=
"
290e2ad8ca8050db1791cabb6b431e7c0409c305af31b559e397e26b300a115d
"
,
url
=
"
https://github.com/arbor-sim/arbor/releases/download/v0.5.2/arbor-v0.5.2-full.tar.gz
"
,
)
version
(
"
0.5
"
,
sha256
=
"
d0c8a4c7f97565d7c30493c66249be794d1dc424de266fc79cecbbf0e313df59
"
,
url
=
"
https://github.com/arbor-sim/arbor/releases/download/v0.5/arbor-v0.5-full.tar.gz
"
,
)
variant
(
"
assertions
"
,
...
...
@@ -53,20 +53,23 @@ class Arbor(CMakePackage, CudaPackage):
)
# https://docs.arbor-sim.org/en/latest/install/build_install.html#compilers
conflicts
(
"
%gcc@:8
.3
"
)
conflicts
(
"
%clang@:
7
"
)
conflicts
(
"
%gcc@:8
"
)
conflicts
(
"
%clang@:
9
"
)
# Cray compiler v9.2 and later is Clang-based.
conflicts
(
"
%cce@:9.1
"
)
conflicts
(
"
%intel
"
)
depends_on
(
"
cmake@3.1
2
:
"
,
type
=
"
build
"
)
depends_on
(
"
cmake@3.1
9
:
"
,
type
=
"
build
"
)
# misc dependencies
depends_on
(
"
fmt@7.1:
"
,
when
=
"
@0.5.3:
"
)
# required by the modcc compiler
depends_on
(
"
fmt@9.1:
"
,
when
=
"
@0.7.1:
"
)
depends_on
(
"
nlohmann-json
"
)
depends_on
(
"
random123
"
)
depends_on
(
"
cuda@10:
"
,
when
=
"
+cuda
"
)
depends_on
(
"
libxml2
"
,
when
=
"
+neuroml
"
)
with
when
(
"
+cuda
"
):
depends_on
(
"
cuda@10:
"
)
depends_on
(
"
cuda@11:
"
,
when
=
"
@0.7.1:
"
)
# mpi
depends_on
(
"
mpi
"
,
when
=
"
+mpi
"
)
...
...
@@ -79,6 +82,7 @@ class Arbor(CMakePackage, CudaPackage):
with
when
(
"
+python
"
):
depends_on
(
"
py-pybind11@2.6:
"
,
type
=
(
"
build
"
))
depends_on
(
"
py-pybind11@2.8.1:
"
,
when
=
"
@0.5.3:
"
,
type
=
(
"
build
"
))
depends_on
(
"
py-pybind11@2.10.1:
"
,
when
=
"
@0.7.1:
"
,
type
=
(
"
build
"
))
# sphinx based documentation
depends_on
(
"
python@3.7:
"
,
when
=
"
+doc
"
,
type
=
"
build
"
)
...
...
This diff is collapsed.
Click to expand it.
spack.yaml
+
1
−
1
View file @
fed05fbe
...
...
@@ -20,7 +20,7 @@ spack:
#- py-version-query
# EBRAINS simulators
-
nest@3.3 +python +gsl +mpi
-
arbor +python +mpi ^python@3
:3.9
-
arbor +python +mpi ^python@3
.7
:
-
neuron +mpi
-
py-pynn@0.10.1 +mpi
-
py-brian2
...
...
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