first commit
This commit is contained in:
3
src/urllib3/.gitignore
vendored
Normal file
3
src/urllib3/.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
.cache/
|
||||
dist/
|
||||
root/
|
2
src/urllib3/changes.md
Normal file
2
src/urllib3/changes.md
Normal file
@ -0,0 +1,2 @@
|
||||
# 2.0.2
|
||||
First version
|
16
src/urllib3/pkg.sh
Normal file
16
src/urllib3/pkg.sh
Normal file
@ -0,0 +1,16 @@
|
||||
NAME="urllib3"
|
||||
DESC="Powerful, user-friendly HTTP client for Python"
|
||||
VERSION="2.0.2"
|
||||
FILES=("https://files.pythonhosted.org/packages/source/u/urllib3/urllib3-$VERSION.tar.gz")
|
||||
HASHES=("92d23af401c19da3daec9934f60c8575")
|
||||
DEPENDS=("hatchling")
|
||||
|
||||
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