diff options
author | Adam J. Stewart <ajstewart426@gmail.com> | 2018-12-17 19:27:58 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-12-17 19:27:58 -0600 |
commit | d4b5fc141c270b8db6e55945f6081ccb3dbb516a (patch) | |
tree | 167534669d9345d12c6769d67889c7241e1f34b7 /var | |
parent | a41571a1b65ca9d02859385d0c52f21706577165 (diff) | |
download | spack-d4b5fc141c270b8db6e55945f6081ccb3dbb516a.tar.gz spack-d4b5fc141c270b8db6e55945f6081ccb3dbb516a.tar.bz2 spack-d4b5fc141c270b8db6e55945f6081ccb3dbb516a.tar.xz spack-d4b5fc141c270b8db6e55945f6081ccb3dbb516a.zip |
Add latest version of libxkbcommon (#10134)
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/libxkbcommon/package.py | 21 |
1 files changed, 9 insertions, 12 deletions
diff --git a/var/spack/repos/builtin/packages/libxkbcommon/package.py b/var/spack/repos/builtin/packages/libxkbcommon/package.py index d864c4b786..10a34497e8 100644 --- a/var/spack/repos/builtin/packages/libxkbcommon/package.py +++ b/var/spack/repos/builtin/packages/libxkbcommon/package.py @@ -13,20 +13,17 @@ class Libxkbcommon(AutotoolsPackage): applications.""" homepage = "https://xkbcommon.org/" - url = "https://github.com/xkbcommon/libxkbcommon/archive/xkbcommon-0.8.0.tar.gz" + url = "https://xkbcommon.org/download/libxkbcommon-0.8.2.tar.xz" - version('0.8.0', '0d9738fb2ed2dcc6e2c6920d94e135ce') + version('0.8.2', sha256='7ab8c4b3403d89d01898066b72cb6069bddeb5af94905a65368f671a026ed58c') + version('0.8.0', sha256='e829265db04e0aebfb0591b6dc3377b64599558167846c3f5ee5c5e53641fe6d') - depends_on('autoconf', type='build') - depends_on('automake', type='build') - depends_on('libtool', type='build') - depends_on('m4', type='build') - depends_on('bison', type='build') + depends_on('pkgconfig@0.9.0:', type='build') + depends_on('bison', type='build') depends_on('xkbdata') + depends_on('libxcb@1.10:') def configure_args(self): - spec = self.spec - args = [] - args.append('--with-xkb-config-root={0}' - .format(spec['xkbdata'].prefix)) - return args + return [ + '--with-xkb-config-root={0}'.format(self.spec['xkbdata'].prefix) + ] |