Gentoo Archives: gentoo-commits

From: Mike Gilbert <floppym@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: www-apps/chromedriver-bin/
Date: Thu, 27 Aug 2020 16:10:19
Message-Id: 1598544588.453f2a835954332316d1f7dc4ef5cf6a40a88007.floppym@gentoo
1 commit: 453f2a835954332316d1f7dc4ef5cf6a40a88007
2 Author: Mike Gilbert <floppym <AT> gentoo <DOT> org>
3 AuthorDate: Thu Aug 27 16:09:48 2020 +0000
4 Commit: Mike Gilbert <floppym <AT> gentoo <DOT> org>
5 CommitDate: Thu Aug 27 16:09:48 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=453f2a83
7
8 www-apps/chromedriver-bin: bump to 85.0.4183.83
9
10 Signed-off-by: Mike Gilbert <floppym <AT> gentoo.org>
11
12 www-apps/chromedriver-bin/Manifest | 1 +
13 .../chromedriver-bin-85.0.4183.83.ebuild | 28 ++++++++++++++++++++++
14 2 files changed, 29 insertions(+)
15
16 diff --git a/www-apps/chromedriver-bin/Manifest b/www-apps/chromedriver-bin/Manifest
17 index ff2a73143d9..b1c230f708c 100644
18 --- a/www-apps/chromedriver-bin/Manifest
19 +++ b/www-apps/chromedriver-bin/Manifest
20 @@ -1,2 +1,3 @@
21 DIST chromedriver-bin-83.0.4103.39.linux64.zip 5222065 BLAKE2B 7d801205bcd0174d1d622b8e3c6c755f1dfae1fd4bf1bc225dbd05bd0d868c300d7bf442a39f29525d4af1f54c0f2e46b233d433d70523d48df15a30aa1a89f0 SHA512 9cb02938cef436dcf0b3f54e5ce668de86e9afc702a1903e2f35ecabcbd4c468f525ff3c6b079eb88b14c1a956bc070fa281fdf64d9d54027254f769c00d24f9
22 DIST chromedriver-bin-84.0.4147.30.linux64.zip 5306126 BLAKE2B 2ee0a05eaa42e4724634251fd44d81a2d96f7486db40dc570c01f96cf16124fe2d666e110a4b9c6cd06adf38181c0b2aa3a38beb4ec59fbd65a98cba466fca71 SHA512 ec010c80958439427567c12c714afd5e15f80a9ccb7120e9539986d1af931eb063ad50b709cfa6495bb5a214027ed8531007d4497a01b26a94259aa4a2525f2d
23 +DIST chromedriver-bin-85.0.4183.83.linux64.zip 5359562 BLAKE2B 020370d0cd42f2af0c81e9ef02802a895e2d566454a27d5a80b8607ca3a83c7ca1ec8ece0ed997b5de70a725134d9c2f0a52765c3f1786b3050f9abbcac3d5d8 SHA512 ba26945906ac6a2b9c724917d8f2e82e9bc26fd601a91a390b637a8dfcecaa57a3acfcf376d316b75ba559b61858a6732cb04332c6c1c661927322ef623a62b8
24
25 diff --git a/www-apps/chromedriver-bin/chromedriver-bin-85.0.4183.83.ebuild b/www-apps/chromedriver-bin/chromedriver-bin-85.0.4183.83.ebuild
26 new file mode 100644
27 index 00000000000..c96967a171b
28 --- /dev/null
29 +++ b/www-apps/chromedriver-bin/chromedriver-bin-85.0.4183.83.ebuild
30 @@ -0,0 +1,28 @@
31 +# Copyright 1999-2020 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +DESCRIPTION="WebDriver for Chrome"
37 +HOMEPAGE="https://sites.google.com/a/chromium.org/chromedriver"
38 +SRC_URI="amd64? ( https://chromedriver.storage.googleapis.com/${PV}/chromedriver_linux64.zip -> ${P}.linux64.zip )"
39 +
40 +LICENSE="google-chrome"
41 +SLOT="0"
42 +KEYWORDS="~amd64"
43 +IUSE=""
44 +
45 +RESTRICT="bindist mirror strip"
46 +
47 +BDEPEND="app-arch/unzip"
48 +
49 +RDEPEND="!www-client/chromium
50 + www-client/google-chrome"
51 +
52 +S="${WORKDIR}"
53 +QA_PREBUILT="usr/bin/chromedriver"
54 +
55 +src_install()
56 +{
57 + dobin chromedriver
58 +}