diff options
author | Michael Kuhn <michael.kuhn@ovgu.de> | 2020-11-23 11:13:33 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-23 11:13:33 +0100 |
commit | c25f15b7d55e1edba8afd523388234888087521e (patch) | |
tree | be62c5d600d601c706a2f9a4d6176fdf6969ea1d | |
parent | d7db6068c5f2572c8e0c1cca01d24c2c2d59a297 (diff) | |
download | spack-c25f15b7d55e1edba8afd523388234888087521e.tar.gz spack-c25f15b7d55e1edba8afd523388234888087521e.tar.bz2 spack-c25f15b7d55e1edba8afd523388234888087521e.tar.xz spack-c25f15b7d55e1edba8afd523388234888087521e.zip |
libx11: added v1.7.0 (#20035)
-rw-r--r-- | var/spack/repos/builtin/packages/libx11/package.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/libx11/package.py b/var/spack/repos/builtin/packages/libx11/package.py index fa41e10d74..9a860a6920 100644 --- a/var/spack/repos/builtin/packages/libx11/package.py +++ b/var/spack/repos/builtin/packages/libx11/package.py @@ -12,12 +12,14 @@ class Libx11(AutotoolsPackage, XorgPackage): homepage = "https://www.x.org/" xorg_mirror_path = "lib/libX11-1.6.7.tar.gz" + version('1.7.0', sha256='c48ec61785ec68fc6a9a6aca0a9578393414fe2562e3cc9cca30234345c7b6ac') version('1.6.7', sha256='f62ab88c2a87b55e1dc338726a55bb6ed8048084fe6a3294a7ae324ca45159d1') version('1.6.5', sha256='3abce972ba62620611fab5b404dafb852da3da54e7c287831c30863011d28fb3') version('1.6.3', sha256='0b03b9d22f4c9e59b4ba498f294e297f013cae27050dfa0f3496640200db5376') depends_on('libxcb@1.1.92:') + depends_on('xproto@7.0.25:', type='build', when='@1.7.0:') depends_on('xproto@7.0.17:', type='build') depends_on('xextproto', type=('build', 'link')) depends_on('xtrans', type='build') |