summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/proxymngr/package.py
blob: 1a60c1589e3d4918f3036efdc5097b1152798bb9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# 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 Proxymngr(AutotoolsPackage, XorgPackage):
    """The proxy manager (proxymngr) is responsible for resolving requests from
    xfindproxy (and other similar clients), starting new proxies when
    appropriate, and keeping track of all of the available proxy services.
    The proxy manager strives to reuse existing proxies whenever possible."""

    homepage = "https://cgit.freedesktop.org/xorg/app/proxymngr"
    xorg_mirror_path = "app/proxymngr-1.0.4.tar.gz"

    version("1.0.4", sha256="d40f2d15985ee8e8ef5320a85c0b1899a7bc95974a65137ae886e499bced86f4")

    depends_on("libice")
    depends_on("libxt")
    depends_on("lbxproxy")

    depends_on("xproto@7.0.17:")
    depends_on("xproxymanagementprotocol")
    depends_on("pkgconfig", type="build")
    depends_on("util-macros", type="build")