first commit
This commit is contained in:
3
src/pytz/.gitignore
vendored
Normal file
3
src/pytz/.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
.cache/
|
||||
dist/
|
||||
root/
|
2
src/pytz/changes.md
Normal file
2
src/pytz/changes.md
Normal file
@ -0,0 +1,2 @@
|
||||
# 2022.7.1
|
||||
First version
|
16
src/pytz/pkg.sh
Normal file
16
src/pytz/pkg.sh
Normal file
@ -0,0 +1,16 @@
|
||||
NAME="pytz"
|
||||
DESC="Brings the IANA tz database into Python"
|
||||
VERSION="2022.7.1"
|
||||
FILES=("https://files.pythonhosted.org/packages/source/p/pytz/pytz-$VERSION.tar.gz")
|
||||
HASHES=("5acd981a81dcdc6aadddf4d7e5116b98")
|
||||
DEPENDS=("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