dev-python/textual: add 8.2.1

Signed-off-by: dsaf <ghostyn678+git@gmail.com>
This commit is contained in:
dsaf
2026-03-29 09:24:20 -03:00
parent 35bf989bbc
commit 2b62f4ce51
2 changed files with 108 additions and 0 deletions

View File

@@ -1,2 +1,3 @@
DIST textual-8.1.1.gh.tar.gz 30212024 BLAKE2B 897e3d4714aebaaacfed5a84e298a400c3f13224a74d64e958cb9eda1fd368d3ec00b8b6f350e2d229a68299a9007f893979e86f4b09b4ae2e1c39975e46f26e SHA512 335457e9f9b8e44e73e1d7103f9ffb8dd92adc10be906004066659ac5209069bfdb673f78473c21a251a5d891943d56b26b0544fd7365e5d72d4f3d220c73518
DIST textual-8.2.0.gh.tar.gz 30216630 BLAKE2B 5b68a3c21b93ceac315a38062cf4d3b85d9b36a906fc80684cf6b9645ca7ce02d7216784a8047e502154634375e398ee17918fc4841d29acf88231808c7a152d SHA512 8f4f7f2066fa4baa4dbe84cd0ba73150910423436d1d4cc2536c6bcd8c1f45c826cbc0e567b5497099738b4f35b3790199f4c24e4c2bf17572501661ef3e9488
DIST textual-8.2.1.gh.tar.gz 30218086 BLAKE2B c5d393abe19a851b354352baf56131436fe25b464df2884397c6cc08b556cbb0bd717171af140d3fc3f84d84161274cba04f6e122e32bf03b932c62433765417 SHA512 0bb1738980f2fe8bd1c9e6541428c0dd847158950b7dc6f00ae930a911448eef0ab4b9be087f4f15d4270afcaa1e1905e2749cac694e40857c78e43effdfdb1c

View File

@@ -0,0 +1,107 @@
# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=poetry
PYTHON_COMPAT=( python3_{12..14} )
inherit distutils-r1 optfeature
DESCRIPTION="Modern Text User Interface framework"
HOMEPAGE="
https://textual.textualize.io/
https://github.com/Textualize/textual
https://pypi.org/project/textual/
"
SRC_URI="https://github.com/Textualize/textual/archive/refs/tags/v${PV}.tar.gz -> ${P}.gh.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm64"
RDEPEND="
>=dev-python/markdown-it-py-2.1.0[${PYTHON_USEDEP}]
>=dev-python/platformdirs-3.6.0[${PYTHON_USEDEP}]
<dev-python/platformdirs-5[${PYTHON_USEDEP}]
>=dev-python/rich-14.2.0[${PYTHON_USEDEP}]
>=dev-python/typing-extensions-4.4.0[${PYTHON_USEDEP}]
<dev-python/typing-extensions-5[${PYTHON_USEDEP}]
"
declare -A SYNTAX_LANGS=(
["bash"]="Bash"
["c"]="C"
# TODO Missing keyword for ~arm64 in ::gentoo
#["cmake"]="CMake"
["cpp"]="C++"
["html"]="HTML"
["javascript"]="JavaScript"
["json"]="JSON"
["lua"]="Lua"
# TODO No Python bindings in ::gentoo
#["markdown"]="Markdown"
["python"]="Python"
# TODO Missing keyword for ~arm64 in ::gentoo
#["ruby"]="Ruby"
["rust"]="Rust"
# TODO Many other (common) languages are neither in ::gentoo nor ::guru
)
BDEPEND="
test? (
dev-python/httpx[${PYTHON_USEDEP}]
=dev-python/textual-dev-1.8*[${PYTHON_USEDEP}]
$(printf " dev-libs/tree-sitter-%s[python,${PYTHON_USEDEP}]" "${!SYNTAX_LANGS[@]}")
)
"
DOCS+=( {CHANGELOG,README}.md )
EPYTEST_PLUGINS=(
syrupy
pytest-{asyncio,textual-snapshot}
)
EPYTEST_XDIST=1
distutils_enable_tests pytest
EPYTEST_DESELECT=(
# Require unavailable tree-sitter-*[python] grammar packages (v8.1.1)
"tests/snapshot_tests/test_snapshots.py::test_text_area_language_rendering[markdown]"
"tests/snapshot_tests/test_snapshots.py::test_text_area_language_rendering[toml]"
"tests/snapshot_tests/test_snapshots.py::test_text_area_language_rendering[yaml]"
"tests/text_area/test_languages.py::test_setting_builtin_language_via_constructor" # markdown
"tests/snapshot_tests/test_snapshots.py::test_text_area_language_rendering[css]"
"tests/text_area/test_languages.py::test_setting_builtin_language_via_attribute" # markdown
"tests/snapshot_tests/test_snapshots.py::test_text_area_language_rendering[go]"
"tests/snapshot_tests/test_snapshots.py::test_text_area_language_rendering[regex]"
"tests/snapshot_tests/test_snapshots.py::test_text_area_language_rendering[sql]"
"tests/snapshot_tests/test_snapshots.py::test_text_area_language_rendering[java]"
"tests/snapshot_tests/test_snapshots.py::test_text_area_language_rendering[xml]"
# These tests do not render correctly per visual inspection of snapshot_report.html (v8.1.1)
# TODO Investigate/ask upstream
"tests/snapshot_tests/test_snapshots.py::test_richlog_width"
"tests/snapshot_tests/test_snapshots.py::test_richlog_min_width"
"tests/snapshot_tests/test_snapshots.py::test_richlog_deferred_render_expand"
"tests/snapshot_tests/test_snapshots.py::test_welcome"
"tests/snapshot_tests/test_snapshots.py::test_text_area_wrapping_and_folding"
# Likely missed in this PR: (v8.1.1)
# https://github.com/Textualize/textual/pull/6410#issuecomment-4135017177
"tests/test_arrange.py::test_arrange_dock_left"
)
python_test() {
# Tests use @pytest.mark.xdist_group
epytest --dist loadgroup
}
pkg_postinst() {
optfeature_header "Install additional packages for syntax highlighting:"
local lang
for lang in "${!SYNTAX_LANGS[@]}"; do
optfeature "${SYNTAX_LANGS[${lang}]}" "dev-libs/tree-sitter-${lang}[python]"
done
}