Gentoo Archives: gentoo-commits

From: Austin English <wizardedit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: www-apps/chromedriver-bin/
Date: Wed, 31 Jan 2018 23:32:08
Message-Id: 1517441426.b6821848d810d731ff10d1652d1e296d0af68277.wizardedit@gentoo
1 commit: b6821848d810d731ff10d1652d1e296d0af68277
2 Author: Austin English <wizardedit <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jan 31 23:30:15 2018 +0000
4 Commit: Austin English <wizardedit <AT> gentoo <DOT> org>
5 CommitDate: Wed Jan 31 23:30:26 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b6821848
7
8 www-apps/chromedriver-bin: version bump - 2.35
9
10 Package-Manager: Portage-2.3.19, Repoman-2.3.6
11
12 www-apps/chromedriver-bin/Manifest | 1 +
13 .../chromedriver-bin/chromedriver-bin-2.35.ebuild | 23 ++++++++++++++++++++++
14 2 files changed, 24 insertions(+)
15
16 diff --git a/www-apps/chromedriver-bin/Manifest b/www-apps/chromedriver-bin/Manifest
17 index dc95fd5db04..e8649382ed0 100644
18 --- a/www-apps/chromedriver-bin/Manifest
19 +++ b/www-apps/chromedriver-bin/Manifest
20 @@ -2,3 +2,4 @@ DIST chromedriver-bin-2.24.linux32.zip 3154004 BLAKE2B 6db98f434a5a71c7d76a7fa60
21 DIST chromedriver-bin-2.24.linux64.zip 3116161 BLAKE2B b32b8f5191b65fde09cd6fb6fa753702444e7dd15dc8f9a335bd99f9ac36942c0e7eaf546db5b688f66fa0ce429c550a20a3059e554452a2b99bb4d86b387622 SHA512 ae1fa127560af1b8419c273f9e23253a19423276294cb920c87b0c209134244315c4d3878b9025589471d72056abb0087ef897f684e28d63b5fc71d628dd1791
22 DIST chromedriver-bin-2.30.linux32.zip 3891104 BLAKE2B 653365b57013549c3190d4fe2cc427b1f98bd04cd28d64be64993a99e90e33c487fcf8f3a35830659ad2f98a97a15345f24fb278c724eea4cf2ead41a19cb3b3 SHA512 341a652a4dba85a4990b6366fe1a6b392d83c32f70ec04ec69afbc90932d223f16b1944b2709b80dc4399c9377523fd494aba0e70fa7c9e22fda1e5142778a4b
23 DIST chromedriver-bin-2.30.linux64.zip 3864914 BLAKE2B d31a1ff9f0eba3384bb3e1598b448c3893d65be98876ad302891657e0eaa8684733303eca618e43226a3e6eb1fd212248188d20cfc97b5aefc91186009999420 SHA512 451d120fceda3a08bba77fbae8d99c87c0902e608006a7895882a06cdcb1614afe0b563fd1b2b2bdc3ac3fbc426b5d3141245ee4d00a0c4dad6911d9a94f5d1a
24 +DIST chromedriver-bin-2.35.linux64.zip 3721349 BLAKE2B 37abd16d3d2aea57dfff871f2cdcf3ea0c34ad50dd8ba98f2e166e541ebf6ea2ede641a10f7b3d6ff2114740f9aad3cda6e0fc19ab3708fca89b3ce96cb3639e SHA512 0da15aee65c7f13552a57cc77212206fcd9a76b3cb912d85807760d6fb44b122e850c72e36fa7f53355c5bfff038afeeec2181089d1507c59cd5e176fd415ae7
25
26 diff --git a/www-apps/chromedriver-bin/chromedriver-bin-2.35.ebuild b/www-apps/chromedriver-bin/chromedriver-bin-2.35.ebuild
27 new file mode 100644
28 index 00000000000..07d1ad1d190
29 --- /dev/null
30 +++ b/www-apps/chromedriver-bin/chromedriver-bin-2.35.ebuild
31 @@ -0,0 +1,23 @@
32 +# Copyright 1999-2018 Gentoo Foundation
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=6
36 +
37 +DESCRIPTION="WebDriver for Chrome"
38 +HOMEPAGE="https://sites.google.com/a/chromium.org/chromedriver"
39 +SRC_URI="amd64? ( https://chromedriver.storage.googleapis.com/${PV}/chromedriver_linux64.zip -> ${P}.linux64.zip )"
40 +
41 +LICENSE="google-chrome"
42 +SLOT="0"
43 +KEYWORDS="~amd64"
44 +IUSE=""
45 +
46 +RDEPEND="www-client/google-chrome"
47 +
48 +S="${WORKDIR}"
49 +QA_PREBUILT="usr/bin/chromedriver"
50 +
51 +src_install()
52 +{
53 + dobin chromedriver
54 +}