From: "Austin English" <wizardedit@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: www-apps/chromedriver-bin/
Date: Wed, 29 Nov 2017 21:36:13 +0000 (UTC) [thread overview]
Message-ID: <1511991358.a385dddd0fe2acbfa98457a35f0578e60e9f1506.wizardedit@gentoo> (raw)
commit: a385dddd0fe2acbfa98457a35f0578e60e9f1506
Author: Austin English <wizardedit <AT> gentoo <DOT> org>
AuthorDate: Wed Nov 29 21:35:32 2017 +0000
Commit: Austin English <wizardedit <AT> gentoo <DOT> org>
CommitDate: Wed Nov 29 21:35:58 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a385dddd
www-apps/chromedriver-bin: append chromedriver version to downloaded filename
Gentoo-Bug: https://bugs.gentoo.org/628280
Package-Manager: Portage-2.3.16, Repoman-2.3.6
www-apps/chromedriver-bin/Manifest | 6 ++++--
www-apps/chromedriver-bin/chromedriver-bin-2.24.ebuild | 4 ++--
www-apps/chromedriver-bin/chromedriver-bin-2.30.ebuild | 4 ++--
3 files changed, 8 insertions(+), 6 deletions(-)
diff --git a/www-apps/chromedriver-bin/Manifest b/www-apps/chromedriver-bin/Manifest
index 86f466730c4..dc95fd5db04 100644
--- a/www-apps/chromedriver-bin/Manifest
+++ b/www-apps/chromedriver-bin/Manifest
@@ -1,2 +1,4 @@
-DIST chromedriver_linux32.zip 3154004 SHA256 3aca7babed99aec08a5eda717822532e9db81548b444d3aed53c4d8d2e3b19ab SHA512 36d853050c58bfc79e3b04e14f9c00cb3b5dad42cbc6a7433b06ef841184443750d714d7a5c80528e237831adf68ddb3f24540b9f19e6601e9e483e57f50cc7b WHIRLPOOL 308f6c5e5cd9bc6148e1c92172bafce20739908fe7d2a3a40159fca104a32250d91496bcb0540b1195be3bfe7697792daa8ed1187ee6da71e7cc8ee972407b0a
-DIST chromedriver_linux64.zip 3116161 SHA256 0c01b05276da98f203dc7eb4236c2ee7fe799b432734e088549bd0aadc71958e SHA512 ae1fa127560af1b8419c273f9e23253a19423276294cb920c87b0c209134244315c4d3878b9025589471d72056abb0087ef897f684e28d63b5fc71d628dd1791 WHIRLPOOL 01580ed5cdaab1f9be8068e1533f0518ca854d73afc4ce7251bcc32719e797e8a748824126ea833fef079c2d6306efd611f7b948bf609828f77767d9b81d7306
+DIST chromedriver-bin-2.24.linux32.zip 3154004 BLAKE2B 6db98f434a5a71c7d76a7fa607c96e84a5358d0f1293a5e99838bcbd7f28846422ddb2d1128fb5602b02700b7bd7b61856903bd05047007dc4f2e41a5f8d6532 SHA512 36d853050c58bfc79e3b04e14f9c00cb3b5dad42cbc6a7433b06ef841184443750d714d7a5c80528e237831adf68ddb3f24540b9f19e6601e9e483e57f50cc7b
+DIST chromedriver-bin-2.24.linux64.zip 3116161 BLAKE2B b32b8f5191b65fde09cd6fb6fa753702444e7dd15dc8f9a335bd99f9ac36942c0e7eaf546db5b688f66fa0ce429c550a20a3059e554452a2b99bb4d86b387622 SHA512 ae1fa127560af1b8419c273f9e23253a19423276294cb920c87b0c209134244315c4d3878b9025589471d72056abb0087ef897f684e28d63b5fc71d628dd1791
+DIST chromedriver-bin-2.30.linux32.zip 3891104 BLAKE2B 653365b57013549c3190d4fe2cc427b1f98bd04cd28d64be64993a99e90e33c487fcf8f3a35830659ad2f98a97a15345f24fb278c724eea4cf2ead41a19cb3b3 SHA512 341a652a4dba85a4990b6366fe1a6b392d83c32f70ec04ec69afbc90932d223f16b1944b2709b80dc4399c9377523fd494aba0e70fa7c9e22fda1e5142778a4b
+DIST chromedriver-bin-2.30.linux64.zip 3864914 BLAKE2B d31a1ff9f0eba3384bb3e1598b448c3893d65be98876ad302891657e0eaa8684733303eca618e43226a3e6eb1fd212248188d20cfc97b5aefc91186009999420 SHA512 451d120fceda3a08bba77fbae8d99c87c0902e608006a7895882a06cdcb1614afe0b563fd1b2b2bdc3ac3fbc426b5d3141245ee4d00a0c4dad6911d9a94f5d1a
diff --git a/www-apps/chromedriver-bin/chromedriver-bin-2.24.ebuild b/www-apps/chromedriver-bin/chromedriver-bin-2.24.ebuild
index f74d7cc4c86..3163f506be0 100644
--- a/www-apps/chromedriver-bin/chromedriver-bin-2.24.ebuild
+++ b/www-apps/chromedriver-bin/chromedriver-bin-2.24.ebuild
@@ -5,8 +5,8 @@ EAPI=6
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 )
- x86? ( https://chromedriver.storage.googleapis.com/${PV}/chromedriver_linux32.zip )"
+SRC_URI="amd64? ( https://chromedriver.storage.googleapis.com/${PV}/chromedriver_linux64.zip -> ${P}.linux64.zip )
+ x86? ( https://chromedriver.storage.googleapis.com/${PV}/chromedriver_linux32.zip -> ${P}.linux32.zip )"
LICENSE="google-chrome"
SLOT="0"
diff --git a/www-apps/chromedriver-bin/chromedriver-bin-2.30.ebuild b/www-apps/chromedriver-bin/chromedriver-bin-2.30.ebuild
index f74d7cc4c86..3163f506be0 100644
--- a/www-apps/chromedriver-bin/chromedriver-bin-2.30.ebuild
+++ b/www-apps/chromedriver-bin/chromedriver-bin-2.30.ebuild
@@ -5,8 +5,8 @@ EAPI=6
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 )
- x86? ( https://chromedriver.storage.googleapis.com/${PV}/chromedriver_linux32.zip )"
+SRC_URI="amd64? ( https://chromedriver.storage.googleapis.com/${PV}/chromedriver_linux64.zip -> ${P}.linux64.zip )
+ x86? ( https://chromedriver.storage.googleapis.com/${PV}/chromedriver_linux32.zip -> ${P}.linux32.zip )"
LICENSE="google-chrome"
SLOT="0"
next reply other threads:[~2017-11-29 21:36 UTC|newest]
Thread overview: 125+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-11-29 21:36 Austin English [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-03-11 13:06 [gentoo-commits] repo/gentoo:master commit in: www-apps/chromedriver-bin/ Matt Jolly
2025-03-05 11:00 Matt Jolly
2025-02-19 3:47 Matt Jolly
2025-02-13 10:59 Matt Jolly
2025-02-05 8:40 Matt Jolly
2025-01-28 23:28 Matt Jolly
2025-01-25 15:23 Matt Jolly
2025-01-15 8:15 Matt Jolly
2025-01-08 3:38 Matt Jolly
2024-12-20 23:07 Matt Jolly
2024-12-11 10:17 Matt Jolly
2024-12-04 11:33 Matt Jolly
2024-11-20 5:07 Matt Jolly
2024-11-15 21:46 Matt Jolly
2024-11-06 4:49 Matt Jolly
2024-10-30 6:54 Matt Jolly
2024-10-24 5:24 Matt Jolly
2024-10-17 18:26 Matt Jolly
2024-10-09 14:08 Matt Jolly
2024-10-02 7:19 Matt Jolly
2024-09-25 7:55 Matt Jolly
2024-09-18 6:31 Matt Jolly
2024-09-11 11:31 Matt Jolly
2024-09-07 11:28 Matt Jolly
2024-08-30 2:30 Matt Jolly
2024-08-22 9:43 Matt Jolly
2024-08-14 1:38 Matt Jolly
2024-08-07 14:43 Matt Jolly
2024-08-01 8:58 Matt Jolly
2024-07-25 5:37 Matt Jolly
2024-07-18 5:57 Matt Jolly
2024-06-26 7:14 Matt Jolly
2024-06-19 9:36 Matt Jolly
2024-06-13 9:26 Matt Jolly
2024-05-27 11:43 Matt Jolly
2024-05-22 7:12 Matt Jolly
2024-05-16 22:34 Matt Jolly
2024-05-14 7:23 Matt Jolly
2024-05-10 21:35 Matt Jolly
2024-05-08 7:15 Matt Jolly
2024-05-08 7:15 Matt Jolly
2024-04-25 6:30 Matt Jolly
2024-04-17 4:56 Matt Jolly
2024-04-11 10:14 Matt Jolly
2024-04-03 0:36 Matt Jolly
2024-03-27 3:31 Matt Jolly
2024-03-20 10:32 Matt Jolly
2024-03-13 2:25 Matt Jolly
2024-03-13 2:25 Matt Jolly
2024-03-06 2:12 Matt Jolly
2024-02-28 3:58 Matt Jolly
2024-02-18 12:55 Sam James
2024-02-18 12:55 Sam James
2023-12-08 9:09 Arthur Zamarin
2023-10-12 10:46 Sam James
2023-10-12 10:46 Sam James
2023-05-06 10:39 Arthur Zamarin
2023-04-07 4:06 Zac Medico
2023-01-15 7:51 Joonas Niilola
2023-01-13 18:42 Stephan Hartmann
2022-12-16 18:01 Stephan Hartmann
2022-12-13 5:44 Sam James
2022-09-28 14:11 Stephan Hartmann
2022-09-27 18:18 Stephan Hartmann
2022-08-30 18:30 Stephan Hartmann
2022-08-20 7:53 Stephan Hartmann
2022-07-20 22:56 Sam James
2022-06-26 7:49 Stephan Hartmann
2022-05-26 12:18 Stephan Hartmann
2022-05-24 19:35 Stephan Hartmann
2022-05-06 10:04 Stephan Hartmann
2022-03-30 19:23 Stephan Hartmann
2022-03-29 18:29 Stephan Hartmann
2022-03-06 13:03 Stephan Hartmann
2022-03-01 21:36 Stephan Hartmann
2022-02-19 9:37 Stephan Hartmann
2022-02-02 7:48 Stephan Hartmann
2022-01-05 8:45 Stephan Hartmann
2021-11-18 21:48 Stephan Hartmann
2021-11-13 20:13 Stephan Hartmann
2021-10-30 18:51 Stephan Hartmann
2021-10-19 18:49 Stephan Hartmann
2021-10-01 17:55 Stephan Hartmann
2021-09-23 6:47 Stephan Hartmann
2021-09-14 8:25 Stephan Hartmann
2021-09-02 8:06 Stephan Hartmann
2021-08-12 21:10 Stephan Hartmann
2021-07-21 15:15 Stephan Hartmann
2021-06-29 13:53 Stephan Hartmann
2021-05-29 11:23 Stephan Hartmann
2021-04-21 18:51 Sam James
2021-04-15 7:17 Stephan Hartmann
2021-03-02 21:34 Stephan Hartmann
2021-01-21 18:48 Stephan Hartmann
2020-11-17 19:53 Stephan Hartmann
2020-10-16 17:54 Stephan Hartmann
2020-10-16 17:46 Stephan Hartmann
2020-10-16 17:42 Stephan Hartmann
2020-10-08 0:08 Thomas Deutschmann
2020-08-27 16:10 Mike Gilbert
2020-07-14 20:02 Thomas Deutschmann
2020-07-14 18:06 Mike Gilbert
2020-06-24 22:21 Thomas Deutschmann
2020-06-24 22:21 Thomas Deutschmann
2020-05-24 21:21 Thomas Deutschmann
2020-04-10 22:05 Thomas Deutschmann
2020-03-01 23:04 Thomas Deutschmann
2019-12-11 14:59 Thomas Deutschmann
2019-11-21 11:40 Thomas Deutschmann
2019-11-21 11:06 Thomas Deutschmann
2019-10-27 20:39 Thomas Deutschmann
2019-09-16 2:17 Thomas Deutschmann
2019-07-31 11:17 Thomas Deutschmann
2019-05-08 19:03 Zac Medico
2019-05-08 19:03 Zac Medico
2019-04-09 3:14 Austin English
2018-09-05 21:17 Austin English
2018-06-27 0:12 Zac Medico
2018-06-27 0:02 Zac Medico
2018-01-31 23:32 Austin English
2017-07-12 22:06 Austin English
2017-07-12 18:51 Austin English
2017-07-12 18:51 Austin English
2016-09-21 22:10 Austin English
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1511991358.a385dddd0fe2acbfa98457a35f0578e60e9f1506.wizardedit@gentoo \
--to=wizardedit@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox