Gentoo Archives: gentoo-commits

From: Arthur Zamarin <arthurzam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/selenium/
Date: Thu, 29 Sep 2022 18:13:37
Message-Id: 1664475015.c806b9ad29c3f1b55139f8f0997b616660dbfb4d.arthurzam@gentoo
1 commit: c806b9ad29c3f1b55139f8f0997b616660dbfb4d
2 Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
3 AuthorDate: Thu Sep 29 18:10:15 2022 +0000
4 Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
5 CommitDate: Thu Sep 29 18:10:15 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c806b9ad
7
8 dev-python/selenium: add 4.5.0
9
10 Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
11
12 dev-python/selenium/Manifest | 1 +
13 dev-python/selenium/selenium-4.5.0.ebuild | 31 +++++++++++++++++++++++++++++++
14 2 files changed, 32 insertions(+)
15
16 diff --git a/dev-python/selenium/Manifest b/dev-python/selenium/Manifest
17 index 47432bec2e5b..d25e206ae600 100644
18 --- a/dev-python/selenium/Manifest
19 +++ b/dev-python/selenium/Manifest
20 @@ -1 +1,2 @@
21 DIST selenium-4.4.3-py3-none-any.whl 985964 BLAKE2B b89c8d8c8a59c6fc8cc6aae84456e6e30f651148880f54bac84f4d82a2281d4ca1841e872fed80746c75fc795b8154c925386245f36940c9a54b1ac746d984dc SHA512 14142389a19cd311be229555b06c7dec5a11f852332775def10b6ffd956d07d0394f7af1463fc18116b0e4df055168158a5c2cc6794af760f16b6ae6ebb88aa4
22 +DIST selenium-4.5.0-py3-none-any.whl 995204 BLAKE2B 214050a4e410a4689255ec8472a1cb35a37596e73d46c48769aa8e184b6f84e281a20e7e5f812b8185edacfcbca6eed77507aa59ffcaeae384f962b4214928a0 SHA512 b22d80d750c85337a2b793799b5a63b11bed45d11b874c1a64c02f53b4adb57263e69bebc79203de3bdfa5b8708203959971723cf0aef7fb68bd1b2a9028e9d9
23
24 diff --git a/dev-python/selenium/selenium-4.5.0.ebuild b/dev-python/selenium/selenium-4.5.0.ebuild
25 new file mode 100644
26 index 000000000000..5a7d0c13ff2d
27 --- /dev/null
28 +++ b/dev-python/selenium/selenium-4.5.0.ebuild
29 @@ -0,0 +1,31 @@
30 +# Copyright 1999-2022 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +# GitHub releases don't include generated files, and on PyPi we do have them
36 +# but only in a wheel format.
37 +
38 +DISTUTILS_USE_PEP517=standalone
39 +PYTHON_COMPAT=( python3_{8..11} )
40 +inherit distutils-r1
41 +
42 +DESCRIPTION="Python language binding for Selenium Remote Control"
43 +HOMEPAGE="https://www.seleniumhq.org"
44 +SRC_URI="
45 + https://files.pythonhosted.org/packages/py3/${P::1}/${PN}/${P}-py3-none-any.whl
46 +"
47 +S=${WORKDIR}
48 +
49 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-macos"
50 +LICENSE="Apache-2.0"
51 +SLOT="0"
52 +
53 +RDEPEND="
54 + dev-python/urllib3[${PYTHON_USEDEP}]
55 +"
56 +
57 +python_compile() {
58 + distutils_wheel_install "${BUILD_DIR}/install" \
59 + "${DISTDIR}/${P}-py3-none-any.whl"
60 +}