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 ABADC1382C5 for ; Mon, 15 Jun 2020 16:04:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9CDE2E08FC; Mon, 15 Jun 2020 16:04:04 +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 81E78E08FC for ; Mon, 15 Jun 2020 16:04:04 +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 682AA34F052 for ; Mon, 15 Jun 2020 16:04:03 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 575B3297 for ; Mon, 15 Jun 2020 16:04:00 +0000 (UTC) From: "Daniel Novomesky" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Daniel Novomesky" Message-ID: <1592236957.ed7cb45842eca7a30a79dc228a107065b0fa412b.dnovomesky@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: media-plugins/qt-avif-image-plugin/ X-VCS-Repository: repo/proj/guru X-VCS-Files: media-plugins/qt-avif-image-plugin/qt-avif-image-plugin-9999.ebuild X-VCS-Directories: media-plugins/qt-avif-image-plugin/ X-VCS-Committer: dnovomesky X-VCS-Committer-Name: Daniel Novomesky X-VCS-Revision: ed7cb45842eca7a30a79dc228a107065b0fa412b X-VCS-Branch: dev Date: Mon, 15 Jun 2020 16:04:00 +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: f2af07a0-8bc9-4393-b377-020eac523d97 X-Archives-Hash: 46a4876cbc2aa8de424fe6192823d172 commit: ed7cb45842eca7a30a79dc228a107065b0fa412b Author: Daniel Novomesky gmail com> AuthorDate: Mon Jun 15 16:02:37 2020 +0000 Commit: Daniel Novomesky gmail com> CommitDate: Mon Jun 15 16:02:37 2020 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=ed7cb458 media-plugins/qt-avif-image-plugin: simplify ebuild I no longer install AVIF mimetypes because they were added to shared-mime-info-2.0 Package-Manager: Portage-2.3.99, Repoman-2.3.22 Signed-off-by: Daniel Novomesky gmail.com> .../qt-avif-image-plugin/qt-avif-image-plugin-9999.ebuild | 15 ++------------- 1 file changed, 2 insertions(+), 13 deletions(-) diff --git a/media-plugins/qt-avif-image-plugin/qt-avif-image-plugin-9999.ebuild b/media-plugins/qt-avif-image-plugin/qt-avif-image-plugin-9999.ebuild index a24f325..542ae42 100644 --- a/media-plugins/qt-avif-image-plugin/qt-avif-image-plugin-9999.ebuild +++ b/media-plugins/qt-avif-image-plugin/qt-avif-image-plugin-9999.ebuild @@ -3,7 +3,7 @@ EAPI="7" -inherit cmake xdg-utils +inherit cmake DESCRIPTION="Qt plug-in to allow Qt and KDE based applications to read/write AVIF images." HOMEPAGE="https://github.com/novomesk/qt-avif-image-plugin" @@ -22,20 +22,9 @@ IUSE="" DEPEND=">=dev-qt/qtgui-5.12.3:5 >=media-libs/libavif-0.8.0 + >=x11-misc/shared-mime-info-2.0-r1 " BDEPEND=">=kde-frameworks/extra-cmake-modules-5.70:5" RDEPEND="${DEPEND}" - -src_install() { - cmake_src_install - - insinto /usr/share/mime/packages/ - doins share/mime/packages/avif.xml - doins share/mime/packages/avifs.xml -} - -pkg_postinst() { - xdg_mimeinfo_database_update -}