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 50E6F1382C5 for ; Sat, 13 Mar 2021 12:26:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 968CAE0907; Sat, 13 Mar 2021 12:26:50 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 816D9E0903 for ; Sat, 13 Mar 2021 12:26:50 +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 B15F7340BC0 for ; Sat, 13 Mar 2021 12:26:49 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7EDAC5A5 for ; Sat, 13 Mar 2021 12:26:46 +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: <1615586928.8100f53f14c87e845fd5c1c12c02f87ba6bdf8ec.andrewammerlaan@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: media-plugins/qt-heif-image-plugin/ X-VCS-Repository: repo/proj/guru X-VCS-Files: media-plugins/qt-heif-image-plugin/qt-heif-image-plugin-0.3.3-r2.ebuild X-VCS-Directories: media-plugins/qt-heif-image-plugin/ X-VCS-Committer: andrewammerlaan X-VCS-Committer-Name: Andrew Ammerlaan X-VCS-Revision: 8100f53f14c87e845fd5c1c12c02f87ba6bdf8ec X-VCS-Branch: master Date: Sat, 13 Mar 2021 12:26:46 +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: be7056c3-32f1-4ee2-a582-f6e489c471d1 X-Archives-Hash: 01ebfa3140e1ff24496106ba3bc77d2c commit: 8100f53f14c87e845fd5c1c12c02f87ba6bdf8ec Author: Sergey Torokhov yandex ru> AuthorDate: Fri Mar 12 22:08:48 2021 +0000 Commit: Andrew Ammerlaan riseup net> CommitDate: Fri Mar 12 22:08:48 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=8100f53f media-plugins/qt-heif-image-plugin: fix for >=media-libs/libheif-1.10.0 Signed-off-by: Sergey Torokhov yandex.ru> .../qt-heif-image-plugin-0.3.3-r2.ebuild | 24 ++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/media-plugins/qt-heif-image-plugin/qt-heif-image-plugin-0.3.3-r2.ebuild b/media-plugins/qt-heif-image-plugin/qt-heif-image-plugin-0.3.3-r2.ebuild new file mode 100644 index 00000000..6ebace0c --- /dev/null +++ b/media-plugins/qt-heif-image-plugin/qt-heif-image-plugin-0.3.3-r2.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit cmake + +DESCRIPTION="Qt plugin for HEIF images" +HOMEPAGE="https://github.com/jakar/qt-heif-image-plugin" +SRC_URI="https://github.com/jakar/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="LGPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND=" + dev-qt/qtcore + dev-qt/qtgui + >=media-libs/libheif-1.10.0:0=[libde265] +" +DEPEND="${RDEPEND}" +BDEPEND="virtual/pkgconfig" + +PATCHES=( "${FILESDIR}/${P}_RGB88.patch" )