summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorGeorge Hartzell <hartzell@alerce.com>2016-07-25 18:12:22 -0400
committerGeorge Hartzell <hartzell@alerce.com>2016-08-02 11:11:05 -0400
commitbf467c5df374092d231ddb752c33943dfaa4d09d (patch)
tree8e44f56989263382e4408772f9c6036e59cf7da6 /var
parent6c3623422fe3d1354f14d67c54a32070e2df2d58 (diff)
downloadspack-bf467c5df374092d231ddb752c33943dfaa4d09d.tar.gz
spack-bf467c5df374092d231ddb752c33943dfaa4d09d.tar.bz2
spack-bf467c5df374092d231ddb752c33943dfaa4d09d.tar.xz
spack-bf467c5df374092d231ddb752c33943dfaa4d09d.zip
Remove override of `unpack(self)`
I cargo culted that from my *nextflow* package. I [thought I] needed it to work around Spack trying to use tar to unpack something that was neither a tar ball nor unpackable. This package works fine without it. In retrospect, the error that I was seeing in the *nextflow* package was probably this problem #1308.
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/ack/package.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/var/spack/repos/builtin/packages/ack/package.py b/var/spack/repos/builtin/packages/ack/package.py
index 41100a5e66..af7d206c29 100644
--- a/var/spack/repos/builtin/packages/ack/package.py
+++ b/var/spack/repos/builtin/packages/ack/package.py
@@ -43,9 +43,6 @@ class Ack(Package):
# should:
# depends_on('perl')
- def unpack(self):
- pass
-
def install(self, spec, prefix):
mkdirp(prefix.bin)
ack = 'ack-{0}-single-file'.format(self.version)