repo/gentoo:master commit in: www-plugins/chrome-binary-plugins/
"Matt Jolly" <[email protected]>
| Newsgroups | gmane.linux.gentoo.cvs |
|---|---|
| Message-ID | <1786203058.92581d0e1978898a606d34e2d36eecf95736d7e4.kangie@gentoo> |
commit: 92581d0e1978898a606d34e2d36eecf95736d7e4
Author: Matt Jolly <kangie <AT> gentoo <DOT> org>
AuthorDate: Sat Aug 8 14:35:53 2026 +0000
Commit: Matt Jolly <kangie <AT> gentoo <DOT> org>
CommitDate: Sat Aug 8 15:30:58 2026 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=92581d0e
www-plugins/chrome-binary-plugins: drop 149.0.7827.53_beta
Signed-off-by: Matt Jolly <kangie <AT> gentoo.org>
www-plugins/chrome-binary-plugins/Manifest | 1 -
...chrome-binary-plugins-149.0.7827.53_beta.ebuild | 60 ----------------------
2 files changed, 61 deletions(-)
diff --git a/www-plugins/chrome-binary-plugins/Manifest b/www-plugins/chrome-binary-plugins/Manifest
index 0d8d70704ed3..f37d3d06f19b 100644
--- a/www-plugins/chrome-binary-plugins/Manifest
+++ b/www-plugins/chrome-binary-plugins/Manifest
@@ -1,4 +1,3 @@
-DIST google-chrome-beta_149.0.7827.53-1_amd64.deb 130395104 BLAKE2B e17eb9b3d002fd956b1cefc4e7c79f99930fdbfd8dce62740ef222445edc4619ff6a8d9d34693a090453537891ab06c79886199fc047f9333f95ba3e9531d329 SHA512 467434bc3908cb9e9dff56a0c27c931d533f12f2bc195096bcd8b37910d2dc21318bc70f871a602dc147c019f95e9813a0bdcf6f5b2f606adb84551953755581
DIST google-chrome-beta_150.0.7871.13-1_amd64.deb 133813604 BLAKE2B 8249ec9090dedb3993a62ef4151d1977e59c3a936381f828e333ea15ff2e14609df57c6875c7f0cc45f53bb2ee6ffa67ec03a3546dac82f6958ce089ba3b8ef8 SHA512 145c09614de58c6a31680a96ef5b611d55cb07916fdb09bd8f0e5adcf5078fdc85cb9cba954e525a5e94d122938f08f0da47c9c8ce54464f23ea4f1fe4ba9e4c
DIST google-chrome-beta_151.0.7922.47-1_amd64.deb 139917352 BLAKE2B 04f4bdfb482772ca704c19e28e2a85faef556bcfe4720d0687960f119fe7b62d2cee3fbe5a90020138b7c4e07758c76ab1c7621961779af431a37111927e11ed SHA512 1f435614fde3503f30b45f0a399089bb5e301eb608a65bd15c62481bbd25c01a2e35410c3567e53e8c8755d914396f456e7dd34c067aa2d0047549edb0d3b4f1
DIST google-chrome-beta_152.0.7977.30-1_amd64.deb 140865608 BLAKE2B b82e44c67fcd3623d358b54eab7d432d3234a4bb0b35e7891a92c53c5dfc304c53bcb9b7fd6e6fd1853817e2d716fb6036c1f7ce643be3f6108a7fb30a67ed7d SHA512 15fab29b413a7750a02f53488dac0a87c37aacceb75d2032f4784b03003e590ce2f582ec0264ecdcb97ae06093c3d87ffa33b33ba87b683214abf88b5a038f92
diff --git a/www-plugins/chrome-binary-plugins/chrome-binary-plugins-149.0.7827.53_beta.ebuild b/www-plugins/chrome-binary-plugins/chrome-binary-plugins-149.0.7827.53_beta.ebuild
deleted file mode 100644
index 0e735527188d..000000000000
--- a/www-plugins/chrome-binary-plugins/chrome-binary-plugins-149.0.7827.53_beta.ebuild
+++ /dev/null
@@ -1,60 +0,0 @@
-# Copyright 2012-2026 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit unpacker
-
-DESCRIPTION="Binary plugins from Google Chrome for use in Chromium"
-HOMEPAGE="https://www.google.com/chrome/"
-
-case ${PV} in
- *_alpha*)
- SLOT="unstable"
- CHROMEDIR="opt/google/chrome-${SLOT}"
- MY_PV=${PV%_alpha}-1
- ;;
- *_beta*)
- SLOT="beta"
- CHROMEDIR="opt/google/chrome-${SLOT}"
- MY_PV=${PV%_beta}-1
- ;;
- *)
- SLOT="stable"
- CHROMEDIR="opt/google/chrome"
- MY_PV=${PV}-1
- ;;
-esac
-
-MY_PN="google-chrome-${SLOT}"
-MY_P="${MY_PN}_${MY_PV}"
-SRC_URI="https://dl.google.com/linux/chrome/deb/pool/main/g/${MY_PN}/${MY_P}_amd64.deb"
-S="${WORKDIR}/${CHROMEDIR}"
-
-LICENSE="google-chrome"
-KEYWORDS="~amd64"
-RESTRICT="bindist mirror strip"
-
-RDEPEND="
- dev-libs/glib:2
- dev-libs/nspr
- dev-libs/nss
- sys-libs/glibc
-"
-
-for x in 0 beta stable unstable; do
- if [[ ${SLOT} != ${x} ]]; then
- RDEPEND+=" !${CATEGORY}/${PN}:${x}"
- fi
-done
-
-QA_PREBUILT="*"
-
-pkg_nofetch() {
- eerror "Please wait 24 hours and sync your portage tree before reporting fetch failures."
-}
-
-src_install() {
- insinto "/usr/$(get_libdir)/chromium-browser"
- doins -r WidevineCdm
-}