openPMD-api: rename develop (#24810)

* openPMD-api: rename develop

Rename to match known Spack version comparison schemes:
```
develop>main>master>head>trunk>9999>0>z>a
```

Currently, the hdf5 patch that is pre-0.14.0 is also applied to
`dev`, which naturally fails (already applied).

* fix dev in warpx
This commit is contained in:
Axel Huebl 2021-07-09 15:43:28 -07:00 committed by GitHub
parent c9fe3af92d
commit 78f65e7ce0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -16,7 +16,7 @@ class OpenpmdApi(CMakePackage):
maintainers = ['ax3l']
# C++14 up until here
version('dev', branch='dev')
version('develop', branch='dev')
# temporary, pre 0.14.0 version for HiPACE++
version('hipace', commit='ac083025ee662469b8cad1adf93eef48cde35f58')
version('0.13.4', sha256='46c013be5cda670f21969675ce839315d4f5ada0406a6546a91ec3441402cf5e')

View file

@ -84,7 +84,7 @@ class Warpx(CMakePackage):
depends_on('fftw +mpi', when='+psatd +mpi compute=omp')
depends_on('lapackpp', when='+psatd dims=rz')
depends_on('mpi', when='+mpi')
depends_on('openpmd-api@0.13.1:,dev', when='+openpmd')
depends_on('openpmd-api@0.13.1:', when='+openpmd')
depends_on('openpmd-api ~mpi', when='+openpmd ~mpi')
depends_on('openpmd-api +mpi', when='+openpmd +mpi')
depends_on('pkgconfig', type='build', when='+psatd compute=omp')