Merge branch 'master' into spindle
This commit is contained in:
		@@ -23,6 +23,7 @@
 | 
			
		||||
# Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
 | 
			
		||||
##############################################################################
 | 
			
		||||
import os
 | 
			
		||||
import shutil
 | 
			
		||||
import argparse
 | 
			
		||||
 | 
			
		||||
import spack.packages as packages
 | 
			
		||||
@@ -78,7 +79,7 @@ def mirror(parser, args):
 | 
			
		||||
                final_dst = new_path(pkg_path, basename)
 | 
			
		||||
 | 
			
		||||
                os.chdir(working_dir)
 | 
			
		||||
                os.rename(stage.archive_file, final_dst)
 | 
			
		||||
                shutil.move(stage.archive_file, final_dst)
 | 
			
		||||
                tty.msg("Added %s to mirror" % final_dst)
 | 
			
		||||
 | 
			
		||||
            finally:
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										38
									
								
								lib/spack/spack/packages/pmgr_collective.py
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										38
									
								
								lib/spack/spack/packages/pmgr_collective.py
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,38 @@
 | 
			
		||||
##############################################################################
 | 
			
		||||
# Copyright (c) 2013, Lawrence Livermore National Security, LLC.
 | 
			
		||||
# Produced at the Lawrence Livermore National Laboratory.
 | 
			
		||||
#
 | 
			
		||||
# This file is part of Spack.
 | 
			
		||||
# Written by Todd Gamblin, tgamblin@llnl.gov, All rights reserved.
 | 
			
		||||
# LLNL-CODE-647188
 | 
			
		||||
#
 | 
			
		||||
# For details, see https://scalability-llnl.github.io/spack
 | 
			
		||||
# Please also see the LICENSE file for our notice and the LGPL.
 | 
			
		||||
#
 | 
			
		||||
# This program is free software; you can redistribute it and/or modify
 | 
			
		||||
# it under the terms of the GNU General Public License (as published by
 | 
			
		||||
# the Free Software Foundation) version 2.1 dated February 1999.
 | 
			
		||||
#
 | 
			
		||||
# This program is distributed in the hope that it will be useful, but
 | 
			
		||||
# WITHOUT ANY WARRANTY; without even the IMPLIED WARRANTY OF
 | 
			
		||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the terms and
 | 
			
		||||
# conditions of the GNU General Public License for more details.
 | 
			
		||||
#
 | 
			
		||||
# You should have received a copy of the GNU Lesser General Public License
 | 
			
		||||
# along with this program; if not, write to the Free Software Foundation,
 | 
			
		||||
# Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
 | 
			
		||||
##############################################################################
 | 
			
		||||
from spack import *
 | 
			
		||||
 | 
			
		||||
class PmgrCollective(Package):
 | 
			
		||||
    """PMGR_COLLECTIVE provides a scalable network for bootstrapping
 | 
			
		||||
       MPI jobs."""
 | 
			
		||||
    homepage = "http://www.sourceforge.net/projects/pmgrcollective"
 | 
			
		||||
    url      = "http://downloads.sourceforge.net/project/pmgrcollective/pmgrcollective/PMGR_COLLECTIVE-1.0/pmgr_collective-1.0.tgz"
 | 
			
		||||
#    url      = "http://downloads.sourceforge.net/project/pmgrcollective/pmgrcollective/PMGR_COLLECTIVE-1.0/pmgr_collective-1.0.tgz?r=http%3A%2F%2Fsourceforge.net%2Fprojects%2Fpmgrcollective%2F%3Fsource%3Ddlp&ts=1394747864&use_mirror=iweb
 | 
			
		||||
 | 
			
		||||
    versions = { '1.0' : '0384d008774274cc3fc7b4d810dfd07e' }
 | 
			
		||||
 | 
			
		||||
    def install(self, spec, prefix):
 | 
			
		||||
        make('PREFIX="' + prefix + '"')
 | 
			
		||||
        make('PREFIX="' + prefix + '"', "install")
 | 
			
		||||
@@ -36,27 +36,27 @@ def msg(message, *args):
 | 
			
		||||
 | 
			
		||||
def info(message, *args, **kwargs):
 | 
			
		||||
    format = kwargs.get('format', '*b')
 | 
			
		||||
    cprint("@%s{==>} %s" % (format, cescape(message)))
 | 
			
		||||
    cprint("@%s{==>} %s" % (format, cescape(str(message))))
 | 
			
		||||
    for arg in args:
 | 
			
		||||
        print indent + str(arg)
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
def verbose(message, *args):
 | 
			
		||||
    if spack.verbose:
 | 
			
		||||
        info(message, *args, format='c')
 | 
			
		||||
        info(str(message), *args, format='c')
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
def debug(*args):
 | 
			
		||||
    if spack.debug:
 | 
			
		||||
        info("Debug: " + message, *args, format='*g')
 | 
			
		||||
        info("Debug: " + str(message), *args, format='*g')
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
def error(message, *args):
 | 
			
		||||
    info("Error: " + message, *args, format='*r')
 | 
			
		||||
    info("Error: " + str(message), *args, format='*r')
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
def warn(message, *args):
 | 
			
		||||
    info("Warning: " + message, *args, format='*Y')
 | 
			
		||||
    info("Warning: " + str(message), *args, format='*Y')
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
def die(message, *args):
 | 
			
		||||
 
 | 
			
		||||
@@ -102,6 +102,9 @@ def parse_version_string_with_indices(path):
 | 
			
		||||
        # e.g. https://github.com/petdance/ack/tarball/1.93_02
 | 
			
		||||
        (r'github.com/.+/(?:zip|tar)ball/v?((\d+\.)+\d+_(\d+))$', path),
 | 
			
		||||
 | 
			
		||||
        # e.g. https://github.com/hpc/lwgrp/archive/v1.0.1.tar.gz
 | 
			
		||||
        (r'github.com/[^/]+/[^/]+/archive/v?(\d+(?:\.\d+)*)\.tar\.gz$', path),
 | 
			
		||||
 | 
			
		||||
        # e.g. https://github.com/erlang/otp/tarball/OTP_R15B01 (erlang style)
 | 
			
		||||
        (r'[-_](R\d+[AB]\d*(-\d+)?)', path),
 | 
			
		||||
 | 
			
		||||
@@ -169,6 +172,7 @@ def parse_name(path, ver=None):
 | 
			
		||||
    ntypes = (r'/sourceforge/([^/]+)/',
 | 
			
		||||
              r'/([^/]+)/(tarball|zipball)/',
 | 
			
		||||
              r'/([^/]+)[_.-](bin|dist|stable|src|sources)[_.-]%s' % ver,
 | 
			
		||||
              r'github.com/[^/]+/([^/]+)/archive',
 | 
			
		||||
              r'/([^/]+)[_.-]v?%s' % ver,
 | 
			
		||||
              r'/([^/]+)%s' % ver,
 | 
			
		||||
              r'^([^/]+)[_.-]v?%s' % ver,
 | 
			
		||||
 
 | 
			
		||||
@@ -39,6 +39,9 @@ def allowed_archive(path):
 | 
			
		||||
 | 
			
		||||
def decompressor_for(path):
 | 
			
		||||
    """Get the appropriate decompressor for a path."""
 | 
			
		||||
    if path.endswith(".zip"):
 | 
			
		||||
        unzip = which('unzip', required=True)
 | 
			
		||||
        return unzip
 | 
			
		||||
    tar = which('tar', required=True)
 | 
			
		||||
    tar.add_default_arg('-xf')
 | 
			
		||||
    return tar
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user