dev-crystal/webdrivers: add 0.4.5

Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo@sysrq.in>
This commit is contained in:
Anna (cybertailor) Vyalkova
2026-06-08 21:40:38 +05:00
parent 43565bc8d5
commit 63f47a285a
2 changed files with 32 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST webdrivers-0.4.3.tar.gz 7512 BLAKE2B 447e0ab917d96ef79d982a9ceb4cf70c5cd4714437f183012e91b55a7e63a64a3fb4769cfc85d078c558750981248ec9e6b8724117409c220330e1fcab0e61f6 SHA512 7d46c7592cae01119fc0c8367a55284ce12750f3dc9643eb95ac106926561b798adb4e42b2042f4977b5d7e09d834da58f4b21ae5df2993f76b20d869d526556
DIST webdrivers-0.4.5.tar.gz 8250 BLAKE2B 9f72716a321557ee55a88a3fd94d8d025516625d18972ba5fd6243d869b7d19482ec6e5a7f1ee154f68d3aebdbaacde3805f50e4eb502e803ab1c9e6c124b913 SHA512 d46a3d9fb70c7ce16a76a1512a63900d1d94797f1e4ca0ddf2bf0b3253249a52783f57a792c6324380e8c915afe913c440793095b04ff7932fb31e98b9ee3b76

View File

@@ -0,0 +1,31 @@
# Copyright 2022-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=9
inherit shards
MY_PN="${PN}.cr"
DESCRIPTION="Helps manage drivers for Selenium, such as the Chromedriver"
HOMEPAGE="https://github.com/crystal-loot/webdrivers.cr"
SRC_URI="https://github.com/crystal-loot/${MY_PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/${MY_PN}-${PV}"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
RDEPEND="
dev-crystal/crystar
>=dev-crystal/habitat-0.4.9
"
src_prepare() {
default
# remove tests that use network
rm \
spec/webdrivers/chromedriver_spec.cr \
spec/webdrivers/geckodriver_spec.cr \
spec/webdrivers/chrome/driver_remote_version_finder_spec.cr || die
}