votca*: add v1.5 (#10495)

* votca-tools: add v1.5

* votca-csg: add v1.5

* votca-xtp: add v1.5

* votca-ctp: add v1.5
This commit is contained in:
Christoph Junghans 2019-02-04 12:57:19 -07:00 committed by GitHub
parent 478c3f5e8b
commit 514cf0c1f4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 15 additions and 10 deletions

View File

@ -20,11 +20,12 @@ class VotcaCsg(CMakePackage):
git = "https://github.com/votca/csg.git"
version('develop', branch='master')
version('1.4', 'd009e761e5e3afd51eed89c420610a67')
version('1.5', sha256='160387cdc51f87dd20ff2e2eed97086beee415d48f3c92f4199f6109068c8ff4')
version('1.4.1', 'e4195d69db2036e9d76f22115ae31f81')
version('1.4', 'd009e761e5e3afd51eed89c420610a67')
depends_on("cmake@2.8:", type='build')
depends_on("votca-tools@1.4:1.4.999", when='@1.4:1.4.999')
depends_on("votca-tools@develop", when='@develop')
for v in ["1.4", "1.4.1", "1.5", "develop"]:
depends_on('votca-tools@%s' % v, when="@%s" % v)
depends_on("gromacs~mpi@5.1:")
depends_on("hdf5~mpi")

View File

@ -16,11 +16,14 @@ class VotcaCtp(CMakePackage):
This package contains the VOTCA charge transport engine.
"""
homepage = "http://www.votca.org"
url = "https://github.com/votca/ctp/tarball/v1.5"
git = "https://github.com/votca/ctp.git"
version('develop', branch='master')
version('1.5', sha256='31eb6bcc9339e575116f0c91fe7a4ce7d4189f31f0640329c993fea911401d65')
depends_on("cmake@2.8:", type='build')
depends_on("votca-tools@develop", when='@develop')
depends_on("votca-csg@develop", when='@develop')
for v in ["1.5", "develop"]:
depends_on('votca-tools@%s' % v, when="@%s" % v)
depends_on('votca-csg@%s' % v, when="@%s" % v)
depends_on("gsl")

View File

@ -20,8 +20,9 @@ class VotcaTools(CMakePackage):
git = "https://github.com/votca/tools.git"
version('develop', branch='master')
version('1.4', 'cd47868e9f28e2c7b9d01f95aa0185ca')
version('1.5', sha256='a82a6596c24ff06e79eab17ca02f4405745ceeeb66369693a59023ad0b62cf22')
version('1.4.1', '3176b72f8a41ec053cc740a5398e7dc4')
version('1.4', 'cd47868e9f28e2c7b9d01f95aa0185ca')
depends_on("cmake@2.8:", type='build')
depends_on("expat")

View File

@ -20,13 +20,13 @@ class VotcaXtp(CMakePackage):
git = "https://github.com/votca/xtp.git"
version('develop', branch='master')
version('1.5', sha256='b40b6d19e13f0650e84b8beebe86ce5c09071624f18d66df826f9d8584b4d3c8')
version('1.4.1', '31a2dbd8bd48bf337bc88b20ab312050')
depends_on("cmake@2.8:", type='build')
depends_on("votca-tools@develop", when='@develop')
depends_on("votca-tools@1.4:1.4.999", when='@1.4:1.4.999')
depends_on("votca-csg@develop", when='@develop')
depends_on("votca-csg@1.4:1.4.999", when='@1.4:1.4.999')
for v in ["1.4.1", "1.5", "develop"]:
depends_on('votca-tools@%s' % v, when="@%s" % v)
depends_on('votca-csg@%s' % v, when="@%s" % v)
depends_on("votca-ctp@develop", when='@develop')
depends_on("libxc", when='@1.5:')
depends_on("ceres-solver", when='@1.5:')