public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Michał Górny" <mgorny@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/selenium-manager/
Date: Sat, 12 Oct 2024 15:47:57 +0000 (UTC)	[thread overview]
Message-ID: <1728747377.2eea1aec8462b7d9823fd8c8f1596b345d792e11.mgorny@gentoo> (raw)

commit:     2eea1aec8462b7d9823fd8c8f1596b345d792e11
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Oct 12 15:36:17 2024 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Oct 12 15:36:17 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2eea1aec

dev-util/selenium-manager: Remove old

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-util/selenium-manager/Manifest                 |  3 -
 .../selenium-manager-4.23.0-r1.ebuild              | 89 ----------------------
 .../selenium-manager-4.24.0.ebuild                 | 89 ----------------------
 3 files changed, 181 deletions(-)

diff --git a/dev-util/selenium-manager/Manifest b/dev-util/selenium-manager/Manifest
index fa37b67444b7..b9951c7a4e07 100644
--- a/dev-util/selenium-manager/Manifest
+++ b/dev-util/selenium-manager/Manifest
@@ -1,5 +1,2 @@
-DIST selenium-manager-4.23.0-crates.tar.xz 26763004 BLAKE2B b7f584637ae436f0c867ecaef2a04ba4a58178bdffce6f15a702bb6d254368303f7b2d9c1b50e950717deffc8ffe3bbbfc92ff14cd8f472f00387e4c114e924d SHA512 1dd54ae66b7ae93cb061c538140c64062b9185d18801fc759c67945792d59f2c3033f7173216d78f0b493db0000b4efd5cdb0e405b6f7aa242f5fa2472f88811
 DIST selenium-manager-4.24.0-crates.tar.xz 27591764 BLAKE2B 42c120a77df5c48b840200772d3d49aa88c0cbfec67244d13435037631a8f0d67d03249031da44cfc6ecddfb8cd9b90b879df0be896a072141d98f772933aeab SHA512 93943e9cfc54f7e66fc25290c67bb6eee679de5c1a8c1af23c8e79d0ce15aaec4de8a38b8b2346c632ac8e93446cb8c5e37767ba955a3aa5850ad6f4dfdec340
-DIST selenium-selenium-4.23.0.gh.tar.gz 77114209 BLAKE2B ce8b2be71c4bcf83eed5e16d4770f8aa9075cd29c69ab5a019c763e65f1417094bb9e97a2d5ce5bbc773029e187ab3dee4e8296bbef1bbec580e2935b1c8f258 SHA512 0ef7bdba5a1d592e6e9adadd6e3cb0da4949822c61b2787f6d3f282f615f1de692ff775b0ea3e3f179736a685a8543bf6e4790c1a03932ccfe5933719a2bb9a3
-DIST selenium-selenium-4.24.0.gh.tar.gz 77126013 BLAKE2B a909714b93b0cfc92a9d70d8cf20609eec65ebce3470fe487a23c86ac4f6f3dbf2e2ef88e00883999fe8b5e2842a05039fec94f6617961c436649baa618c59f8 SHA512 bc6f8066efba5a4f5a27abcc37eefa303e9efd89423729fedb4f466d98ed57e68c8593248206e4fc13cebd3446fa25a5a856d5f4c1d05940d73cecc920b4c522
 DIST selenium-selenium-4.25.0.gh.tar.gz 77158053 BLAKE2B 9978239a874d32e23d98ec98eb5292153496c42abcdd0f959875b2b460df5a85c0b532b6843e0d13b931078490958ebdc2944a8c21ce2eae24a0ac6a3c830772 SHA512 6d11d1aa22d27dbc07c3d39f5f852080c5089b12b1da0251e7b09c38ac3b8f56f452a24c64a20685eb0aff238698ab4bd18a8b7089c69f261cfbcdc679ceeac8

diff --git a/dev-util/selenium-manager/selenium-manager-4.23.0-r1.ebuild b/dev-util/selenium-manager/selenium-manager-4.23.0-r1.ebuild
deleted file mode 100644
index 02782b497544..000000000000
--- a/dev-util/selenium-manager/selenium-manager-4.23.0-r1.ebuild
+++ /dev/null
@@ -1,89 +0,0 @@
-# Copyright 2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-CRATES="
-"
-
-inherit cargo
-
-TAG=selenium-${PV}
-MY_P=selenium-${TAG}
-DESCRIPTION="CLI tool that manages the browser/driver infrastructure required by Selenium"
-HOMEPAGE="
-	https://www.selenium.dev/
-	https://github.com/SeleniumHQ/selenium/
-"
-SRC_URI="
-	https://github.com/SeleniumHQ/selenium/archive/selenium-${PV}.tar.gz
-		-> ${MY_P}.gh.tar.gz
-"
-if [[ ${PKGBUMPING} != ${PVR} ]]; then
-	SRC_URI+="
-		https://dev.gentoo.org/~mgorny/dist/${P}-crates.tar.xz
-	"
-fi
-S="${WORKDIR}/${MY_P}/rust"
-
-LICENSE="Apache-2.0"
-# Dependent crate licenses
-LICENSE+=" Apache-2.0 BSD ISC MIT MPL-2.0 Unicode-DFS-2016"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc64 ~riscv ~x86"
-IUSE="telemetry test"
-RESTRICT="!test? ( test )"
-
-BDEPEND="
-	test? (
-		|| (
-			www-client/firefox
-			www-client/firefox-bin
-		)
-	)
-"
-
-QA_FLAGS_IGNORED="usr/bin/${PN}"
-
-src_prepare() {
-	default
-
-	sed -i -e '/strip/d' Cargo.toml || die
-	if ! use telemetry; then
-		sed -i -e '/avoid-stats/s:false:true:' src/config.rs || die
-	fi
-
-	# Avoid tests requiring Internet or specific browsers (or trying
-	# to fetch them, whatever).
-	rm tests/browser_download_tests.rs || die
-	rm tests/exec_driver_tests.rs || die
-	rm tests/grid_tests.rs || die
-	rm tests/browser_tests.rs || die
-	rm tests/config_tests.rs || die
-	rm tests/iexplorer_tests.rs || die
-	rm tests/mirror_tests.rs || die
-	rm tests/stable_browser_tests.rs || die
-	rm tests/webview_tests.rs || die
-}
-
-src_test() {
-	local -x PATH=${T}/bin:${PATH}
-
-	mkdir "${T}/bin" || die
-	if ! has_version "www-client/firefox"; then
-		# upstream expects "firefox" rather than "firefox-bin"
-		ln -s "$(type -P firefox-bin)" "${T}/bin/firefox" || die
-	fi
-
-	cargo_src_test --no-fail-fast
-}
-
-src_install() {
-	cargo_src_install
-	einstalldocs
-	dodoc README.md
-
-	newenvd - 70selenium-manager <<-EOF || die
-		SE_MANAGER_PATH="${EPREFIX}/usr/bin/selenium-manager"
-	EOF
-}

diff --git a/dev-util/selenium-manager/selenium-manager-4.24.0.ebuild b/dev-util/selenium-manager/selenium-manager-4.24.0.ebuild
deleted file mode 100644
index 3bdc3ae91663..000000000000
--- a/dev-util/selenium-manager/selenium-manager-4.24.0.ebuild
+++ /dev/null
@@ -1,89 +0,0 @@
-# Copyright 2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-CRATES="
-"
-
-inherit cargo
-
-TAG=selenium-${PV}
-MY_P=selenium-${TAG}
-DESCRIPTION="CLI tool that manages the browser/driver infrastructure required by Selenium"
-HOMEPAGE="
-	https://www.selenium.dev/
-	https://github.com/SeleniumHQ/selenium/
-"
-SRC_URI="
-	https://github.com/SeleniumHQ/selenium/archive/selenium-${PV}.tar.gz
-		-> ${MY_P}.gh.tar.gz
-"
-if [[ ${PKGBUMPING} != ${PVR} ]]; then
-	SRC_URI+="
-		https://dev.gentoo.org/~mgorny/dist/${P}-crates.tar.xz
-	"
-fi
-S="${WORKDIR}/${MY_P}/rust"
-
-LICENSE="Apache-2.0"
-# Dependent crate licenses
-LICENSE+=" Apache-2.0 BSD ISC MIT MPL-2.0 Unicode-DFS-2016"
-SLOT="0"
-KEYWORDS="amd64 ~arm64 ~ppc64 ~riscv x86"
-IUSE="telemetry test"
-RESTRICT="!test? ( test )"
-
-BDEPEND="
-	test? (
-		|| (
-			www-client/firefox
-			www-client/firefox-bin
-		)
-	)
-"
-
-QA_FLAGS_IGNORED="usr/bin/${PN}"
-
-src_prepare() {
-	default
-
-	sed -i -e '/strip/d' Cargo.toml || die
-	if ! use telemetry; then
-		sed -i -e '/avoid-stats/s:false:true:' src/config.rs || die
-	fi
-
-	# Avoid tests requiring Internet or specific browsers (or trying
-	# to fetch them, whatever).
-	rm tests/browser_download_tests.rs || die
-	rm tests/exec_driver_tests.rs || die
-	rm tests/grid_tests.rs || die
-	rm tests/browser_tests.rs || die
-	rm tests/config_tests.rs || die
-	rm tests/iexplorer_tests.rs || die
-	rm tests/mirror_tests.rs || die
-	rm tests/stable_browser_tests.rs || die
-	rm tests/webview_tests.rs || die
-}
-
-src_test() {
-	local -x PATH=${T}/bin:${PATH}
-
-	mkdir "${T}/bin" || die
-	if ! has_version "www-client/firefox"; then
-		# upstream expects "firefox" rather than "firefox-bin"
-		ln -s "$(type -P firefox-bin)" "${T}/bin/firefox" || die
-	fi
-
-	cargo_src_test --no-fail-fast
-}
-
-src_install() {
-	cargo_src_install
-	einstalldocs
-	dodoc README.md
-
-	newenvd - 70selenium-manager <<-EOF || die
-		SE_MANAGER_PATH="${EPREFIX}/usr/bin/selenium-manager"
-	EOF
-}


             reply	other threads:[~2024-10-12 15:48 UTC|newest]

Thread overview: 58+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-10-12 15:47 Michał Górny [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-10-18  6:22 [gentoo-commits] repo/gentoo:master commit in: dev-util/selenium-manager/ Michał Górny
2025-10-03  5:38 Michał Górny
2025-10-03  5:38 Michał Górny
2025-08-13 16:59 Michał Górny
2025-08-13  8:07 Michał Górny
2025-07-20 15:53 Sam James
2025-07-19  9:00 Sam James
2025-06-29 19:34 Michał Górny
2025-06-07 10:43 Michał Górny
2025-06-07  8:52 Arthur Zamarin
2025-06-07  8:44 Michał Górny
2025-05-24  6:11 Michał Górny
2025-05-21 10:56 Arthur Zamarin
2025-05-20  1:52 Michał Górny
2025-05-19 18:08 Michał Górny
2025-05-17 13:23 Sam James
2025-05-03  6:08 Michał Górny
2025-04-05  6:37 Michał Górny
2025-03-22  6:31 Michał Górny
2025-03-09  2:38 Sam James
2025-03-08 16:56 Sam James
2025-03-08  8:58 Michał Górny
2025-02-21  5:20 Michał Górny
2025-02-08 18:04 Sam James
2025-02-08 11:39 Arthur Zamarin
2025-01-21  4:34 Michał Górny
2024-12-15 10:50 Sam James
2024-12-14 12:57 Arthur Zamarin
2024-11-26  7:01 Michał Górny
2024-11-23 17:21 Michał Górny
2024-11-23 16:55 Michał Górny
2024-11-23 14:15 Michał Górny
2024-11-23  8:45 Arthur Zamarin
2024-11-23  8:27 Arthur Zamarin
2024-10-31  5:24 Michał Górny
2024-10-12 14:57 Sam James
2024-10-12  8:13 Michał Górny
2024-09-21  7:41 Michał Górny
2024-09-16 13:09 Joonas Niilola
2024-09-16 13:09 Joonas Niilola
2024-09-01 19:57 Arthur Zamarin
2024-08-29  4:52 Michał Górny
2024-07-24 15:44 Michał Górny
2024-07-24 14:18 Michał Górny
2024-07-24 14:18 Michał Górny
2023-12-02 14:56 Arthur Zamarin
2023-12-02 10:43 Hans de Graaff
2023-11-30 18:33 Jakov Smolić
2023-11-04  7:06 Hans de Graaff
2023-10-21  6:16 Hans de Graaff
2023-10-20  5:35 Hans de Graaff
2023-10-06  6:45 Hans de Graaff
2023-10-06  6:45 Hans de Graaff
2023-09-18 20:04 Arthur Zamarin
2023-09-05 12:06 Hans de Graaff
2023-09-03  6:28 Hans de Graaff
2023-08-25 13:13 Hans de Graaff

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=1728747377.2eea1aec8462b7d9823fd8c8f1596b345d792e11.mgorny@gentoo \
    --to=mgorny@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