diff options
author | Matt Jolly <kangie@gentoo.org> | 2024-05-08 15:26:11 +1000 |
---|---|---|
committer | Matt Jolly <kangie@gentoo.org> | 2024-05-08 17:14:20 +1000 |
commit | b3f4adad6cdce1b60695800fef18e0f33165ac2c (patch) | |
tree | f1db0db4d5f047320ff0a821de6bc4adebee1dcb /www-apps | |
parent | www-plugins/chrome-binary-plugins: automated update (124.0.6367.155) (diff) | |
download | gentoo-b3f4adad6cdce1b60695800fef18e0f33165ac2c.tar.gz gentoo-b3f4adad6cdce1b60695800fef18e0f33165ac2c.tar.bz2 gentoo-b3f4adad6cdce1b60695800fef18e0f33165ac2c.zip |
www-apps/chromedriver-bin: add 124.0.6367.155
Signed-off-by: Matt Jolly <kangie@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-124.0.6367.155.ebuild | 28 |
2 files changed, 29 insertions, 0 deletions
diff --git a/www-apps/chromedriver-bin/Manifest b/www-apps/chromedriver-bin/Manifest index 16dbd3de0230..61a119483e1a 100644 --- a/www-apps/chromedriver-bin/Manifest +++ b/www-apps/chromedriver-bin/Manifest @@ -1 +1,2 @@ +DIST chromedriver-bin-124.0.6367.155.linux64.zip 8679595 BLAKE2B 2811a91580f11d0e70cf690533f759cd5dd7c76761780787dc78ce719791d333737f6ce8030a2e074e0432f5b7764d5f2ffe7972c63da4ccb3bba57c8787f92a SHA512 a7f93979e863c9d2a85b9aedeb32121a75bcd2f4fd643c3902b9066cdf094548cbad7d78ddf36b294fa69fbc3f602a369da58e5949b9a664e5a85b149f95c1de DIST chromedriver-bin-124.0.6367.78.linux64.zip 8679668 BLAKE2B 309aed473f69994050a8c72869eea4b320ba1523fea96d6c6a143e60589bdb6bbd489686be1aef61b042b6085c35ad8cda911e872628cd598bc1ced9a33b79e0 SHA512 bf1bc14cf1a9f04356c03cb01afe82d174559fc9ad818b9d71d0c8c6d0dc8629fc498c8a86935cd1c1d8ab110a1086d4f04a7a7ba6a5de6d1556464fb15884ba diff --git a/www-apps/chromedriver-bin/chromedriver-bin-124.0.6367.155.ebuild b/www-apps/chromedriver-bin/chromedriver-bin-124.0.6367.155.ebuild new file mode 100644 index 000000000000..ff9ba50fc766 --- /dev/null +++ b/www-apps/chromedriver-bin/chromedriver-bin-124.0.6367.155.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +# See https://googlechromelabs.github.io/chrome-for-testing/#stable for URLs +DESCRIPTION="WebDriver for Chrome" +HOMEPAGE="https://sites.google.com/corp/chromium.org/driver/" +SRC_URI="amd64? ( https://storage.googleapis.com/chrome-for-testing-public/${PV}/linux64/chromedriver-linux64.zip -> ${P}.linux64.zip )" +S="${WORKDIR}/chromedriver-linux64" + +LICENSE="google-chrome" +SLOT="0" +KEYWORDS="-* amd64" +RESTRICT="bindist mirror strip" + +RDEPEND=" + sys-libs/glibc + www-client/google-chrome + !www-client/chromium +" +BDEPEND="app-arch/unzip" + +QA_PREBUILT="usr/bin/chromedriver" + +src_install() { + dobin chromedriver +} |