lammps: fix checksum (#5342)
This commit is contained in:
parent
832791a2bb
commit
efcd8e6f7f
1 changed files with 7 additions and 3 deletions
|
@ -28,11 +28,15 @@
|
||||||
|
|
||||||
class Lammps(CMakePackage):
|
class Lammps(CMakePackage):
|
||||||
"""LAMMPS stands for Large-scale Atomic/Molecular Massively
|
"""LAMMPS stands for Large-scale Atomic/Molecular Massively
|
||||||
Parallel Simulator."""
|
Parallel Simulator. This package uses patch releases, not
|
||||||
|
stable release.
|
||||||
|
See https://github.com/LLNL/spack/pull/5342 for a detailed
|
||||||
|
discussion.
|
||||||
|
"""
|
||||||
homepage = "http://lammps.sandia.gov/"
|
homepage = "http://lammps.sandia.gov/"
|
||||||
url = "https://github.com/lammps/lammps/archive/stable_01Sep2017.tar.gz"
|
url = "https://github.com/lammps/lammps/archive/patch_1Sep2017.tar.gz"
|
||||||
|
|
||||||
version('20170901', 'c498680052f80c6ddb880052ad369af0')
|
version('20170901', '767e7f07289663f033474dfe974974e7')
|
||||||
|
|
||||||
def url_for_version(self, version):
|
def url_for_version(self, version):
|
||||||
vdate = dt.datetime.strptime(str(version), "%Y%m%d")
|
vdate = dt.datetime.strptime(str(version), "%Y%m%d")
|
||||||
|
|
Loading…
Reference in a new issue