fix: python package renaming

This commit is contained in:
ngn
2024-08-19 14:24:01 +03:00
parent 5254876ac8
commit 6b826d41c6
104 changed files with 465 additions and 404 deletions

3
src/pypi-mako/.gitignore vendored Normal file
View File

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

5
src/pypi-mako/changes.md Normal file
View File

@ -0,0 +1,5 @@
# 1.3.2
Updated to a newer upstream release
# 1.2.4
First version

18
src/pypi-mako/pkg.sh Normal file
View File

@ -0,0 +1,18 @@
NAME="pypi-mako"
DESC="Hyperfast and lightweight templating for the Python platform"
VERSION="1.3.2"
FILES=("https://files.pythonhosted.org/packages/source/M/Mako/Mako-${VERSION}.tar.gz")
HASHES=("0500a3df18f02c9e53fe3a9314c1a1ae")
DEPENDS=("python3")
PACKAGE() {
tar xf "Mako-${VERSION}.tar.gz"
cd "Mako-${VERSION}"
python3 -m build --wheel --no-isolation
python3 -m installer --destdir="${ROOTDIR}" dist/*.whl
cd .. && rm -rf "Mako-${VERSION}"
}