fix: python package renaming
This commit is contained in:
3
src/pypi-mako/.gitignore
vendored
Normal file
3
src/pypi-mako/.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
.cache/
|
||||
dist/
|
||||
root/
|
5
src/pypi-mako/changes.md
Normal file
5
src/pypi-mako/changes.md
Normal 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
18
src/pypi-mako/pkg.sh
Normal 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}"
|
||||
}
|
Reference in New Issue
Block a user