summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorTodd Gamblin <tgamblin@llnl.gov>2014-03-13 14:50:38 -0700
committerGregory L. Lee <lee218@llnl.gov>2014-03-14 08:42:07 -0700
commit40dda596a016c8d3bd570e1f0f28bc4a0635ca3e (patch)
treec844a3010bc0724c496553925c7e9b8a20efb9ac /lib
parentab8e79fc2d183dd434dc05d2522166645f1fbb36 (diff)
downloadspack-40dda596a016c8d3bd570e1f0f28bc4a0635ca3e.tar.gz
spack-40dda596a016c8d3bd570e1f0f28bc4a0635ca3e.tar.bz2
spack-40dda596a016c8d3bd570e1f0f28bc4a0635ca3e.tar.xz
spack-40dda596a016c8d3bd570e1f0f28bc4a0635ca3e.zip
Support github URLs
Diffstat (limited to 'lib')
-rw-r--r--lib/spack/spack/url.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/spack/spack/url.py b/lib/spack/spack/url.py
index 0bc7ff53b4..a4c32eb37b 100644
--- a/lib/spack/spack/url.py
+++ b/lib/spack/spack/url.py
@@ -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,