summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorscheibelp <scheibel1@llnl.gov>2017-05-08 11:22:27 -0700
committerGitHub <noreply@github.com>2017-05-08 11:22:27 -0700
commit16aa8faf45aba9d6aae0f11b4e5e6fb4e8a954b3 (patch)
tree9e55207da6ed7a15056cfbf0b4b7989a6a801ede
parent85b0ebe83644d4d223f6a580b51a015de4b76ac7 (diff)
parent19511a78b858c2e591263599b4f32663df1a6563 (diff)
downloadspack-16aa8faf45aba9d6aae0f11b4e5e6fb4e8a954b3.tar.gz
spack-16aa8faf45aba9d6aae0f11b4e5e6fb4e8a954b3.tar.bz2
spack-16aa8faf45aba9d6aae0f11b4e5e6fb4e8a954b3.tar.xz
spack-16aa8faf45aba9d6aae0f11b4e5e6fb4e8a954b3.zip
Merge pull request #4145 from scheibelp/features/temporary-no-python-for-libxcb
Remove python dependency for libxcb and xcbproto
-rw-r--r--var/spack/repos/builtin/packages/libxcb/package.py3
-rw-r--r--var/spack/repos/builtin/packages/xcb-proto/package.py3
2 files changed, 4 insertions, 2 deletions
diff --git a/var/spack/repos/builtin/packages/libxcb/package.py b/var/spack/repos/builtin/packages/libxcb/package.py
index 0e4d00da97..3c77e045b7 100644
--- a/var/spack/repos/builtin/packages/libxcb/package.py
+++ b/var/spack/repos/builtin/packages/libxcb/package.py
@@ -43,7 +43,8 @@ class Libxcb(AutotoolsPackage):
depends_on('libxdmcp')
depends_on('xcb-proto', type='build')
- depends_on('python@2:2.8', type='build')
+ # TODO: uncomment once build deps can be resolved separately
+ # depends_on('python@2:2.8', type='build')
depends_on('pkg-config@0.9.0:', type='build')
depends_on('util-macros', type='build')
diff --git a/var/spack/repos/builtin/packages/xcb-proto/package.py b/var/spack/repos/builtin/packages/xcb-proto/package.py
index 546375c7fc..11e99c1d28 100644
--- a/var/spack/repos/builtin/packages/xcb-proto/package.py
+++ b/var/spack/repos/builtin/packages/xcb-proto/package.py
@@ -35,6 +35,7 @@ class XcbProto(AutotoolsPackage):
version('1.12', '5ee1ec124ea8d56bd9e83b8e9e0b84c4')
version('1.11', 'c8c6cb72c84f58270f4db1f39607f66a')
- extends('python')
+ # TODO: uncomment once build deps can be resolved separately
+ # extends('python')
patch('xcb-proto-1.12-schema-1.patch', when='@1.12')