2020-02-12 22:37:22 +11:00
|
|
|
# Description: A CSS4 selector implementation for Beautiful Soup
|
2021-03-20 15:40:14 +11:00
|
|
|
# URL: https://pypi.python.org/pypi/soupsieve
|
2023-03-03 15:39:56 -05:00
|
|
|
# Maintainer: John McQuah, jmcquah at disroot dot org
|
2022-07-10 17:39:04 +02:00
|
|
|
# Depends on: python3-build python3-hatchling python3-installer
|
2020-02-12 22:37:22 +11:00
|
|
|
|
|
|
|
name=python3-soupsieve
|
2021-03-20 15:40:14 +11:00
|
|
|
_name=${name#*-}
|
2023-04-22 07:42:09 -04:00
|
|
|
version=2.4.1
|
2020-02-12 22:37:22 +11:00
|
|
|
release=1
|
2021-03-20 15:40:14 +11:00
|
|
|
source=(https://files.pythonhosted.org/packages/source/${_name::1}/$_name/$_name-$version.tar.gz)
|
2020-02-12 22:37:22 +11:00
|
|
|
|
|
|
|
build() {
|
2021-03-20 15:40:14 +11:00
|
|
|
cd $_name-$version
|
2022-05-31 23:24:48 +02:00
|
|
|
|
|
|
|
/usr/bin/python3 -m build --wheel --skip-dependency-check --no-isolation
|
2022-07-10 17:39:04 +02:00
|
|
|
/usr/bin/python3 -m installer --compile-bytecode 2 --destdir=$PKG dist/*.whl
|
2020-02-12 22:37:22 +11:00
|
|
|
}
|