summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorAudrey Thoma <las_thoma15@iastate.edu>2017-10-09 18:07:13 -0500
committerChristoph Junghans <christoph.junghans@gmail.com>2017-10-09 17:07:13 -0600
commita8cd92a2e48c99e1bbf5fd7a45543199cfd03e8f (patch)
tree4d191ff82b2d7294db8bb7cf3308395b55f9adad /var
parent196b82f2c77af765eb2328cc00b16d0532629fa0 (diff)
downloadspack-a8cd92a2e48c99e1bbf5fd7a45543199cfd03e8f.tar.gz
spack-a8cd92a2e48c99e1bbf5fd7a45543199cfd03e8f.tar.bz2
spack-a8cd92a2e48c99e1bbf5fd7a45543199cfd03e8f.tar.xz
spack-a8cd92a2e48c99e1bbf5fd7a45543199cfd03e8f.zip
switching downloads to git (#5659)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/fastqvalidator/package.py13
1 files changed, 6 insertions, 7 deletions
diff --git a/var/spack/repos/builtin/packages/fastqvalidator/package.py b/var/spack/repos/builtin/packages/fastqvalidator/package.py
index 425800e4ef..7756f34150 100644
--- a/var/spack/repos/builtin/packages/fastqvalidator/package.py
+++ b/var/spack/repos/builtin/packages/fastqvalidator/package.py
@@ -31,26 +31,25 @@ class Fastqvalidator(MakefilePackage):
homepage = "http://genome.sph.umich.edu/wiki/FastQValidator"
url = "https://github.com/statgen/fastQValidator/archive/v0.1.1a.tar.gz"
- version('0.1.1a', '5c5de69527020b72b64f32987409bd12')
-
- conflicts('%gcc@7:', when='@0.1.1a') # statgen/fastQValidator#14
+ version('2017-01-10', commit='6d619a34749e9d33c34ef0d3e0e87324ca77f320',
+ git='https://github.com/statgen/fastQValidator.git')
resource(
name='libStatGen',
- url='https://github.com/statgen/libStatGen/archive/v1.0.14.tar.gz',
- sha256='70a504c5cc4838c6ac96cdd010644454615cc907df4e3794c999baf958fa734b',
+ git='https://github.com/statgen/libStatGen.git',
+ commit='9db9c23e176a6ce6f421a3c21ccadedca892ac0c'
)
@property
def build_targets(self):
return ['LIB_PATH_GENERAL={0}'.format(
- join_path(self.stage.source_path, 'libStatGen-1.0.14'))]
+ join_path(self.stage.source_path, 'libStatGen'))]
@property
def install_targets(self):
return [
'INSTALLDIR={0}'.format(self.prefix.bin),
'LIB_PATH_GENERAL={0}'.format(
- join_path(self.stage.source_path, 'libStatGen-1.0.14')),
+ join_path(self.stage.source_path, 'libStatGen')),
'install'
]