From 55fd3df15ccb5326db361fa96cd5cf0b98d802d3 Mon Sep 17 00:00:00 2001 From: Mike Gilbert Date: Sat, 30 Apr 2016 18:07:47 -0400 Subject: www-plugins/chrome-binary-plugins: automated update Package-Manager: portage-2.2.28_p97 --- www-plugins/chrome-binary-plugins/Manifest | 2 +- .../chrome-binary-plugins-50.0.2661.86.ebuild | 82 ---------------------- .../chrome-binary-plugins-50.0.2661.94.ebuild | 82 ++++++++++++++++++++++ 3 files changed, 83 insertions(+), 83 deletions(-) delete mode 100644 www-plugins/chrome-binary-plugins/chrome-binary-plugins-50.0.2661.86.ebuild create mode 100644 www-plugins/chrome-binary-plugins/chrome-binary-plugins-50.0.2661.94.ebuild (limited to 'www-plugins') diff --git a/www-plugins/chrome-binary-plugins/Manifest b/www-plugins/chrome-binary-plugins/Manifest index 08edb06a3ed8..596976034063 100644 --- a/www-plugins/chrome-binary-plugins/Manifest +++ b/www-plugins/chrome-binary-plugins/Manifest @@ -1,3 +1,3 @@ DIST google-chrome-beta_51.0.2704.29-1_amd64.deb 48939850 SHA256 c4864a83410e32fd193862da3fbae53659fb72d50c38260f13ac3686edb8fe06 SHA512 c4cd54c7a482ffa27bbd42d448d6c8f300361067cfe56525bf65724566790bf23a8a4592f37838422796b4a1575ce422e8550121ac644ce4e03f199d778069f3 WHIRLPOOL 1976987c4b041067330a515ab52817b240c919ff38d3578ee47955505410f5eed2f1cf0308f3fdab3948f33d3d6aa0d48a606870caaaaf7b37dac2b83828cde4 -DIST google-chrome-stable_50.0.2661.86-1_amd64.deb 48359132 SHA256 6cb12dce5c4c39ef86512c5f4394509a8650f13a6bd755ea3cc2c7538e8deb3a SHA512 ddf550d6568a980f7c4320b04eaa72b27df989eb8eee76bfd2a14524a63a1a7f38c233e65ec8e67dfbbfaa1f60718168b245c9c10f6b5ecc9f66af5f71a167e0 WHIRLPOOL 3e5be637c8293dafa3a2bbf60e155f8ece5c63a319ead912caf36841aa21092fa3bdeb1ba589b8157f78c637a4546f232368d821a94f822a2b64be353826299b +DIST google-chrome-stable_50.0.2661.94-1_amd64.deb 48371848 SHA256 3803339eb3850071ad932256b85f529d307f57638bc4ce5fd638f7481134dbdd SHA512 8b95ad80e28e40f606b14f9b09c45b592fa939f7e03bc1ddd032e9c1edf404e80d81d4182e7022752273cd963310ba4e393df8ac5ff6962b8af6cdc23909fc4d WHIRLPOOL 9784344cd06925938fa5ff5a1a7f0bd9448b364875d3c64ae21609d4c059050777877012b23d113d57b32d55e5598dcc4930161b130aaac846eb64e1b6619f46 DIST google-chrome-unstable_52.0.2716.0-1_amd64.deb 53522910 SHA256 b4483bf5ffe99546d5ec2ade3e3a73384ae843b1fdcca919007ccfa36aa2b4d4 SHA512 ad3ecb37da1c5ccdd775ecf35ece89eb36fd5ac0fd1205adedfa7c5a98afe739748b1223442084f49a4a15b84876a9d53fd97cc6bedafafce8ade3635e16aa75 WHIRLPOOL a8e609ded1b6854f5039876aedb5873f3147cd8e3112eae56123a54c7c7b645327a20b4960ac4a1240e785acd1c74f652101806757ef445ffe2200667f47b82a diff --git a/www-plugins/chrome-binary-plugins/chrome-binary-plugins-50.0.2661.86.ebuild b/www-plugins/chrome-binary-plugins/chrome-binary-plugins-50.0.2661.86.ebuild deleted file mode 100644 index 23cd900adc0e..000000000000 --- a/www-plugins/chrome-binary-plugins/chrome-binary-plugins-50.0.2661.86.ebuild +++ /dev/null @@ -1,82 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 - -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 - -MY_PN="google-chrome-${SLOT}" -MY_P="${MY_PN}_${MY_PV}" - -SRC_URI=" - amd64? ( - https://dl.google.com/linux/chrome/deb/pool/main/g/${MY_PN}/${MY_P}_amd64.deb - ) -" -KEYWORDS="-* amd64" - -LICENSE="google-chrome" -IUSE="+flash +widevine" -RESTRICT="bindist mirror strip" - -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() { - local version flapper - - insinto /usr/$(get_libdir)/chromium-browser/ - - if use widevine; then - doins libwidevinecdm.so - strings ./chrome | grep -C 1 " (version:" | tail -1 > widevine.version - doins widevine.version - fi - - if use flash; then - doins -r PepperFlash - - # Since this is a live ebuild, we're forced to, unfortuantely, - # dynamically construct the command line args for Chromium. - version=$(sed -n 's/.*"version": "\(.*\)",.*/\1/p' PepperFlash/manifest.json) - flapper="${ROOT}usr/$(get_libdir)/chromium-browser/PepperFlash/libpepflashplayer.so" - echo -n "CHROMIUM_FLAGS=\"\${CHROMIUM_FLAGS} " > pepper-flash - echo -n "--ppapi-flash-path=$flapper " >> pepper-flash - echo "--ppapi-flash-version=$version\"" >> pepper-flash - - insinto /etc/chromium/ - doins pepper-flash - fi -} diff --git a/www-plugins/chrome-binary-plugins/chrome-binary-plugins-50.0.2661.94.ebuild b/www-plugins/chrome-binary-plugins/chrome-binary-plugins-50.0.2661.94.ebuild new file mode 100644 index 000000000000..23cd900adc0e --- /dev/null +++ b/www-plugins/chrome-binary-plugins/chrome-binary-plugins-50.0.2661.94.ebuild @@ -0,0 +1,82 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +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 + +MY_PN="google-chrome-${SLOT}" +MY_P="${MY_PN}_${MY_PV}" + +SRC_URI=" + amd64? ( + https://dl.google.com/linux/chrome/deb/pool/main/g/${MY_PN}/${MY_P}_amd64.deb + ) +" +KEYWORDS="-* amd64" + +LICENSE="google-chrome" +IUSE="+flash +widevine" +RESTRICT="bindist mirror strip" + +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() { + local version flapper + + insinto /usr/$(get_libdir)/chromium-browser/ + + if use widevine; then + doins libwidevinecdm.so + strings ./chrome | grep -C 1 " (version:" | tail -1 > widevine.version + doins widevine.version + fi + + if use flash; then + doins -r PepperFlash + + # Since this is a live ebuild, we're forced to, unfortuantely, + # dynamically construct the command line args for Chromium. + version=$(sed -n 's/.*"version": "\(.*\)",.*/\1/p' PepperFlash/manifest.json) + flapper="${ROOT}usr/$(get_libdir)/chromium-browser/PepperFlash/libpepflashplayer.so" + echo -n "CHROMIUM_FLAGS=\"\${CHROMIUM_FLAGS} " > pepper-flash + echo -n "--ppapi-flash-path=$flapper " >> pepper-flash + echo "--ppapi-flash-version=$version\"" >> pepper-flash + + insinto /etc/chromium/ + doins pepper-flash + fi +} -- cgit v1.2.3-65-gdbad