blob: fe798a81221722b4a3cfca09ffbe38bb52ed2cea (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
# Maintainer: txtsd <aur.archlinux@ihavea.quest>
# Maintainer: Carl Smedstad <carsme@archlinux.org>
# Contributor: kbipinkumar <kbipinkumar@pm.me>
# Contributor: bpierre <benoit.pierre@gmail.com>
# Contributor: Anton Kudelin <kudelin at proton dot me>
# Contributor: Jelle van der Waa <jelle@vdwaa.nl>
# Contributor: Aaron DeVore <aaron.devore@gmail.com>
pkgname=python-selenium
_pkgname="${pkgname#python-}"
pkgver=4.30.0
pkgrel=1
pkgdesc="Python language bindings for Selenium WebDriver"
arch=(x86_64)
url="https://github.com/SeleniumHQ/selenium"
license=(Apache-2.0)
depends=(
bzip2
gcc-libs
glibc
python
python-certifi
python-trio
python-trio-websocket
python-typing_extensions
python-urllib3
python-websocket-client
zlib
)
makedepends=(
python-build
python-installer
python-setuptools
python-setuptools-rust
python-wheel
)
options=(!lto)
source=(
"https://files.pythonhosted.org/packages/source/${_pkgname::1}/${_pkgname}/${_pkgname}-${pkgver}.tar.gz"
)
sha256sums=('16ab890fc7cb21a01e1b1e9a0fbaa9445fe30837eabc66e90b3bacf12138126a')
_archive="${_pkgname}-${pkgver}"
prepare() {
cd "${_archive}"
# Ensure `selenium.webdriver.common.fedcm` gets packaged
touch ./selenium/webdriver/common/fedcm/__init__.py
cd src
export RUSTUP_TOOLCHAIN=stable
cargo fetch --locked --target "$(rustc -vV | sed -n 's/host: //p')"
}
build() {
cd "${_archive}"
export RUSTUP_TOOLCHAIN=stable
python -m build --wheel --no-isolation
}
package() {
cd "${_archive}"
python -m installer --destdir="${pkgdir}" dist/*.whl
local site_packages=$(python -c "import site; print(site.getsitepackages()[0])")
cp selenium/webdriver/remote/*.js "${pkgdir}/${site_packages}/selenium/webdriver/remote"
cp selenium/webdriver/common/*.js "${pkgdir}/${site_packages}/selenium/webdriver/common"
}
|