From 494bd57940be8fc6334b61a25dc9a0a10da1a5d9 Mon Sep 17 00:00:00 2001 From: Stephan Hartmann Date: Tue, 30 Mar 2021 22:30:13 +0200 Subject: www-plugins/chrome-binary-plugins: automated update (89.0.4389.114) Signed-off-by: Stephan Hartmann --- www-plugins/chrome-binary-plugins/Manifest | 2 +- .../chrome-binary-plugins-89.0.4389.114.ebuild | 61 ++++++++++++++++++++++ .../chrome-binary-plugins-89.0.4389.90.ebuild | 61 ---------------------- 3 files changed, 62 insertions(+), 62 deletions(-) create mode 100644 www-plugins/chrome-binary-plugins/chrome-binary-plugins-89.0.4389.114.ebuild delete mode 100644 www-plugins/chrome-binary-plugins/chrome-binary-plugins-89.0.4389.90.ebuild diff --git a/www-plugins/chrome-binary-plugins/Manifest b/www-plugins/chrome-binary-plugins/Manifest index 6020e94fb6e8..91b6df26d391 100644 --- a/www-plugins/chrome-binary-plugins/Manifest +++ b/www-plugins/chrome-binary-plugins/Manifest @@ -1,3 +1,3 @@ DIST google-chrome-beta_90.0.4430.40-1_amd64.deb 77768616 BLAKE2B 109ba108a70c0796b64efb2f252394722ef3307fa70d2837fe73a3988634c867dd55eb30811908c00c63538e94dc23c15062e62f1160f9cd2f6c1e5259b2063b SHA512 c9b75ad0dd14325c8339c1a9f3cffb38b18690172900cbd425bb5af68b57572d28507bb94ed7dcc4e44a413cee38debe846f7d777733259c055e7d74b4b25eea -DIST google-chrome-stable_89.0.4389.90-1_amd64.deb 75841728 BLAKE2B 1de16e3916e1dfe646d37327ec7c69417d40bf751e43d76a85f8e8f81e654669a994223a0f5c9a8bcbbe4abf3db2f50cbe4e2072742da3ae9aae855915098641 SHA512 768557218228c0129d478dd3da8d1a21c62002f0e2f1e533567dd50a2757a9de0ad141366a6927d0a4877d5f38be6dc3c246e4ec64e3113411bf90733ce477d1 +DIST google-chrome-stable_89.0.4389.114-1_amd64.deb 75857544 BLAKE2B b39c6db6aba2686f73ec31e7299f5bae3ed4b7abd074e28ea976b7f0f9beb515fe6faa89978a4eb20f2a87ebcea58b0e0fe152a1bf9b377f781dc692b7a42d90 SHA512 33813521e2ad77f261d91ce3d13480c76c7d4d4e58b2d3f1dc2201c9aa0caed51ea4e4470a539b39d6f4ce38d11c318243e02642d44979c636a8e83d12f79a10 DIST google-chrome-unstable_91.0.4455.2-1_amd64.deb 78950724 BLAKE2B 79240cea248b27eacffb9abe74beb9ba61f6fd1406bc78dd62c50dc829bde4c167e6a7a1c3c0fa69747cb2bec684d58569cdf84adb43c3c8ec9617b61873eb37 SHA512 1a68587e6c34cc30e688b92af5cae49b7b52662fd97041b74cfa32d91d66ae3f2447dd6824e39822f8111ad11fd2d71cb6cf1f1d95ae6a67e822ab209f9a65c8 diff --git a/www-plugins/chrome-binary-plugins/chrome-binary-plugins-89.0.4389.114.ebuild b/www-plugins/chrome-binary-plugins/chrome-binary-plugins-89.0.4389.114.ebuild new file mode 100644 index 000000000000..2e17df9a1303 --- /dev/null +++ b/www-plugins/chrome-binary-plugins/chrome-binary-plugins-89.0.4389.114.ebuild @@ -0,0 +1,61 @@ +# Copyright 2012-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +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-89.0.4389.90.ebuild b/www-plugins/chrome-binary-plugins/chrome-binary-plugins-89.0.4389.90.ebuild deleted file mode 100644 index 2e17df9a1303..000000000000 --- a/www-plugins/chrome-binary-plugins/chrome-binary-plugins-89.0.4389.90.ebuild +++ /dev/null @@ -1,61 +0,0 @@ -# Copyright 2012-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -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