first commit

This commit is contained in:
ngn
2024-08-11 02:17:03 +03:00
commit ee34792885
1404 changed files with 13564 additions and 0 deletions

3
src/sphinx/.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
.cache/
dist/
root/

2
src/sphinx/changes.md Normal file
View File

@ -0,0 +1,2 @@
# 7.1.2
First version

22
src/sphinx/pkg.sh Normal file
View File

@ -0,0 +1,22 @@
NAME="sphinx"
DESC="Set of tools for translating some structured text formats into pretty documentation in various formats"
VERSION="7.1.2"
FILES=("https://github.com/sphinx-doc/sphinx/archive/v$VERSION/sphinx-$VERSION.tar.gz")
HASHES=("ae8427a2035ebd4359c3df8f5436c4b9")
DEPENDS=(
"alabaster" "babel" "docutils"
"imagesize" "packaging" "pygments"
"requests" "snowballstemmer" "sphinxcontrib-applehelp"
"sphinxcontrib-devhelp" "sphinxcontrib-htmlhelp" "sphinxcontrib-jsmath"
"sphinxcontrib-qthelp" "sphinxcontrib-serializinghtml"
)
PACKAGE() {
tar xf $NAME-$VERSION.tar.gz
cd $NAME-$VERSION
python3 -m build --wheel --skip-dependency-check --no-isolation
PYTHONPATH=src python3 -m installer --destdir="$ROOTDIR" dist/*.whl
cd .. && rm -r $NAME-$VERSION
}