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 C4156138334 for ; Sat, 6 Apr 2019 20:34:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 47394E088F; Sat, 6 Apr 2019 20:34:42 +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 21C31E088F for ; Sat, 6 Apr 2019 20:34:42 +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 C1793335D0A for ; Sat, 6 Apr 2019 20:34:40 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8B6DF598 for ; Sat, 6 Apr 2019 20:34:36 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1554582536.2930276fda5dd5b76b8521aebccc6c6ca32cca38.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-video/obs-studio/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-video/obs-studio/obs-studio-23.0.1.ebuild media-video/obs-studio/obs-studio-9999.ebuild X-VCS-Directories: media-video/obs-studio/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 2930276fda5dd5b76b8521aebccc6c6ca32cca38 X-VCS-Branch: master Date: Sat, 6 Apr 2019 20:34:36 +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: 11b826d4-a2fd-4fcb-a664-24d942923706 X-Archives-Hash: 5d1b78435a5e5803ef168aae1af20e46 commit: 2930276fda5dd5b76b8521aebccc6c6ca32cca38 Author: Jimi Huotari gentoo org> AuthorDate: Sat Mar 9 11:23:56 2019 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sat Apr 6 20:28:56 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2930276f media-video/obs-studio: switch from 'gnome2-utils' to 'xdg-utils' Package-Manager: Portage-2.3.62, Repoman-2.3.12 Signed-off-by: Jimi Huotari gentoo.org> Closes: https://github.com/gentoo/gentoo/pull/11313 Signed-off-by: Andreas Sturmlechner gentoo.org> media-video/obs-studio/obs-studio-23.0.1.ebuild | 6 +++--- media-video/obs-studio/obs-studio-9999.ebuild | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/media-video/obs-studio/obs-studio-23.0.1.ebuild b/media-video/obs-studio/obs-studio-23.0.1.ebuild index ef63ca589b6..4d5fc2543e2 100644 --- a/media-video/obs-studio/obs-studio-23.0.1.ebuild +++ b/media-video/obs-studio/obs-studio-23.0.1.ebuild @@ -5,7 +5,7 @@ EAPI=7 PYTHON_COMPAT=( python{3_4,3_5,3_6,3_7} ) -inherit cmake-utils gnome2-utils python-single-r1 +inherit cmake-utils python-single-r1 xdg-utils if [[ ${PV} == *9999 ]]; then inherit git-r3 @@ -103,7 +103,7 @@ src_configure() { } pkg_postinst() { - gnome2_icon_cache_update + xdg_icon_cache_update if ! use alsa && ! use pulseaudio; then elog @@ -125,5 +125,5 @@ pkg_postinst() { } pkg_postrm() { - gnome2_icon_cache_update + xdg_icon_cache_update } diff --git a/media-video/obs-studio/obs-studio-9999.ebuild b/media-video/obs-studio/obs-studio-9999.ebuild index abb6a6df16e..1adaf28ce86 100644 --- a/media-video/obs-studio/obs-studio-9999.ebuild +++ b/media-video/obs-studio/obs-studio-9999.ebuild @@ -5,7 +5,7 @@ EAPI=7 PYTHON_COMPAT=( python{3_4,3_5,3_6,3_7} ) -inherit cmake-utils gnome2-utils python-single-r1 +inherit cmake-utils python-single-r1 xdg-utils if [[ ${PV} == *9999 ]]; then inherit git-r3 @@ -102,7 +102,7 @@ src_configure() { } pkg_postinst() { - gnome2_icon_cache_update + xdg_icon_cache_update if ! use alsa && ! use pulseaudio; then elog @@ -124,5 +124,5 @@ pkg_postinst() { } pkg_postrm() { - gnome2_icon_cache_update + xdg_icon_cache_update }