summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam J. Stewart <ajstewart426@gmail.com>2018-12-14 09:10:55 -0600
committerGitHub <noreply@github.com>2018-12-14 09:10:55 -0600
commit05f9c68c30c88080249b317d35fe47b898e12e15 (patch)
tree14e1a3e3a4c46b06efe1411a8a8a765b71e14fa6
parent76bfdd65fc8a561f539f03862dde06418b1c72cb (diff)
downloadspack-05f9c68c30c88080249b317d35fe47b898e12e15.tar.gz
spack-05f9c68c30c88080249b317d35fe47b898e12e15.tar.bz2
spack-05f9c68c30c88080249b317d35fe47b898e12e15.tar.xz
spack-05f9c68c30c88080249b317d35fe47b898e12e15.zip
Add latest version of meson (#10104)
-rw-r--r--var/spack/repos/builtin/packages/meson/package.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/var/spack/repos/builtin/packages/meson/package.py b/var/spack/repos/builtin/packages/meson/package.py
index 7ede3c996d..e6fbc122a5 100644
--- a/var/spack/repos/builtin/packages/meson/package.py
+++ b/var/spack/repos/builtin/packages/meson/package.py
@@ -12,13 +12,15 @@ class Meson(PythonPackage):
extremely fast, and as user friendly as possible."""
homepage = "http://mesonbuild.com/"
- url = "https://github.com/mesonbuild/meson/archive/0.42.0.tar.gz"
+ url = "https://github.com/mesonbuild/meson/archive/0.49.0.tar.gz"
+ version('0.49.0', sha256='11bc959e7173e714e4a4e85dd2bd9d0149b0a51c8ba82d5f44cc63735f603c74')
version('0.42.0', '9e26bf154ca439b78b1b9366c8a89437')
version('0.41.2', 'aa9c69ced965e47f5c75a9257ee91ce3')
version('0.41.1', 'c6d285b35cfd7acc8517124d417efbdc')
variant('ninjabuild', default=True)
- depends_on('python@3:', type=('build', 'run'))
+ depends_on('python@3:', type=('build', 'run'))
+ depends_on('py-setuptools', type='build')
depends_on('ninja', when='+ninjabuild', type=('build', 'run'))