Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support latest version of spack #26

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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