first commit
This commit is contained in:
3
src/hatchling/.gitignore
vendored
Normal file
3
src/hatchling/.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
.cache/
|
||||
dist/
|
||||
root/
|
2
src/hatchling/changes.md
Normal file
2
src/hatchling/changes.md
Normal file
@ -0,0 +1,2 @@
|
||||
# 1.12.2
|
||||
First version
|
19
src/hatchling/pkg.sh
Normal file
19
src/hatchling/pkg.sh
Normal file
@ -0,0 +1,19 @@
|
||||
NAME="hatchling"
|
||||
DESC="Extensible, standards compliant build backend for python modules"
|
||||
VERSION="1.12.2"
|
||||
FILES=("https://files.pythonhosted.org/packages/source/h/hatchling/hatchling-$VERSION.tar.gz")
|
||||
HASHES=("5a6e2fd0c877feea7e71b9d72bbdbed9")
|
||||
DEPENDS=(
|
||||
"editables" "packaging" "pathspec"
|
||||
"pluggy" "python3"
|
||||
)
|
||||
|
||||
PACKAGE() {
|
||||
tar xf $NAME-$VERSION.tar.gz
|
||||
cd $NAME-$VERSION
|
||||
|
||||
python3 -m build --wheel --skip-dependency-check --no-isolation
|
||||
PYTHONPATH=src python3 -m installer --destdir="$ROOTDIR" dist/*.whl
|
||||
|
||||
cd .. && rm -r $NAME-$VERSION
|
||||
}
|
Reference in New Issue
Block a user