summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/dftd3-lib/package.py
diff options
context:
space:
mode:
authorTodd Gamblin <tgamblin@llnl.gov>2022-07-30 15:19:18 -0700
committerTodd Gamblin <tgamblin@llnl.gov>2022-07-31 13:29:20 -0700
commitf52f6e99dbf1131886a80112b8c79dfc414afb7c (patch)
tree05cb7d64b2395922f2f24683da49f472075be12c /var/spack/repos/builtin/packages/dftd3-lib/package.py
parent549ba1ed32372c67fc57271cde3797d58b7dec6e (diff)
downloadspack-f52f6e99dbf1131886a80112b8c79dfc414afb7c.tar.gz
spack-f52f6e99dbf1131886a80112b8c79dfc414afb7c.tar.bz2
spack-f52f6e99dbf1131886a80112b8c79dfc414afb7c.tar.xz
spack-f52f6e99dbf1131886a80112b8c79dfc414afb7c.zip
black: reformat entire repository with black
Diffstat (limited to 'var/spack/repos/builtin/packages/dftd3-lib/package.py')
-rw-r--r--var/spack/repos/builtin/packages/dftd3-lib/package.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/var/spack/repos/builtin/packages/dftd3-lib/package.py b/var/spack/repos/builtin/packages/dftd3-lib/package.py
index 7b0d69c3d3..a7b6acc79a 100644
--- a/var/spack/repos/builtin/packages/dftd3-lib/package.py
+++ b/var/spack/repos/builtin/packages/dftd3-lib/package.py
@@ -11,9 +11,9 @@ class Dftd3Lib(MakefilePackage):
Hartree-Fock and semi-empirical quantum chemical methods"""
homepage = "https://www.chemie.uni-bonn.de/pctc/mulliken-center/software/dft-d3/dft-d3"
- url = "https://github.com/dftbplus/dftd3-lib/archive/0.9.2.tar.gz"
+ url = "https://github.com/dftbplus/dftd3-lib/archive/0.9.2.tar.gz"
- version('0.9.2', sha256='4178f3cf2f3e7e982a7084ec66bac92b4fdf164537d9fc0ada840a11b784f0e0')
+ version("0.9.2", sha256="4178f3cf2f3e7e982a7084ec66bac92b4fdf164537d9fc0ada840a11b784f0e0")
# This fixes a concurrency bug, where make would try to start compiling
# the dftd3 target before the lib target ended.
@@ -21,7 +21,7 @@ class Dftd3Lib(MakefilePackage):
parallel = False
def edit(self, spec, prefix):
- makefile = FileFilter('make.arch')
+ makefile = FileFilter("make.arch")
makefile.filter("FC = gfortran", "")
makefile.filter("LN = gfortran", "LN = $(FC)")