diff options
author | Sam James <sam@gentoo.org> | 2022-07-20 22:56:31 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-07-20 22:56:31 +0000 |
commit | 5bbb95f5dd83815afb414961248f0c25543875f4 (patch) | |
tree | 87725f2f14867dc4ea200b7d3976702507d2a16a /www-apps | |
parent | www-client/opera-beta: remove old (diff) | |
download | gentoo-5bbb95f5dd83815afb414961248f0c25543875f4.tar.gz gentoo-5bbb95f5dd83815afb414961248f0c25543875f4.tar.bz2 gentoo-5bbb95f5dd83815afb414961248f0c25543875f4.zip |
www-apps/chromedriver-bin: add 103.0.5060.134
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'www-apps')
-rw-r--r-- | www-apps/chromedriver-bin/Manifest | 1 | ||||
-rw-r--r-- | www-apps/chromedriver-bin/chromedriver-bin-103.0.5060.134.ebuild | 28 |
2 files changed, 29 insertions, 0 deletions
diff --git a/www-apps/chromedriver-bin/Manifest b/www-apps/chromedriver-bin/Manifest index 691ef1fb1a7c..9966b3237406 100644 --- a/www-apps/chromedriver-bin/Manifest +++ b/www-apps/chromedriver-bin/Manifest @@ -1 +1,2 @@ +DIST chromedriver-bin-103.0.5060.134.linux64.zip 6345878 BLAKE2B c10c0228344d0bef4ad79a6d682a9335cbd3d055a02b62527d128f8fa22bf91a7d4b481919332b5976ff18916b1c884d33f18195c333c90ab0b77df8907b687a SHA512 5aea02788460d42ed37684bbcc21276a519e1aa6f4dc8ead04b8fc62e0d5a0e84ce5a4969332539007fe0b6a395a73391232ad0f192863ca9a73e05da6813c06 DIST chromedriver-bin-103.0.5060.53.linux64.zip 7052799 BLAKE2B 4856ff4a3b5b28ae1889b482ca189fa84e6d4d471ebb8d100803923179a1178bc906947d8a67a94d54c481200dbedc4dca0cb57c269e8aaf2f5f402d3c49de77 SHA512 6f87c8b40d11d0d0505c0d1d9ba90f29b52cd23b2c22353d45efa24a780aa57d7292a085b42c330a597151f1df2bdd21dbec258f236577d874c3fb54acdbb8cd diff --git a/www-apps/chromedriver-bin/chromedriver-bin-103.0.5060.134.ebuild b/www-apps/chromedriver-bin/chromedriver-bin-103.0.5060.134.ebuild new file mode 100644 index 000000000000..7503ea84cdc5 --- /dev/null +++ b/www-apps/chromedriver-bin/chromedriver-bin-103.0.5060.134.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="WebDriver for Chrome" +HOMEPAGE="https://sites.google.com/a/chromium.org/chromedriver" +SRC_URI="amd64? ( https://chromedriver.storage.googleapis.com/${PV}/chromedriver_linux64.zip -> ${P}.linux64.zip )" + +LICENSE="google-chrome" +SLOT="0" +KEYWORDS="~amd64" + +RESTRICT="bindist mirror strip" + +BDEPEND="app-arch/unzip" + +RDEPEND=" + sys-libs/glibc + !www-client/chromium + www-client/google-chrome" + +S="${WORKDIR}" +QA_PREBUILT="usr/bin/chromedriver" + +src_install() { + dobin chromedriver +} |