summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin.mock/packages/both-link-and-build-dep-a
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.mock/packages/both-link-and-build-dep-a
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.mock/packages/both-link-and-build-dep-a')
-rw-r--r--var/spack/repos/builtin.mock/packages/both-link-and-build-dep-a/package.py18
1 files changed, 9 insertions, 9 deletions
diff --git a/var/spack/repos/builtin.mock/packages/both-link-and-build-dep-a/package.py b/var/spack/repos/builtin.mock/packages/both-link-and-build-dep-a/package.py
index 9dded76188..bea121f6b9 100644
--- a/var/spack/repos/builtin.mock/packages/both-link-and-build-dep-a/package.py
+++ b/var/spack/repos/builtin.mock/packages/both-link-and-build-dep-a/package.py
@@ -8,17 +8,17 @@ from spack.package import *
class BothLinkAndBuildDepA(Package):
"""
- Structure where c occurs as a build dep down the line and as a direct
- link dep. Useful for testing situations where you copy the parent spec
- just with link deps, and you want to make sure b is not part of that.
- a <--build-- b <-link-- c
- a <--link--- c
+ Structure where c occurs as a build dep down the line and as a direct
+ link dep. Useful for testing situations where you copy the parent spec
+ just with link deps, and you want to make sure b is not part of that.
+ a <--build-- b <-link-- c
+ a <--link--- c
"""
homepage = "http://www.example.com"
- url = "http://www.example.com/1.0.tar.gz"
+ url = "http://www.example.com/1.0.tar.gz"
- version('1.0', '0123456789abcdef0123456789abcdef')
+ version("1.0", "0123456789abcdef0123456789abcdef")
- depends_on('both-link-and-build-dep-b', type='build')
- depends_on('both-link-and-build-dep-c', type='link')
+ depends_on("both-link-and-build-dep-b", type="build")
+ depends_on("both-link-and-build-dep-c", type="link")