From 85ee453ff9880af57605e9d76d115389c9315c45 Mon Sep 17 00:00:00 2001 From: Stephan Hartmann Date: Tue, 21 Sep 2021 23:40:12 +0200 Subject: www-plugins/chrome-binary-plugins: automated update (94.0.4606.54) Signed-off-by: Stephan Hartmann --- www-plugins/chrome-binary-plugins/Manifest | 2 +- .../chrome-binary-plugins-94.0.4606.50_beta.ebuild | 61 ---------------------- .../chrome-binary-plugins-94.0.4606.54_beta.ebuild | 61 ++++++++++++++++++++++ 3 files changed, 62 insertions(+), 62 deletions(-) delete mode 100644 www-plugins/chrome-binary-plugins/chrome-binary-plugins-94.0.4606.50_beta.ebuild create mode 100644 www-plugins/chrome-binary-plugins/chrome-binary-plugins-94.0.4606.54_beta.ebuild (limited to 'www-plugins') diff --git a/www-plugins/chrome-binary-plugins/Manifest b/www-plugins/chrome-binary-plugins/Manifest index e5035805019e..06a83822a74d 100644 --- a/www-plugins/chrome-binary-plugins/Manifest +++ b/www-plugins/chrome-binary-plugins/Manifest @@ -1,3 +1,3 @@ -DIST google-chrome-beta_94.0.4606.50-1_amd64.deb 91316896 BLAKE2B 9752614cc7b7b824cc886c45b140e0d441b389224727c05323c760410d0df78e071a4a5d71d4986dd9ceb460b7d77e16dde1b0bfabeda7c8902d9b33001b8161 SHA512 1f14cc64500de45d5496b981103433f3cfaac85fd766ad6454d249afab9d2c9a67802d325df794a76a2ebc7af9ae9fdcb88d528797f15209d3489a6d0caf55e0 +DIST google-chrome-beta_94.0.4606.54-1_amd64.deb 90551876 BLAKE2B cdbf81e340d8b027a81d3cdf27c39439a3cc21226a2f4fb6b1ddceba79829200d3d5621f221dfe651416f619f772eba8eb50b48db33a219b22fe10398fb42b2f SHA512 ce734b0bf8719e451309117f200c0c96108c16237e944a971ff06d5e89616f93182ac43ab40b9b42539eaae88df967845bd4bc4057a0bcf2b122144649a414fb DIST google-chrome-stable_94.0.4606.54-1_amd64.deb 90537300 BLAKE2B b446dd18d497c41eff938eecdad8331e5dee3ad46b1f044c2f5a570f4924093fce6db99b48d9f314720b03180dfb1c054feb1a6fb833eeb6fff6c5b673d081d7 SHA512 983280c72dd2385edfc8772bcaeef05070a7cb082f08d65be047171f3bb4451a108720ab1e0925a16908272a1da121b3e5f9ad40a1f9626c8c1dda59914fa609 DIST google-chrome-unstable_95.0.4638.10-1_amd64.deb 89822092 BLAKE2B 735e26695f5a46e53f782243f89c860bac8a8e99aa195a27208ffe83f369a98627306ffcdc70ccffb2ce405ae160a22a2fcb923fc679b3062d59005ca5efc582 SHA512 42b2a6260ad93941b72ec9939d564439d9b0717a7ee118fec0e82bdb79629ec1834ddcb9c7687c4d6a1b895e15c8ca5a39c3ea01d4a63151ed17dd6af5e34598 diff --git a/www-plugins/chrome-binary-plugins/chrome-binary-plugins-94.0.4606.50_beta.ebuild b/www-plugins/chrome-binary-plugins/chrome-binary-plugins-94.0.4606.50_beta.ebuild deleted file mode 100644 index 969dd2f57c6a..000000000000 --- a/www-plugins/chrome-binary-plugins/chrome-binary-plugins-94.0.4606.50_beta.ebuild +++ /dev/null @@ -1,61 +0,0 @@ -# Copyright 2012-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit multilib 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 -" - -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-94.0.4606.54_beta.ebuild b/www-plugins/chrome-binary-plugins/chrome-binary-plugins-94.0.4606.54_beta.ebuild new file mode 100644 index 000000000000..969dd2f57c6a --- /dev/null +++ b/www-plugins/chrome-binary-plugins/chrome-binary-plugins-94.0.4606.54_beta.ebuild @@ -0,0 +1,61 @@ +# Copyright 2012-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit multilib 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 +" + +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