2018-03-15 23:14:28 +11:00
|
|
|
# Description: Internationalized Domain Names in Applications (IDNA).
|
|
|
|
# URL: https://github.com/kjd/idna
|
2023-08-13 09:19:36 +02:00
|
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
2023-04-02 19:30:53 +02:00
|
|
|
# Depends on: python3-build python3-flit-core python3-installer
|
2018-03-15 23:14:28 +11:00
|
|
|
|
|
|
|
name=python3-idna
|
2024-04-11 17:47:46 +02:00
|
|
|
version=3.7
|
2018-03-15 23:14:28 +11:00
|
|
|
release=1
|
|
|
|
source=(https://files.pythonhosted.org/packages/source/${name:8:1}/${name#*-}/${name#*-}-$version.tar.gz)
|
|
|
|
|
|
|
|
build() {
|
2023-08-13 09:19:36 +02:00
|
|
|
cd ${name#*-}-$version
|
2023-04-01 12:51:42 +02:00
|
|
|
|
2023-08-13 09:19:36 +02:00
|
|
|
/usr/bin/python3 -m build --wheel --skip-dependency-check --no-isolation
|
|
|
|
/usr/bin/python3 -m installer --compile-bytecode 0 --destdir=$PKG dist/*.whl
|
2018-03-15 23:14:28 +11:00
|
|
|
}
|