2019-01-01 14:04:23 +08:00
|
|
|
# Copyright 2013-2019 Lawrence Livermore National Security, LLC and other
|
2018-10-08 04:52:23 +08:00
|
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
2016-05-12 12:22:25 +08:00
|
|
|
#
|
2018-10-08 04:52:23 +08:00
|
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
2015-02-07 09:24:55 +08:00
|
|
|
from spack import *
|
|
|
|
|
2016-08-10 16:50:00 +08:00
|
|
|
|
2017-01-19 02:34:09 +08:00
|
|
|
class XcbProto(AutotoolsPackage):
|
2016-10-12 00:42:20 +08:00
|
|
|
"""xcb-proto provides the XML-XCB protocol descriptions that libxcb uses to
|
|
|
|
generate the majority of its code and API."""
|
2015-02-07 09:24:55 +08:00
|
|
|
|
|
|
|
homepage = "http://xcb.freedesktop.org/"
|
2018-04-11 00:47:02 +08:00
|
|
|
url = "http://xcb.freedesktop.org/dist/xcb-proto-1.13.tar.gz"
|
2015-02-07 09:24:55 +08:00
|
|
|
|
2019-10-11 13:44:41 +08:00
|
|
|
version('1.13', sha256='0698e8f596e4c0dbad71d3dc754d95eb0edbb42df5464e0f782621216fa33ba7')
|
|
|
|
version('1.12', sha256='cfa49e65dd390233d560ce4476575e4b76e505a0e0bacdfb5ba6f8d0af53fd59')
|
|
|
|
version('1.11', sha256='d12152193bd71aabbdbb97b029717ae6d5d0477ab239614e3d6193cc0385d906')
|
2015-02-07 09:24:55 +08:00
|
|
|
|
2017-05-06 04:06:49 +08:00
|
|
|
# TODO: uncomment once build deps can be resolved separately
|
2018-04-11 00:47:02 +08:00
|
|
|
# See #7646, #4145, #4063, and #2548 for details
|
2017-05-06 04:06:49 +08:00
|
|
|
# extends('python')
|
2016-10-12 00:42:20 +08:00
|
|
|
|
2017-03-23 05:17:01 +08:00
|
|
|
patch('xcb-proto-1.12-schema-1.patch', when='@1.12')
|