summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/restic/package.py
diff options
context:
space:
mode:
Diffstat (limited to 'var/spack/repos/builtin/packages/restic/package.py')
-rw-r--r--var/spack/repos/builtin/packages/restic/package.py14
1 files changed, 7 insertions, 7 deletions
diff --git a/var/spack/repos/builtin/packages/restic/package.py b/var/spack/repos/builtin/packages/restic/package.py
index abcf63e5e8..bed85e9f32 100644
--- a/var/spack/repos/builtin/packages/restic/package.py
+++ b/var/spack/repos/builtin/packages/restic/package.py
@@ -10,19 +10,19 @@ class Restic(Package):
"""Fast, secure, efficient backup program."""
homepage = "https://restic.net"
- url = "https://github.com/restic/restic/releases/download/v0.12.1/restic-0.12.1.tar.gz"
+ url = "https://github.com/restic/restic/releases/download/v0.12.1/restic-0.12.1.tar.gz"
- maintainers = ['alecbcs']
+ maintainers = ["alecbcs"]
- version('0.12.1', sha256='a9c88d5288ce04a6cc78afcda7590d3124966dab3daa9908de9b3e492e2925fb')
+ version("0.12.1", sha256="a9c88d5288ce04a6cc78afcda7590d3124966dab3daa9908de9b3e492e2925fb")
- depends_on("go", type='build')
+ depends_on("go", type="build")
def setup_build_environment(self, env):
# Point GOPATH at the top of the staging dir for the build step.
- env.prepend_path('GOPATH', self.stage.path)
+ env.prepend_path("GOPATH", self.stage.path)
def install(self, spec, prefix):
- go('run', 'build.go')
+ go("run", "build.go")
mkdirp(prefix.bin)
- install('restic', prefix.bin)
+ install("restic", prefix.bin)