Merge pull request #424 from adamjstewart/features/cmake
Add url for cmake, simplify url_for_version
This commit is contained in:
commit
5d1a639afd
1 changed files with 3 additions and 7 deletions
|
@ -23,13 +23,14 @@
|
|||
# Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
##############################################################################
|
||||
from spack import *
|
||||
import llnl.util.tty as tty
|
||||
|
||||
class Cmake(Package):
|
||||
"""A cross-platform, open-source build system. CMake is a family of
|
||||
tools designed to build, test and package software."""
|
||||
homepage = 'https://www.cmake.org'
|
||||
url = 'https://cmake.org/files/v3.4/cmake-3.4.3.tar.gz'
|
||||
|
||||
version('3.4.3', '4cb3ff35b2472aae70f542116d616e63')
|
||||
version('3.4.0', 'cd3034e0a44256a0917e254167217fc8')
|
||||
version('3.3.1', '52638576f4e1e621fed6c3410d3a1b12')
|
||||
version('3.0.2', 'db4c687a31444a929d2fdc36c4dfb95f')
|
||||
|
@ -40,12 +41,7 @@ class Cmake(Package):
|
|||
|
||||
def url_for_version(self, version):
|
||||
"""Handle CMake's version-based custom URLs."""
|
||||
parts = [str(p) for p in Version(version)]
|
||||
if len(parts) < 3:
|
||||
tty.error("Version '%s'does not match CMake's version naming scheme (z.y.x)." % version)
|
||||
version_short = ".".join(parts[:2])
|
||||
version_full = ".".join(parts)
|
||||
return "http://www.cmake.org/files/v%s/cmake-%s.tar.gz" % (version_short,version_full)
|
||||
return 'https://cmake.org/files/v%s/cmake-%s.tar.gz' % (version.up_to(2), version)
|
||||
|
||||
|
||||
def install(self, spec, prefix):
|
||||
|
|
Loading…
Reference in a new issue