Fix up versions to match new version format, minor formatting.

This commit is contained in:
Todd Gamblin 2014-08-03 12:30:08 -07:00
parent cabfc374eb
commit 782e45e5b1
5 changed files with 14 additions and 17 deletions

View File

@ -2,13 +2,13 @@
from spack import * from spack import *
class Dtcmp(Package): class Dtcmp(Package):
"""The Datatype Comparison Library provides comparison operations and parallel sort algorithms for MPI applications.""" """The Datatype Comparison Library provides comparison operations and
parallel sort algorithms for MPI applications."""
homepage = "https://github.com/hpc/dtcmp" homepage = "https://github.com/hpc/dtcmp"
url = "https://github.com/hpc/dtcmp/releases/download/v1.0.3/dtcmp-1.0.3.tar.gz" url = "https://github.com/hpc/dtcmp/releases/download/v1.0.3/dtcmp-1.0.3.tar.gz"
versions = { '1.0.3' : 'cdd8ccf71e8ff67de2558594a7fcd317' } version('1.0.3', 'cdd8ccf71e8ff67de2558594a7fcd317')
#version('1.0.3', 'cdd8ccf71e8ff67de2558594a7fcd317')
depends_on('mpi') depends_on('mpi')
depends_on('lwgrp') depends_on('lwgrp')

View File

@ -2,14 +2,13 @@
from spack import * from spack import *
class Fileutils(Package): class Fileutils(Package):
"""FileUtils provides a suite of MPI-based tools to manage large files and datasets on parallel file systems.""" """FileUtils provides a suite of MPI-based tools to manage large files
and datasets on parallel file systems."""
homepage = "https://github.com/hpc/fileutils" homepage = "https://github.com/hpc/fileutils"
url = "https://github.com/hpc/fileutils/releases/download/v0.0.1-alpha.4/fileutils-0.0.1-alpha.4.tar.gz" url = "https://github.com/hpc/fileutils/releases/download/v0.0.1-alpha.4/fileutils-0.0.1-alpha.4.tar.gz"
versions = { '0.0.1-alpha.4' : 'a01dbe5a2e03f3c70c7a98ec0a2554e1' } version('0.0.1-alpha.4', 'a01dbe5a2e03f3c70c7a98ec0a2554e1')
force_url = True
depends_on('mpi') depends_on('mpi')
depends_on('libcircle') depends_on('libcircle')

View File

@ -1,7 +1,8 @@
from spack import * from spack import *
class Libarchive(Package): class Libarchive(Package):
"""libarchive: C library and command-line tools for reading and writing tar, cpio, zip, ISO, and other archive formats.""" """libarchive: C library and command-line tools for reading and
writing tar, cpio, zip, ISO, and other archive formats."""
homepage = "http://www.libarchive.org" homepage = "http://www.libarchive.org"
url = "http://www.libarchive.org/downloads/libarchive-3.1.2.tar.gz" url = "http://www.libarchive.org/downloads/libarchive-3.1.2.tar.gz"

View File

@ -2,17 +2,13 @@
from spack import * from spack import *
class Libcircle(Package): class Libcircle(Package):
"""libcircle provides an efficient distributed queue on a cluster, using self-stabilizing work stealing.""" """libcircle provides an efficient distributed queue on a cluster,
using self-stabilizing work stealing."""
homepage = "https://github.com/hpc/libcircle" homepage = "https://github.com/hpc/libcircle"
#url = "https://github.com/hpc/lwgrp/releases/download/v1.0.2/lwgrp-1.0.2.tar.gz"
url = "https://github.com/adammoody/libcircle/releases/download/v0.2.1-rc.1/libcircle-0.2.1-rc.1.tar.gz" url = "https://github.com/adammoody/libcircle/releases/download/v0.2.1-rc.1/libcircle-0.2.1-rc.1.tar.gz"
versions = { '0.2.1-rc.1' : 'a10a14e76ac2ad7357a4b21b794e8e4e' } version('0.2.1-rc.1', 'a10a14e76ac2ad7357a4b21b794e8e4e')
# need this hack because the URL plus version string below confuses URL expansion
# at url_for_version() in lib/spack/package.py
force_url = True
depends_on('mpi') depends_on('mpi')

View File

@ -2,12 +2,13 @@
from spack import * from spack import *
class Lwgrp(Package): class Lwgrp(Package):
"""Thie light-weight group library provides process group representations using O(log N) space and time.""" """Thie light-weight group library provides process group
representations using O(log N) space and time."""
homepage = "https://github.com/hpc/lwgrp" homepage = "https://github.com/hpc/lwgrp"
url = "https://github.com/hpc/lwgrp/releases/download/v1.0.2/lwgrp-1.0.2.tar.gz" url = "https://github.com/hpc/lwgrp/releases/download/v1.0.2/lwgrp-1.0.2.tar.gz"
versions = { '1.0.2' : 'ab7ba3bdd8534a651da5076f47f27d8a' } version('1.0.2', 'ab7ba3bdd8534a651da5076f47f27d8a')
depends_on('mpi') depends_on('mpi')