summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOmar Padron <omar.padron@kitware.com>2020-10-19 00:08:03 -0400
committerGitHub <noreply@github.com>2020-10-18 23:08:03 -0500
commit747151c3b75aaef46e269d6d3a175e2da5a02815 (patch)
tree1a8b2e0f2bb8320cf59a781aec95bf87cd6dbf88
parent29e2196340b53ec508413de76f55fd352c354c4a (diff)
downloadspack-747151c3b75aaef46e269d6d3a175e2da5a02815.tar.gz
spack-747151c3b75aaef46e269d6d3a175e2da5a02815.tar.bz2
spack-747151c3b75aaef46e269d6d3a175e2da5a02815.tar.xz
spack-747151c3b75aaef46e269d6d3a175e2da5a02815.zip
remove package: libglvnd (#18363)
-rw-r--r--var/spack/repos/builtin/packages/libglvnd/package.py44
1 files changed, 0 insertions, 44 deletions
diff --git a/var/spack/repos/builtin/packages/libglvnd/package.py b/var/spack/repos/builtin/packages/libglvnd/package.py
deleted file mode 100644
index 5834c7b9b6..0000000000
--- a/var/spack/repos/builtin/packages/libglvnd/package.py
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 2013-2020 Lawrence Livermore National Security, LLC and other
-# Spack Project Developers. See the top-level COPYRIGHT file for details.
-#
-# SPDX-License-Identifier: (Apache-2.0 OR MIT)
-
-from spack import *
-
-
-class Libglvnd(AutotoolsPackage):
- """The GL Vendor-Neutral Dispatch library
-
- libglvnd is a vendor-neutral dispatch layer for arbitrating OpenGL API
- calls between multiple vendors. It allows multiple drivers from different
- vendors to coexist on the same filesystem, and determines which vendor to
- dispatch each API call to at runtime.
-
- Both GLX and EGL are supported, in any combination with OpenGL and OpenGL
- ES."""
-
- homepage = "https://github.com/NVIDIA/libglvnd"
- url = "https://github.com/NVIDIA/libglvnd/releases/download/v1.1.1/libglvnd-1.1.1.tar.gz"
- git = "https://github.com/NVIDIA/libglvnd.git"
-
- version('master', branch='master')
-
- version('1.1.1', sha256='71918ed1261e4eece18c0b74b50dc62c0237b8d526e83277ef078554544720b9')
-
- conflicts('platform=darwin', msg='libglvnd is linux specific')
-
- depends_on('libxext')
- depends_on('libx11')
- depends_on('glproto')
-
- @when('@master')
- def autoreconf(self, spec, prefix):
- autogen = Executable('./autogen.sh')
- autogen()
-
- def configure_args(self):
- return [
- '--enable-egl',
- '--enable-gles',
- '--enable-glx'
- ]