Files
packages/extra/python-pydata-sphinx-theme/python-pydata-sphinx-theme.toml
T
SFG545 49bf7bbb5d Add configuration files and patches for R, SDL2, SDL3, Tk, and Vala
- Introduced `r.toml` for R package configuration, including build flags and dependencies.
- Added `sdl2-compat.toml` for SDL2 compatibility layer with SDL3, specifying build and runtime dependencies.
- Created a patch for SDL3 to handle cases when XInput2 is not available, ensuring compatibility.
- Added `sdl3.toml` for SDL3 configuration, including build flags and dependencies.
- Introduced `tk.toml` for Tk configuration, detailing build flags and runtime dependencies.
- Added a patch for Vala to ensure POSIX compliance in the test runner script, improving portability.
2026-03-24 00:04:10 -05:00

35 lines
911 B
TOML

[build]
type = "python"
[build.flags]
env_vars = [ "STB_USE_SYSTEM_NODE=true" ]
[dependencies]
build = ["python-sphinx-theme-builder", "python-diagnostic", "nodejs", "git" ]
runtime = [
"python",
"python-accessible-pygments",
"python-beautifulsoup4",
"python-babel",
"python-docutils",
"python-jinja",
"python-pygments",
"python-requests",
"python-sphinx",
"python-typing_extensions",
]
[package]
description = "Clean, Bootstrap-based Sphinx theme by and for the PyData community."
homepage = "https://pydata-sphinx-theme.readthedocs.io/"
license = "BSD-3-Clause"
name = "python-pydata-sphinx-theme"
version = "0.16.1"
[[source]]
extract_dir = "$name-$version"
url = "https://github.com/pydata/pydata-sphinx-theme.git#v$version"
post_extract = [
"sed -i \"s/^node-version = \\\".*\\\"/node-version = \\\"$(node --version | sed 's/^v//')\\\"/\" pyproject.toml",
]