Merge pull request #20 in SCALE/spack from openss to develop

# By Matthew LeGendre (2) and Todd Gamblin (1)
# Via Todd Gamblin
* commit 'd7a3c7e555bfd93fbf93ec55608d7fc6aa8052f8':
  Fix up Matt's openss packages.
  Add sqlite to spack
  Add libmonitor to spack.  Still needs svn support for checkout
This commit is contained in:
George Todd Gamblin
2014-08-04 07:51:12 -07:00
3 changed files with 83 additions and 4 deletions

View File

@@ -37,15 +37,17 @@ def info(parser, args):
package = spack.db.get(args.name)
print "Package: ", package.name
print "Homepage: ", package.homepage
print "Download: ", package.url
print
print "Safe versions: "
if package.versions:
colify(reversed(sorted(package.versions)), indent=4)
if not package.versions:
print("None.")
else:
print "None. Use spack versions %s to get a list of downloadable versions." % package.name
maxlen = max(len(str(v)) for v in package.versions)
fmt = "%%-%ss" % maxlen
for v in reversed(sorted(package.versions)):
print " " + (fmt % v) + " " + package.url_for_version(v)
print
print "Dependencies:"