
* Bump the package API of the `builtin` repo to `v2.0` * Move `var/spack/repos/builtin` -> `var/spack/repos/spack_repo/builtin` * Move test repos `var/spack/repos/{builtin.mock,tutorial,...}` -> `var/spack/test_repos/` * Update package dir names to v2 format (`-` -> `_` etc) * Change absolute imports `from spack.pkg.builtin.my_pkg ...` to relative imports `from ..my_pkg.package ...` Users who have a repo on top of builtin should change imports from ```python from spack.pkg.builtin.my_pkg import MyPkg ``` to ```python from spack_repo.builtin.packages.my_pkg.package import MyPkg ``` and can configure their editors with ``` PYTHONPATH=$spack/lib/spack:$spack/var/spack/repos ``` [skip-verify-checksums]
31 lines
1.1 KiB
Python
31 lines
1.1 KiB
Python
# Copyright Spack Project Developers. See COPYRIGHT file for details.
|
|
#
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
from spack.package import *
|
|
|
|
|
|
class Xfontsel(AutotoolsPackage, XorgPackage):
|
|
"""xfontsel application provides a simple way to display the X11 core
|
|
protocol fonts known to your X server, examine samples of each, and
|
|
retrieve the X Logical Font Description ("XLFD") full name for a font."""
|
|
|
|
homepage = "https://gitlab.freedesktop.org/xorg/app/xfontsel"
|
|
xorg_mirror_path = "app/xfontsel-1.0.5.tar.gz"
|
|
|
|
license("MIT")
|
|
|
|
version("1.1.0", sha256="32938f671c706dc15644ceebf5daebbf0f2f1fe45afa2d06d2b905cc7d6c7de2")
|
|
version("1.0.6", sha256="a7b025cb96b678f03caeb61a2770890359bdab34dc37e09d447b30c54c4df35e")
|
|
version("1.0.5", sha256="9b3ad0cc274398d22be9fa7efe930f4e3749fd4b1b61d9c31a7fb6c1f1ff766e")
|
|
|
|
depends_on("c", type="build") # generated
|
|
|
|
depends_on("libxaw")
|
|
depends_on("libxmu")
|
|
depends_on("libxt")
|
|
depends_on("libx11")
|
|
|
|
depends_on("pkgconfig", type="build")
|
|
depends_on("util-macros", type="build")
|