Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
ebrains-spack-builds
Manage
Activity
Members
Labels
Plan
Issues
38
Issue boards
Milestones
Wiki
Code
Merge requests
26
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
Commits
478a071e
Commit
478a071e
authored
2 years ago
by
Lorenz Thielbeer
Browse files
Options
Downloads
Patches
Plain Diff
Update package.py to fix runtime error
parent
56f1d316
No related branches found
Branches containing commit
No related tags found
2 merge requests
!148
create new experimental release
,
!143
Update package.py of apbs to fix runtime error
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
packages/apbs/package.py
+4
-4
4 additions, 4 deletions
packages/apbs/package.py
with
4 additions
and
4 deletions
packages/apbs/package.py
+
4
−
4
View file @
478a071e
...
@@ -31,10 +31,10 @@ class Apbs(CMakePackage):
...
@@ -31,10 +31,10 @@ class Apbs(CMakePackage):
# Dependencies.
# Dependencies.
depends_on
(
'
cmake@3.19
'
,
type
=
'
build
'
)
depends_on
(
'
cmake@3.19
'
,
type
=
'
build
'
)
depends_on
(
'
python@3.8:3.10
'
,
type
=
(
'
build
'
))
depends_on
(
'
python@3.8:3.10
'
,
type
=
(
'
build
'
,
'
run
'
))
depends_on
(
'
blas
'
,
type
=
'
build
'
)
depends_on
(
'
blas
'
,
type
=
(
'
build
'
,
'
run
'
)
)
depends_on
(
'
suite-sparse
'
,
type
=
'
build
'
)
depends_on
(
'
suite-sparse
'
,
type
=
(
'
build
'
,
'
run
'
)
)
depends_on
(
'
maloc
'
,
type
=
'
build
'
)
depends_on
(
'
maloc
'
,
type
=
(
'
build
'
,
'
run
'
)
)
def
cmake_args
(
self
):
def
cmake_args
(
self
):
# Min and max Python versions need to be set as variables to pass tests.
# Min and max Python versions need to be set as variables to pass tests.
...
...
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