
* 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
1012 B
Python
26 lines
1012 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 Rstart(AutotoolsPackage, XorgPackage):
|
|
"""This package includes both the client and server sides implementing
|
|
the protocol described in the "A Flexible Remote Execution Protocol
|
|
Based on rsh" paper found in the specs/ subdirectory.
|
|
|
|
This software has been deprecated in favor of the X11 forwarding
|
|
provided in common ssh implementations."""
|
|
|
|
homepage = "https://cgit.freedesktop.org/xorg/app/rstart"
|
|
xorg_mirror_path = "app/rstart-1.0.5.tar.gz"
|
|
|
|
version("1.0.6", sha256="28aa687437efeee70965a0878f9db79397cf691f4011268e16bc835627e23ec5")
|
|
version("1.0.5", sha256="5271c0c2675b4ad09aace7edddfdd137af10fc754afa6260d8eb5d0bba7098c7")
|
|
|
|
depends_on("xproto")
|
|
depends_on("pkgconfig", type="build")
|
|
depends_on("util-macros", type="build")
|