
* 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
30 lines
1.1 KiB
Python
30 lines
1.1 KiB
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 Xclipboard(AutotoolsPackage, XorgPackage):
|
|
"""xclipboard is used to collect and display text selections that are
|
|
sent to the CLIPBOARD by other clients. It is typically used to save
|
|
CLIPBOARD selections for later use. It stores each CLIPBOARD
|
|
selection as a separate string, each of which can be selected."""
|
|
|
|
homepage = "https://cgit.freedesktop.org/xorg/app/xclipboard"
|
|
xorg_mirror_path = "app/xclipboard-1.1.3.tar.gz"
|
|
|
|
version("1.1.4", sha256="c40cb97f6c8597ba74a3de5c188d4429f686e4d395b85dac0ec8c7311bdf3d10")
|
|
version("1.1.3", sha256="a8c335cf166cbb27ff86569503db7e639f85741ad199bfb3ba45dd0cfda3da7f")
|
|
|
|
depends_on("libxaw")
|
|
depends_on("libxmu")
|
|
depends_on("libxt@1.1:")
|
|
depends_on("libx11")
|
|
depends_on("libxkbfile")
|
|
|
|
depends_on("xproto@7.0.17:")
|
|
depends_on("pkgconfig", type="build")
|
|
depends_on("util-macros", type="build")
|