Skip to content

Commit

Permalink
Merge pull request #1452 from boegel/fix_sparsehash_name
Browse files Browse the repository at this point in the history
fix name of sparsehash easyconfigs
  • Loading branch information
boegel committed Mar 6, 2015
2 parents f0d4a80 + dec0b64 commit eb05dd7
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
Expand Up @@ -27,7 +27,7 @@ sources = [SOURCELOWER_TAR_GZ]
source_urls = ['http://www.bcgsc.ca/downloads/abyss/']

dependencies = [
('google-sparsehash', '2.0.2'),
('sparsehash', '2.0.2'),
('Boost', '1.49.0', versionsuffix),
]

Expand Down
@@ -1,6 +1,6 @@
easyblock = 'ConfigureMake'

name = 'google-sparsehash'
name = 'sparsehash'
version = '2.0.2'

homepage = 'http://code.google.com/p/google-sparsehash/'
Expand All @@ -10,7 +10,7 @@ description = """An extremely memory-efficient hash_map implementation. 2 bits/e
toolchain = {'name': 'goalf', 'version': '1.1.0-no-OFED'}
toolchainopts = {'optarch': True}

sources = ['%s-%s.tar.gz' % (name.split('-')[1].lower(), version)]
sources = [SOURCELOWER_TAR_GZ]
source_urls = ['http://sparsehash.googlecode.com/files']

runtest = "check"
Expand Down
@@ -1,15 +1,16 @@
easyblock = 'ConfigureMake'

name = 'google-sparsehash'
name = 'sparsehash'
version = '2.0.2'

homepage = 'http://code.google.com/p/google-sparsehash/'
description = """An extremely memory-efficient hash_map implementation. 2 bits/entry overhead! The SparseHash library
contains several hash-map implementations, including implementations that optimize for space or speed."""

toolchain = {'name': 'goolf', 'version': '1.4.10'}
toolchainopts = {'optarch': True}

sources = ['%s-%s.tar.gz' % (name.split('-')[1].lower(), version)]
sources = [SOURCELOWER_TAR_GZ]
source_urls = ['http://sparsehash.googlecode.com/files']

runtest = "check"
Expand Down
@@ -1,6 +1,6 @@
easyblock = 'ConfigureMake'

name = 'google-sparsehash'
name = 'sparsehash'
version = '2.0.2'

homepage = 'http://code.google.com/p/google-sparsehash/'
Expand All @@ -10,7 +10,7 @@ description = """An extremely memory-efficient hash_map implementation. 2 bits/e
toolchain = {'name': 'ictce', 'version': '4.0.6'}
toolchainopts = {'optarch': True}

sources = ['%s-%s.tar.gz' % (name.split('-')[1].lower(), version)]
sources = [SOURCELOWER_TAR_GZ]
source_urls = ['http://sparsehash.googlecode.com/files']

#runtest = "check" # 1/7 tests fails (hashtable_test), so disabling 'make check' for now
Expand Down
@@ -1,17 +1,16 @@
easyblock = 'ConfigureMake'

name = 'google-sparsehash'
name = 'sparsehash'
version = '2.0.2'

homepage = 'http://code.google.com/p/google-sparsehash/'
description = """An extremely memory-efficient hash_map implementation. 2 bits/entry overhead! The SparseHash library
contains several hash-map implementations, including implementations that optimize for space or speed."""


toolchain = {'name': 'ictce', 'version': '5.3.0'}
toolchainopts = {'optarch': True}

sources = ['%s-%s.tar.gz' % (name.split('-')[1].lower(), version)]
sources = [SOURCELOWER_TAR_GZ]
source_urls = ['http://sparsehash.googlecode.com/files']

#runtest = "check" # 1/7 tests fails (hashtable_test), so disabling 'make check' for now
Expand Down

0 comments on commit eb05dd7

Please sign in to comment.