fix: python package renaming
This commit is contained in:
3
src/pypi-sphinxcontrib-devhelp/.gitignore
vendored
Normal file
3
src/pypi-sphinxcontrib-devhelp/.gitignore
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
.cache/
|
||||
dist/
|
||||
root/
|
2
src/pypi-sphinxcontrib-devhelp/changes.md
Normal file
2
src/pypi-sphinxcontrib-devhelp/changes.md
Normal file
@@ -0,0 +1,2 @@
|
||||
# 1.0.2
|
||||
First version
|
18
src/pypi-sphinxcontrib-devhelp/pkg.sh
Normal file
18
src/pypi-sphinxcontrib-devhelp/pkg.sh
Normal file
@@ -0,0 +1,18 @@
|
||||
NAME="pypi-sphinxcontrib-devhelp"
|
||||
DESC="Sphinx extension which outputs Devhelp documents"
|
||||
VERSION="1.0.2"
|
||||
|
||||
FILES=("https://files.pythonhosted.org/packages/source/s/sphinxcontrib-devhelp/sphinxcontrib-devhelp-${VERSION}.tar.gz")
|
||||
HASHES=("94069c5cdb5079c445f5477fa6107016")
|
||||
|
||||
DEPENDS=("python3")
|
||||
|
||||
PACKAGE() {
|
||||
tar xf "sphinxcontrib-devhelp-${VERSION}.tar.gz"
|
||||
cd "sphinxcontrib-devhelp-${VERSION}"
|
||||
|
||||
python3 -m build --wheel --skip-dependency-check --no-isolation
|
||||
PYTHONPATH=src python3 -m installer --destdir="${ROOTDIR}" dist/*.whl
|
||||
|
||||
cd .. && rm -r "sphinxcontrib-devhelp-${VERSION}"
|
||||
}
|
Reference in New Issue
Block a user