Merge remote-tracking branch 'github/pull/99' into develop
Conflicts: var/spack/repos/builtin/packages/cmake/package.py
This commit is contained in:
commit
f38851b73d
@ -23,25 +23,31 @@
|
|||||||
# Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
# Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
##############################################################################
|
##############################################################################
|
||||||
from spack import *
|
from spack import *
|
||||||
|
import llnl.util.tty as tty
|
||||||
|
|
||||||
class Cmake(Package):
|
class Cmake(Package):
|
||||||
"""A cross-platform, open-source build system. CMake is a family of
|
"""A cross-platform, open-source build system. CMake is a family of
|
||||||
tools designed to build, test and package software."""
|
tools designed to build, test and package software."""
|
||||||
homepage = 'https://www.cmake.org'
|
homepage = 'https://www.cmake.org'
|
||||||
|
|
||||||
version('2.8.10.2', '097278785da7182ec0aea8769d06860c',
|
version('3.4.0', 'cd3034e0a44256a0917e254167217fc8')
|
||||||
url = 'http://www.cmake.org/files/v2.8/cmake-2.8.10.2.tar.gz')
|
version('3.3.1', '52638576f4e1e621fed6c3410d3a1b12')
|
||||||
|
version('3.0.2', 'db4c687a31444a929d2fdc36c4dfb95f')
|
||||||
version('3.0.2', 'db4c687a31444a929d2fdc36c4dfb95f',
|
version('2.8.10.2', '097278785da7182ec0aea8769d06860c')
|
||||||
url = 'http://www.cmake.org/files/v3.0/cmake-3.0.2.tar.gz')
|
|
||||||
|
|
||||||
version('3.4.0', 'cd3034e0a44256a0917e254167217fc8',
|
|
||||||
url = 'http://cmake.org/files/v3.4/cmake-3.4.0.tar.gz')
|
|
||||||
|
|
||||||
variant('ncurses', default=True, description='Enables the build of the ncurses gui')
|
variant('ncurses', default=True, description='Enables the build of the ncurses gui')
|
||||||
|
|
||||||
depends_on('ncurses', when='+ncurses')
|
depends_on('ncurses', when='+ncurses')
|
||||||
|
|
||||||
|
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)
|
||||||
|
|
||||||
|
|
||||||
def install(self, spec, prefix):
|
def install(self, spec, prefix):
|
||||||
configure('--prefix=' + prefix,
|
configure('--prefix=' + prefix,
|
||||||
'--parallel=' + str(make_jobs),
|
'--parallel=' + str(make_jobs),
|
||||||
|
Loading…
Reference in New Issue
Block a user