
* geopm: Mark all as deprecated - This recipe will be removed in a future release. Signed-off-by: Brad Geltz <brad.geltz@intel.com> * Add py-sphinx-emoji Signed-off-by: Brad Geltz <brad.geltz@intel.com> * Add py-dasbus Signed-off-by: Brad Geltz <brad.geltz@intel.com> * py-pygobject: Add v3.46.0 - Previous versions error during build phase. Signed-off-by: Brad Geltz <brad.geltz@intel.com> * py-sphinx-tabs: Add new versions Signed-off-by: Brad Geltz <brad.geltz@intel.com> * Add geopm-service - Previous geopm package is now 2 packages: geopm-service and geopm-runtime. - The GEOPM service is designed as a systemd/dbus service providing a userspace interface to privileged hardware telemetry and configurations. - Installing via spack will enable some userspace testing, but generally most users will want to install the GEOPM service via the system package manager as root to get full functionality. - This recipe will enable the creation of the fully userspace geopm-runtime recipe which will replace the old geopm recipe. Signed-off-by: Brad Geltz <brad.geltz@intel.com> --------- Signed-off-by: Brad Geltz <brad.geltz@intel.com>
34 lines
1.4 KiB
Python
34 lines
1.4 KiB
Python
# Copyright 2013-2024 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 PySphinxTabs(PythonPackage):
|
|
"""Create tabbed content in Sphinx documentation when building HTML."""
|
|
|
|
homepage = "https://github.com/executablebooks/sphinx-tabs"
|
|
pypi = "sphinx-tabs/sphinx-tabs-3.2.0.tar.gz"
|
|
|
|
maintainers("schmitts")
|
|
|
|
license("MIT")
|
|
|
|
version("3.4.4", sha256="f1b72c4f23d1ba9cdcaf880fd883524bc70689f561b9785719b8b3c3c5ed0aca")
|
|
version("3.4.1", sha256="d2a09f9e8316e400d57503f6df1c78005fdde220e5af589cc79d493159e1b832")
|
|
version("3.3.1", sha256="d10dd7fb2700329b8e5948ab9f8e3ef54fff30f79d2e42cfd1b0089ae26e8c5e")
|
|
version("3.2.0", sha256="33137914ed9b276e6a686d7a337310ee77b1dae316fdcbce60476913a152e0a4")
|
|
|
|
depends_on("python@3.6:3", type=("build", "run"))
|
|
depends_on("py-setuptools", type="build")
|
|
depends_on("py-sphinx", type=("build", "run"), when="@3.4.1:")
|
|
depends_on("py-sphinx@2:4", type=("build", "run"), when="@:3.3.1")
|
|
depends_on("py-pygments", type=("build", "run"))
|
|
|
|
depends_on("py-docutils@0.16", when="@3.2.0", type=("build", "run"))
|
|
depends_on("py-docutils@0.17", when="@3.3.1", type=("build", "run"))
|
|
depends_on("py-docutils@0.18", when="@3.4.1:", type=("build", "run"))
|