49bf7bbb5d
- 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.
29 lines
713 B
TOML
29 lines
713 B
TOML
[build]
|
|
type = "python"
|
|
|
|
[dependencies]
|
|
build = ["python-hatchling"]
|
|
optional = [
|
|
"python-cchardet",
|
|
"python-chardet",
|
|
"python-lxml",
|
|
"python-html5lib",
|
|
]
|
|
runtime = [
|
|
"python",
|
|
"python-soupsieve",
|
|
"python-typing_extensions",
|
|
]
|
|
|
|
[package]
|
|
description = "Python HTML/XML parser designed for quick turnaround projects like screen-scraping"
|
|
homepage = "https://www.crummy.com/software/BeautifulSoup/"
|
|
license = "MIT"
|
|
name = "python-beautifulsoup4"
|
|
version = "4.14.3"
|
|
|
|
[[source]]
|
|
extract_dir = "$name-$version"
|
|
sha256 = "6292b1c5186d356bba669ef9f7f051757099565ad9ada5dd630bd9de5fa7fb86"
|
|
url = "https://www.crummy.com/software/BeautifulSoup/bs4/download/4.14/beautifulsoup4-$version.tar.gz"
|