Skip to content

Commit

Permalink
init (#24)
Browse files Browse the repository at this point in the history
  • Loading branch information
blegouix authored Jan 15, 2025
1 parent ac5b78d commit 9cbfb80
Show file tree
Hide file tree
Showing 11 changed files with 44 additions and 0 deletions.
4 changes: 4 additions & 0 deletions packages/paraconf/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@
# SPDX-License-Identifier: (Apache-2.0 OR MIT)

from spack import *
try:
from spack.package import *
except:
pass


class Paraconf(CMakePackage):
Expand Down
4 changes: 4 additions & 0 deletions packages/pdi/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@
# SPDX-License-Identifier: (Apache-2.0 OR MIT)

from spack import *
try:
from spack.package import *
except:
pass


class Pdi(CMakePackage):
Expand Down
4 changes: 4 additions & 0 deletions packages/pdiplugin-decl-hdf5/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@
# SPDX-License-Identifier: (Apache-2.0 OR MIT)

from spack import *
try:
from spack.package import *
except:
pass


class PdipluginDeclHdf5(CMakePackage):
Expand Down
4 changes: 4 additions & 0 deletions packages/pdiplugin-decl-netcdf/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@
# SPDX-License-Identifier: (Apache-2.0 OR MIT)

from spack import *
try:
from spack.package import *
except:
pass


class PdipluginDeclNetcdf(CMakePackage):
Expand Down
4 changes: 4 additions & 0 deletions packages/pdiplugin-mpi/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@
# SPDX-License-Identifier: (Apache-2.0 OR MIT)

from spack import *
try:
from spack.package import *
except:
pass


class PdipluginMpi(CMakePackage):
Expand Down
4 changes: 4 additions & 0 deletions packages/pdiplugin-pycall/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@
# SPDX-License-Identifier: (Apache-2.0 OR MIT)

from spack import *
try:
from spack.package import *
except:
pass


class PdipluginPycall(CMakePackage):
Expand Down
4 changes: 4 additions & 0 deletions packages/pdiplugin-serialize/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@
# SPDX-License-Identifier: (Apache-2.0 OR MIT)

from spack import *
try:
from spack.package import *
except:
pass


class PdipluginSerialize(CMakePackage):
Expand Down
4 changes: 4 additions & 0 deletions packages/pdiplugin-set-value/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@
# SPDX-License-Identifier: (Apache-2.0 OR MIT)

from spack import *
try:
from spack.package import *
except:
pass


class PdipluginSetValue(CMakePackage):
Expand Down
4 changes: 4 additions & 0 deletions packages/pdiplugin-trace/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@
# SPDX-License-Identifier: (Apache-2.0 OR MIT)

from spack import *
try:
from spack.package import *
except:
pass


class PdipluginTrace(CMakePackage):
Expand Down
4 changes: 4 additions & 0 deletions packages/pdiplugin-user-code/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@
# SPDX-License-Identifier: (Apache-2.0 OR MIT)

from spack import *
try:
from spack.package import *
except:
pass


class PdipluginUserCode(CMakePackage):
Expand Down
4 changes: 4 additions & 0 deletions packages/zpp/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@
# SPDX-License-Identifier: (Apache-2.0 OR MIT)

from spack import *
try:
from spack.package import *
except:
pass


class Zpp(PythonPackage):
Expand Down

0 comments on commit 9cbfb80

Please sign in to comment.