
* Update URL parsing regexes and tests * Get rid of no longer used README * Merge py-udunits and py-cf-units * netcdf -> netcdf-c * setup_environment -> setup_*_environment * Fix doc tests * Few last minute fixes * Simplify prefix removal copypasta
31 lines
1.2 KiB
Python
31 lines
1.2 KiB
Python
# Copyright 2013-2019 Lawrence Livermore National Security, LLC and other
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
|
#
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
from spack import *
|
|
import os
|
|
|
|
|
|
class Hub(Package):
|
|
"""The github git wrapper"""
|
|
|
|
homepage = "https://github.com/github/hub"
|
|
url = "https://github.com/github/hub/archive/v2.2.2.tar.gz"
|
|
git = "https://github.com/github/hub.git"
|
|
|
|
version('master', branch='master')
|
|
version('2.2.2', sha256='610572ee903aea1fa8622c16ab7ddef2bd1bfec9f4854447ab8e0fbdbe6a0cae')
|
|
version('2.2.1', sha256='9350aba6a8e3da9d26b7258a4020bf84491af69595f7484f922d75fc8b86dc10')
|
|
version('2.2.0', sha256='2da1351197eb5696c207f22c69a5422af052d74277b73d0b8661efb9ec1d0eb1')
|
|
version('1.12.4', sha256='b7fe404d7dc5f60554f088bec12de5e80229331430ea0ced46d5bf89ecae5117')
|
|
|
|
extends("go")
|
|
|
|
def install(self, spec, prefix):
|
|
env = os.environ
|
|
env['GOPATH'] = self.stage.source_path + ':' + env['GOPATH']
|
|
bash = which('bash')
|
|
bash(os.path.join('script', 'build'), '-o', os.path.join(prefix, 'bin',
|
|
'hub'))
|