summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJannek Squar <squar@informatik.uni-hamburg.de>2018-08-28 22:35:30 +0200
committerscheibelp <scheibel1@llnl.gov>2018-08-28 16:35:30 -0400
commitb78ccb74d8711995226388e7b033efe499469c91 (patch)
tree0d3471bbbd9fe424a0573bb10090c966845cac07
parentbe42b8df19f21d733c3fff1088a81685c19abd8a (diff)
downloadspack-b78ccb74d8711995226388e7b033efe499469c91.tar.gz
spack-b78ccb74d8711995226388e7b033efe499469c91.tar.bz2
spack-b78ccb74d8711995226388e7b033efe499469c91.tar.xz
spack-b78ccb74d8711995226388e7b033efe499469c91.zip
atk package: hotfix #9099 (#9102)
Adds explicit python3 dependency for meson
-rw-r--r--var/spack/repos/builtin/packages/atk/package.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/atk/package.py b/var/spack/repos/builtin/packages/atk/package.py
index 64140d99a7..9e641f65d0 100644
--- a/var/spack/repos/builtin/packages/atk/package.py
+++ b/var/spack/repos/builtin/packages/atk/package.py
@@ -41,6 +41,12 @@ class Atk(Package):
depends_on('meson', type='build', when='@2.28.0:')
depends_on('glib')
+ # FIXME: this constraint exists because of the meson dependency.
+ # It should not be required to specify it here, but "spack spec atk" will
+ # fail without it.
+ # See: #2632
+ depends_on('python@3:')
+ depends_on('gettext')
depends_on('pkgconfig', type='build')
depends_on('gobject-introspection')