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-pluggy/.gitignore vendored Normal file
View File

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

View File

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

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

@ -0,0 +1,18 @@
NAME="pypi-pluggy"
DESC="A minimalist production ready plugin system "
VERSION="1.4.0"
FILES=("https://files.pythonhosted.org/packages/source/p/pluggy/pluggy-${VERSION}.tar.gz")
HASHES=("ffb69741271eaeefab3f2ef2435e2d5f")
DEPENDS=("python3")
PACKAGE() {
tar xf "pluggy-${VERSION}.tar.gz"
cd "pluggy-${VERSION}"
python3 -m build --wheel --skip-dependency-check --no-isolation
PYTHONPATH=src python3 -m installer --destdir="${ROOTDIR}" dist/*.whl
cd .. && rm -r "pluggy-${VERSION}"
}