
* Xorg apps: updated versions to current latest This updates all xorg apps to the latest versions, adding updated requirements where needed. No major version increases in any packages. Minor version increases in some packages (build changes, if any, are indicated below): - rgb - xauth - xcalc - xclock - xeyes: xi >= 1.7, x11-xcb xcb-present >= 1.9 xcb-xfixes xcb-damage - xfontsel - xfs: xfont2 >= 2.0.1 - xinit - xpr - xrdb Bugfix version increases in many packages, with no expected impact on dependencies or interfaces. Summary of dependency changes: - xeyes: - depends_on("libxi@1.7:", when="@1.2:") - depends_on("libxcb@1.9:", when="@1.2:") - xfs: - depends_on("libxfont@1.4.5:", when="@:1.1") - depends_on("libxfont2@2.0.1:", when="@1.2:") * setxkbmap: depends_on libxrandr when @1.3.3: * constype: new version
26 lines
994 B
Python
26 lines
994 B
Python
# Copyright 2013-2023 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.package import *
|
|
|
|
|
|
class Xvinfo(AutotoolsPackage, XorgPackage):
|
|
"""xvinfo prints out the capabilities of any video adaptors associated
|
|
with the display that are accessible through the X-Video extension."""
|
|
|
|
homepage = "https://cgit.freedesktop.org/xorg/app/xvinfo"
|
|
xorg_mirror_path = "app/xvinfo-1.1.3.tar.gz"
|
|
|
|
version("1.1.5", sha256="76fdc89a4e4207d0069ae3e511b4e30a60fcf86b630d01ef56d32ba5856e76c4")
|
|
version("1.1.4", sha256="43d06be36fe10f247295fbe2edf1062740064343f2228d6a61b4f9feac4f7396")
|
|
version("1.1.3", sha256="1c1c2f97abfe114389e94399cc7bf3dfd802ed30ad41ba23921d005bd8a6c39f")
|
|
|
|
depends_on("libxv")
|
|
depends_on("libx11")
|
|
|
|
depends_on("xproto@7.0.25:")
|
|
depends_on("pkgconfig", type="build")
|
|
depends_on("util-macros", type="build")
|