
We'd like to use a consistent checksum scheme everywhere so that we can: a) incorporate archive checksums into our specs and have a consistent hashing algorithm across all specs. b) index mirrors with a consistent type of checksum, and not one that is dependent on how spack packages are written. - [x] convert existing md5, sha224, sha512, sha1 checksums to sha256
22 lines
765 B
Python
22 lines
765 B
Python
# Copyright 2013-2019 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 Xineramaproto(AutotoolsPackage):
|
|
"""X Xinerama Extension.
|
|
|
|
This is an X extension that allows multiple physical screens controlled
|
|
by a single X server to appear as a single screen."""
|
|
|
|
homepage = "http://cgit.freedesktop.org/xorg/proto/xineramaproto"
|
|
url = "https://www.x.org/archive/individual/proto/xineramaproto-1.2.1.tar.gz"
|
|
|
|
version('1.2.1', sha256='d99e121edf7b310008d7371ac5dbe3aa2810996d476b754dc78477cc26e5e7c1')
|
|
|
|
depends_on('pkgconfig', type='build')
|
|
depends_on('util-macros', type='build')
|