first commit
This commit is contained in:
3
src/sphinx/.gitignore
vendored
Normal file
3
src/sphinx/.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
.cache/
|
||||
dist/
|
||||
root/
|
2
src/sphinx/changes.md
Normal file
2
src/sphinx/changes.md
Normal file
@ -0,0 +1,2 @@
|
||||
# 7.1.2
|
||||
First version
|
22
src/sphinx/pkg.sh
Normal file
22
src/sphinx/pkg.sh
Normal 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
|
||||
}
|
Reference in New Issue
Block a user