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