diff options
author | haralmha <47558670+haralmha@users.noreply.github.com> | 2021-10-01 17:24:17 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-01 17:24:17 +0200 |
commit | 9c8041b8e4630d854dc4489192ac0e8aa02b3fa1 (patch) | |
tree | 0e1ed56cb4dcd543a670bbaecc78476e58f2d7b0 | |
parent | eff5bd4005e3e6de657a074c1d145659157e857b (diff) | |
download | spack-9c8041b8e4630d854dc4489192ac0e8aa02b3fa1.tar.gz spack-9c8041b8e4630d854dc4489192ac0e8aa02b3fa1.tar.bz2 spack-9c8041b8e4630d854dc4489192ac0e8aa02b3fa1.tar.xz spack-9c8041b8e4630d854dc4489192ac0e8aa02b3fa1.zip |
hoppet: add new package (#26297)
Co-authored-by: Harald Minde Hansen <hahansen@office.dyndns.cern.ch>
-rw-r--r-- | var/spack/repos/builtin/packages/hoppet/package.py | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/hoppet/package.py b/var/spack/repos/builtin/packages/hoppet/package.py new file mode 100644 index 0000000000..c166690860 --- /dev/null +++ b/var/spack/repos/builtin/packages/hoppet/package.py @@ -0,0 +1,19 @@ +# Copyright 2013-2021 Lawrence Livermore National Security, LLC and other +# Spack Project Developers. See the top-level COPYRIGHT file for details. +# +# SPDX-License-Identifier: (Apache-2.0 OR MIT) + +from spack import * + + +class Hoppet(AutotoolsPackage): + """A Fortran 95 package for carrying out QCD DGLAP evolution and other + common manipulations of parton distribution functions (PDFs).""" + + homepage = "https://hoppet.hepforge.org/" + url = "https://github.com/gavinsalam/hoppet/archive/refs/tags/hoppet-1.2.0.tar.gz" + + tags = ['heps'] + maintainers = ['haralmha'] + + version('1.2.0', sha256='6e00eb56a4f922d03dfceba7b389a3aaf51f277afa46d7b634d661e0797e8898') |