From fbfd67f274bdf67932c29002f3fb5cc124e759cc Mon Sep 17 00:00:00 2001 From: Matt Jolly Date: Wed, 3 Apr 2024 09:13:46 +1000 Subject: www-plugins/chrome-binary-plugins: automated update (124.0.6367.18_beta) Signed-off-by: Matt Jolly --- www-plugins/chrome-binary-plugins/Manifest | 2 +- ...chrome-binary-plugins-124.0.6367.18_beta.ebuild | 62 ++++++++++++++++++++++ .../chrome-binary-plugins-124.0.6367.9_beta.ebuild | 62 ---------------------- 3 files changed, 63 insertions(+), 63 deletions(-) create mode 100644 www-plugins/chrome-binary-plugins/chrome-binary-plugins-124.0.6367.18_beta.ebuild delete mode 100644 www-plugins/chrome-binary-plugins/chrome-binary-plugins-124.0.6367.9_beta.ebuild (limited to 'www-plugins') diff --git a/www-plugins/chrome-binary-plugins/Manifest b/www-plugins/chrome-binary-plugins/Manifest index dba4e8f3fc5f..497f075ed9fd 100644 --- a/www-plugins/chrome-binary-plugins/Manifest +++ b/www-plugins/chrome-binary-plugins/Manifest @@ -1,3 +1,3 @@ -DIST google-chrome-beta_124.0.6367.9-1_amd64.deb 106814352 BLAKE2B 04f1a26f0d5fcabb32cb5fdf9529f1919665aa179b771f9e7ac96c335e7f6a4f15a6345ead2dc06fa366c5748395a086a8bd918049f7f620990572b17a2dcb28 SHA512 1b9bea9abc6caf1020c68de33a7ab39d12069701f7fa443874d23324a2cfb798102798abb30f710a19f51ababf46c47313527cdc75779137588e676e056caa82 +DIST google-chrome-beta_124.0.6367.18-1_amd64.deb 107695296 BLAKE2B b511199e7aa7c891f5ff568f7e581cb797026a390c29b889e900c1510940a4142dff2e8b4e4cab8deb22931e72f50e7fdacfbc841e0ebbe1845cde2f29098961 SHA512 3aa43ab0e69db1bd26c8ce1bfaa992557c4c2b321dfeae203c7938a9e79a0daf68ab82b9931f2ab68d49e8350947abc96b0aad321cd4f87b82d8f9b1dedaeb34 DIST google-chrome-stable_123.0.6312.105-1_amd64.deb 107229972 BLAKE2B 995c45a3c2d0ee9c670bd84b08ad3ca0eb34700391315125cd39a52e89846099f89e7cb626d9290d63333bafc93ef18df73bad2f76908a077dcda216db65f047 SHA512 b5bc4a3ae20d60bf2fa05ae332d14892b3395c538572259a03ea2baf5a9293e71af23d37794cbc40c7378f9389fa76de07124df9df90831088df1411cd30855e DIST google-chrome-unstable_125.0.6368.2-1_amd64.deb 107205084 BLAKE2B 6c6b9fdc9fd1c66d94cdb4cc03dcbf65ecce8db5532c8d50aff6a0f75fba3945066635dd8ccbf3a51c4e342f4a691b8dca23ae3fd3c46bb967fb1156dde4eb09 SHA512 14160d8ec8c62df9a48152f2ad457718020582450755486cedba8208a4d3aa23f0839c53a58b5eb94f5f4bc28579bdafeb6e2cc801c73adf403e4eb74252aab7 diff --git a/www-plugins/chrome-binary-plugins/chrome-binary-plugins-124.0.6367.18_beta.ebuild b/www-plugins/chrome-binary-plugins/chrome-binary-plugins-124.0.6367.18_beta.ebuild new file mode 100644 index 000000000000..8002828065ef --- /dev/null +++ b/www-plugins/chrome-binary-plugins/chrome-binary-plugins-124.0.6367.18_beta.ebuild @@ -0,0 +1,62 @@ +# Copyright 2012-2024 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-124.0.6367.9_beta.ebuild b/www-plugins/chrome-binary-plugins/chrome-binary-plugins-124.0.6367.9_beta.ebuild deleted file mode 100644 index 8002828065ef..000000000000 --- a/www-plugins/chrome-binary-plugins/chrome-binary-plugins-124.0.6367.9_beta.ebuild +++ /dev/null @@ -1,62 +0,0 @@ -# Copyright 2012-2024 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