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

Adding CP2K v.2.4.0 and CP2K with i-pi #993

Merged
merged 8 commits into from
Mar 12, 2016
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
37 changes: 37 additions & 0 deletions easybuild/easyconfigs/c/CP2K/CP2K-2.4.0-goolf-1.4.10-ipi.eb
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name = 'CP2K'
version = '2.4.0'
versionsuffix = '-ipi'

homepage = 'http://www.cp2k.org'
description = """CP2K is a freely available (GPL) program, written in Fortran 95,
to perform atomistic and molecular simulations of solid state, liquid, molecular and biological systems.
It provides a general framework for different methods such as e.g. density functional theory (DFT)
using a mixed Gaussian and plane waves approach (GPW), and classical pair and many-body potentials. """

toolchain = {'name': 'goolf', 'version': '1.4.10'}

source_urls = ['http://sourceforge.net/projects/cp2k/files/']

sources = ['%s-%s.tar.bz2' % (name.lower(), version)]
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

use SOURCELOWER_TAR_BZ2 here


patches = [
'cp2k-2.4.0_ipi.patch',
'fix_compile_date_lastcvs.patch',
'do_regtest_nocompile.patch'
]

builddependencies = [
('flex', '2.5.35'),
('Bison', '2.5')
]

dependencies = [('Libint', '1.1.4')]

# don't use parallel make, results in compilation failure
# because Fortran module files aren't created before they are needed
parallel = 1

# about 100 tests fail
ignore_regtest_fails=True

moduleclass = 'chem'
35 changes: 35 additions & 0 deletions easybuild/easyconfigs/c/CP2K/CP2K-2.4.0-goolf-1.4.10.eb
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name = 'CP2K'
version = '2.4.0'

homepage = 'http://www.cp2k.org'
description = """CP2K is a freely available (GPL) program, written in Fortran 95,
to perform atomistic and molecular simulations of solid state, liquid, molecular and biological systems.
It provides a general framework for different methods such as e.g. density functional theory (DFT)
using a mixed Gaussian and plane waves approach (GPW), and classical pair and many-body potentials. """

toolchain = {'name': 'goolf', 'version': '1.4.10'}

source_urls = ['http://sourceforge.net/projects/cp2k/files/']

sources = ['%s-%s.tar.bz2' % (name.lower(), version)]

patches = [
'fix_compile_date_lastcvs.patch',
'do_regtest_nocompile.patch'
]
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

fix indenting


builddependencies = [
('flex', '2.5.35'),
('Bison', '2.5')
]
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

fix indenting (and in the other one too)


dependencies = [('Libint', '1.1.4')]

# don't use parallel make, results in compilation failure
# because Fortran module files aren't created before they are needed
parallel = 1

# about 100 tests fail
ignore_regtest_fails=True

moduleclass = 'chem'