repo/gentoo:master commit in: www-plugins/chrome-binary-plugins/
"Matt Jolly" <[email protected]>
| Newsgroups | gmane.linux.gentoo.cvs |
|---|---|
| Message-ID | <1787043209.e95d05b97f83f76857562d52923f2575e0b83844.kangie@gentoo> |
commit: e95d05b97f83f76857562d52923f2575e0b83844
Author: Matt Jolly <kangie <AT> gentoo <DOT> org>
AuthorDate: Tue Aug 18 08:53:29 2026 +0000
Commit: Matt Jolly <kangie <AT> gentoo <DOT> org>
CommitDate: Tue Aug 18 08:53:29 2026 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e95d05b9
www-plugins/chrome-binary-plugins: drop 150.0.7871.13_beta
Signed-off-by: Matt Jolly <kangie <AT> gentoo.org>
www-plugins/chrome-binary-plugins/Manifest | 1 -
...chrome-binary-plugins-150.0.7871.13_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 81ffaf8ca992..99549a80bb45 100644
--- a/www-plugins/chrome-binary-plugins/Manifest
+++ b/www-plugins/chrome-binary-plugins/Manifest
@@ -1,4 +1,3 @@
-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
DIST google-chrome-beta_152.0.7977.30-1_arm64.deb 133021608 BLAKE2B dbb152b10128d3c00cd493a539a9278eba25e118d5cb7fb28b36e078426e78089bd66e08d93eae027f0f2dd0b2efb15aaf26f80572a0a716afae7b1adb8d7a85 SHA512 31290c8fe2f3f99caf3a226238d875c6d0faccac905a966f5357fd61896482a5a47570f56b56be6542cc4e63e533543f65a6699d1979651cf7e6045f8c88b5a5
diff --git a/www-plugins/chrome-binary-plugins/chrome-binary-plugins-150.0.7871.13_beta.ebuild b/www-plugins/chrome-binary-plugins/chrome-binary-plugins-150.0.7871.13_beta.ebuild
deleted file mode 100644
index 0e735527188d..000000000000
--- a/www-plugins/chrome-binary-plugins/chrome-binary-plugins-150.0.7871.13_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
-}