Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
eic_container
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
containers
eic_container
Commits
271c9c0d
Commit
271c9c0d
authored
3 years ago
by
Wouter Deconinck
Browse files
Options
Downloads
Patches
Plain Diff
Mutable datatypes in podio@0.14.1 and beyond
parent
0e09507e
No related branches found
No related tags found
1 merge request
!284
Mutable datatypes in podio@0.14.1 and beyond
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
spack.yaml
+2
-2
2 additions, 2 deletions
spack.yaml
spack/packages/edm4hep/package.py
+7
-0
7 additions, 0 deletions
spack/packages/edm4hep/package.py
spack/packages/podio/package.py
+12
-1
12 additions, 1 deletion
spack/packages/podio/package.py
with
21 additions
and
3 deletions
spack.yaml
+
2
−
2
View file @
271c9c0d
...
@@ -7,7 +7,7 @@ spack:
...
@@ -7,7 +7,7 @@ spack:
-
dawn@3_91a
-
dawn@3_91a
-
dawncut@1_54a
-
dawncut@1_54a
-
dd4hep@1.20.1 +geant4 -assimp +hepmc3 +ipo +lcio
-
dd4hep@1.20.1 +geant4 -assimp +hepmc3 +ipo +lcio
-
edm4hep@0.4 cxxstd=17 -ipo
-
edm4hep@0.4
.1
cxxstd=17 -ipo
-
eigen@3.4.0
-
eigen@3.4.0
-
emacs@27.2 toolkit=athena
-
emacs@27.2 toolkit=athena
-
fastjet@3.3.3
-
fastjet@3.3.3
...
@@ -25,7 +25,7 @@ spack:
...
@@ -25,7 +25,7 @@ spack:
-
nlohmann-json@3.10.4
-
nlohmann-json@3.10.4
-
opencascade@7.5.3
-
opencascade@7.5.3
-
pkg-config@0.29.2
-
pkg-config@0.29.2
-
podio@0.14 build_type=RelWithDebInfo
-
podio@0.14
.1
build_type=RelWithDebInfo
-
pythia8@8.306 +fastjet
-
pythia8@8.306 +fastjet
-
python@3.9.7
-
python@3.9.7
-
py-numpy@1.21.3
-
py-numpy@1.21.3
...
...
This diff is collapsed.
Click to expand it.
spack/packages/edm4hep/package.py
0 → 100644
+
7
−
0
View file @
271c9c0d
from
spack
import
*
from
spack.pkg.builtin.edm4hep
import
Edm4hep
as
BuiltinEdm4hep
class
Edm4hep
(
BuiltinEdm4hep
):
version
(
'
0.4.1
'
,
sha256
=
'
122987fd5969b0f1639afa9668ac5181203746d00617ddb3bf8a2a9842758a63
'
)
version
(
'
0.4
'
,
sha256
=
'
bcb729cd4a6f5917b8f073364fc950788111e178dd16b7e5218361f459c92a24
'
)
This diff is collapsed.
Click to expand it.
spack/packages/podio/package.py
+
12
−
1
View file @
271c9c0d
...
@@ -5,4 +5,15 @@ from spack.pkg.builtin.podio import Podio as BuiltinPodio
...
@@ -5,4 +5,15 @@ from spack.pkg.builtin.podio import Podio as BuiltinPodio
class
Podio
(
BuiltinPodio
):
class
Podio
(
BuiltinPodio
):
# issue with build breaking for spack as the search-and-replace for "root"
# issue with build breaking for spack as the search-and-replace for "root"
# erroneously selects the all files as the build happens under /tmp/root
# erroneously selects the all files as the build happens under /tmp/root
patch
(
'
cmake.patch
'
,
when
=
"
@0.13.1:0.14
"
)
patch
(
'
cmake.patch
'
,
when
=
"
@0.13.1:0.14.0
"
)
version
(
'
0.14.1
'
,
sha256
=
'
361ac3f3ec6f5a4830729ab45f96c19f0f62e9415ff681f7c6cdb4ebdb796f72
'
)
def
setup_run_environment
(
self
,
env
):
env
.
prepend_path
(
'
PYTHONPATH
'
,
self
.
prefix
.
python
)
env
.
prepend_path
(
'
LD_LIBRARY_PATH
'
,
self
.
spec
[
'
podio
'
].
libs
.
directories
[
0
])
def
setup_dependent_build_environment
(
self
,
env
,
dependent_spec
):
env
.
prepend_path
(
'
PYTHONPATH
'
,
self
.
prefix
.
python
)
env
.
prepend_path
(
'
LD_LIBRARY_PATH
'
,
self
.
spec
[
'
podio
'
].
libs
.
directories
[
0
])
env
.
prepend_path
(
'
ROOT_INCLUDE_PATH
'
,
self
.
prefix
.
include
)
This diff is collapsed.
Click to expand it.
Wouter Deconinck
@wdconinc
mentioned in issue
#107 (closed)
·
3 years ago
mentioned in issue
#107 (closed)
mentioned in issue #107
Toggle commit list
Preview
0%
Loading
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