From 0b14c73e052109d0da079abf6b33366c49e84289 Mon Sep 17 00:00:00 2001 From: Mike Gilbert Date: Thu, 10 Nov 2022 14:21:40 -0500 Subject: www-plugins/chrome-binary-plugins: automated update (107.0.5304.110) Signed-off-by: Mike Gilbert --- www-plugins/chrome-binary-plugins/Manifest | 2 +- .../chrome-binary-plugins-107.0.5304.110.ebuild | 62 ++++++++++++++++++++++ .../chrome-binary-plugins-107.0.5304.87.ebuild | 62 ---------------------- 3 files changed, 63 insertions(+), 63 deletions(-) create mode 100644 www-plugins/chrome-binary-plugins/chrome-binary-plugins-107.0.5304.110.ebuild delete mode 100644 www-plugins/chrome-binary-plugins/chrome-binary-plugins-107.0.5304.87.ebuild (limited to 'www-plugins') diff --git a/www-plugins/chrome-binary-plugins/Manifest b/www-plugins/chrome-binary-plugins/Manifest index d7781e31c34a..157a193051fd 100644 --- a/www-plugins/chrome-binary-plugins/Manifest +++ b/www-plugins/chrome-binary-plugins/Manifest @@ -1,3 +1,3 @@ DIST google-chrome-beta_108.0.5359.30-1_amd64.deb 92393248 BLAKE2B 9e11139650a0cf8242673002b528c0a858b3279e282a648d51e1c7ef5480569205aed5924e92126bb824a541040e1a51a13d6ced04f8844f9f12a5e9434cd060 SHA512 b8857938da29eb4d36dfec0bc33543dadf2273a1c2f6d72c2b5c5e748c5a72384fbd938993918fbbc9b8517b3f8f4216087dd93da93a5643ca2b2dc077c8c76b -DIST google-chrome-stable_107.0.5304.87-1_amd64.deb 92931088 BLAKE2B 344da2abb7f030216d84caa0a79ccd994a8094e5ed65bd490c76ef414ebc29fca0f290e831b5805fd419e130a8d3c269f6676335e026b5e742e90782a23399e1 SHA512 07b443bc1382431da84f6812b7e19f1149aa195fb8b3d28834630cc5964fb9d12124abbf4ec1c98d5c0513cdf16c2a3f16a74518c984aaf57ca418b3cd36a4e2 +DIST google-chrome-stable_107.0.5304.110-1_amd64.deb 93320612 BLAKE2B 60c2edfd76e322d6c494d7d0b1135b01bd20bfd14430cc9489c2a9e2f455bc008fadb619cb8970ea5a145e5d1e71479f7fcfbf699a260df70f7496524e103431 SHA512 34bd64d5136522240f34aab8ba4de7cfaa51c856a80d2c443cf1b732422cd9a87a0df09e7e018d5b3149cd1d2e8603f1d67ddb7ee6a90bc4786dff3cfccef70b DIST google-chrome-unstable_109.0.5396.2-1_amd64.deb 93730984 BLAKE2B 11630c22b483dd57cd1903e7b89dfd367a04b6bf3ac294d411b518d110e029fadd43e76a4502aff217fb1b29d9a755f57c19af06ea50a56e2784c3c45047c63b SHA512 af3462b332aca05a6fb07285893ebd269a8f4cd58571cb7d9dd7d55ceaf117e07c5bdc63a43ad79165a6c3e7fa831a08ab298eb5cbca477cff2b902cde6b3d5b diff --git a/www-plugins/chrome-binary-plugins/chrome-binary-plugins-107.0.5304.110.ebuild b/www-plugins/chrome-binary-plugins/chrome-binary-plugins-107.0.5304.110.ebuild new file mode 100644 index 000000000000..a8c4f73dffbd --- /dev/null +++ b/www-plugins/chrome-binary-plugins/chrome-binary-plugins-107.0.5304.110.ebuild @@ -0,0 +1,62 @@ +# Copyright 2012-2022 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 + +KEYWORDS="-* amd64" + +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" + +LICENSE="google-chrome" +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 + +S="${WORKDIR}/${CHROMEDIR}" +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 +} diff --git a/www-plugins/chrome-binary-plugins/chrome-binary-plugins-107.0.5304.87.ebuild b/www-plugins/chrome-binary-plugins/chrome-binary-plugins-107.0.5304.87.ebuild deleted file mode 100644 index a8c4f73dffbd..000000000000 --- a/www-plugins/chrome-binary-plugins/chrome-binary-plugins-107.0.5304.87.ebuild +++ /dev/null @@ -1,62 +0,0 @@ -# Copyright 2012-2022 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 - -KEYWORDS="-* amd64" - -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" - -LICENSE="google-chrome" -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 - -S="${WORKDIR}/${CHROMEDIR}" -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 -} -- cgit v1.2.3-65-gdbad