From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 2137D1382C5 for ; Thu, 17 Dec 2020 17:27:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3C72CE0822; Thu, 17 Dec 2020 17:27:23 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 208E6E0822 for ; Thu, 17 Dec 2020 17:27:23 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9BAA1340E3C for ; Thu, 17 Dec 2020 17:27:21 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 03FE056 for ; Thu, 17 Dec 2020 17:27:20 +0000 (UTC) From: "Stephan Hartmann" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Stephan Hartmann" Message-ID: <1608226004.7bff7b3270fda37788798f67d233a58d2d716417.sultan@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: www-client/opera/ X-VCS-Repository: repo/gentoo X-VCS-Files: www-client/opera/opera-73.0.3856.284-r1.ebuild www-client/opera/opera-73.0.3856.284.ebuild X-VCS-Directories: www-client/opera/ X-VCS-Committer: sultan X-VCS-Committer-Name: Stephan Hartmann X-VCS-Revision: 7bff7b3270fda37788798f67d233a58d2d716417 X-VCS-Branch: master Date: Thu, 17 Dec 2020 17:27:20 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: f80995ba-8496-4b76-877d-d1abf53babbc X-Archives-Hash: 2fa990f24724aaedd159966bbee150a5 commit: 7bff7b3270fda37788798f67d233a58d2d716417 Author: Stephan Hartmann gentoo org> AuthorDate: Thu Dec 17 16:36:17 2020 +0000 Commit: Stephan Hartmann gentoo org> CommitDate: Thu Dec 17 17:26:44 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7bff7b32 www-client/opera: fix widevine installation Package-Manager: Portage-3.0.9, Repoman-3.0.2 Signed-off-by: Stephan Hartmann gentoo.org> ...a-73.0.3856.284.ebuild => opera-73.0.3856.284-r1.ebuild} | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/www-client/opera/opera-73.0.3856.284.ebuild b/www-client/opera/opera-73.0.3856.284-r1.ebuild similarity index 89% rename from www-client/opera/opera-73.0.3856.284.ebuild rename to www-client/opera/opera-73.0.3856.284-r1.ebuild index a604819847f..8dd3db97412 100644 --- a/www-client/opera/opera-73.0.3856.284.ebuild +++ b/www-client/opera/opera-73.0.3856.284-r1.ebuild @@ -93,12 +93,12 @@ src_install() { # move to /opt, bug #573052 mkdir -p "${OPERA_HOME%${PN}}" mv "usr/lib/x86_64-linux-gnu/${PN}" "${OPERA_HOME%${PN}}" || die - rm -rf "usr/lib" || die + rm -r "usr/lib" || die # disable auto update rm "${OPERA_HOME}/${PN%-*}_autoupdate"{,.licenses,.version} || die - rm -rf "usr/share/lintian" || die + rm -r "usr/share/lintian" || die # fix docs mv usr/share/doc/${MY_PN} usr/share/doc/${PF} || die @@ -115,19 +115,20 @@ src_install() { popd > /dev/null || die # setup opera symlink - rm -f "usr/bin/${PN}" || die + rm "usr/bin/${PN}" || die dosym "../../${OPERA_HOME}/${PN}" "/usr/bin/${PN}" # install proprietary codecs - rm -f "resources/ffmpeg_preload_config.json" || die + rm "${OPERA_HOME}/resources/ffmpeg_preload_config.json" || die if use proprietary-codecs; then mv lib_extra "${OPERA_HOME}" fi # symlink widevine - rm -f "resources/widevine_config.json" || die + rm "${OPERA_HOME}/resources/widevine_config.json" || die if use widevine; then - dosym "../../usr/$(get_libdir)/chromium-browser/WidevineCdm" "${OPERA_HOME}/WidevineCdm" + echo "[\"${EPREFIX}/usr/$(get_libdir)/chromium-browser/WidevineCdm\"]" > \ + "${OPERA_HOME}/resources/widevine_config.json" || die fi # pax mark opera, bug #562038