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 0CCCD138350 for ; Mon, 2 Mar 2020 21:29:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1FEF6E08DA; Mon, 2 Mar 2020 21:29:18 +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 05C33E08DA for ; Mon, 2 Mar 2020 21:29:17 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 34EA134F2CD for ; Mon, 2 Mar 2020 21:29:16 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B6DE09C for ; Mon, 2 Mar 2020 21:29:13 +0000 (UTC) From: "Andrew Ammerlaan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrew Ammerlaan" Message-ID: <1583184544.a8635b19166658f9f7788616cac4cf2f150d94c9.andrewammerlaan@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: media-video/vidify/ X-VCS-Repository: repo/proj/guru X-VCS-Files: media-video/vidify/vidify-2.1.0.ebuild X-VCS-Directories: media-video/vidify/ X-VCS-Committer: andrewammerlaan X-VCS-Committer-Name: Andrew Ammerlaan X-VCS-Revision: a8635b19166658f9f7788616cac4cf2f150d94c9 X-VCS-Branch: dev Date: Mon, 2 Mar 2020 21:29:13 +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: c2b81d30-f0f9-4614-bd9d-0ee3b0035258 X-Archives-Hash: fb712c785c8ffc8eeb54e35dace0a437 commit: a8635b19166658f9f7788616cac4cf2f150d94c9 Author: Andrew Ammerlaan riseup net> AuthorDate: Mon Mar 2 21:29:04 2020 +0000 Commit: Andrew Ammerlaan riseup net> CommitDate: Mon Mar 2 21:29:04 2020 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=a8635b19 media-video/vidify: iherit xdg instead of xdg-utils Package-Manager: Portage-2.3.91, Repoman-2.3.20 Signed-off-by: Andrew Ammerlaan riseup.net> media-video/vidify/vidify-2.1.0.ebuild | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/media-video/vidify/vidify-2.1.0.ebuild b/media-video/vidify/vidify-2.1.0.ebuild index 7432733..7cc16dd 100644 --- a/media-video/vidify/vidify-2.1.0.ebuild +++ b/media-video/vidify/vidify-2.1.0.ebuild @@ -7,7 +7,7 @@ PYTHON_COMPAT=( python3_7 ) DISTUTILS_USE_SETUPTOOLS=rdepend -inherit eutils distutils-r1 xdg-utils +inherit eutils xdg distutils-r1 DESCRIPTION="Watch music videos in real time for the songs playing on your device" HOMEPAGE="https://github.com/vidify/vidify" @@ -47,8 +47,7 @@ python_prepare_all() { } pkg_postinst() { - xdg_desktop_database_update - xdg_icon_cache_update + xdg_pkg_postinst use mpv && elog "media-video/vlc is the default vidify player, to use mpv run 'vidify --player mpv' or set 'player = mpv' in the config file" use vlc && elog "If video playback is not working please check 'vidify --debug' for missing-codec-errors and recompile media-video/vlc with the missing codecs" @@ -57,8 +56,3 @@ pkg_postinst() { optfeature "'vidify --dark-mode'" dev-python/qdarkstyle optfeature "'vidify --audiosync'" media-video/vidify-audiosync } - -pkg_postrm() { - xdg_desktop_database_update - xdg_icon_cache_update -}