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 5AD88138334 for ; Sun, 14 Oct 2018 18:25:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 257C2E0887; Sun, 14 Oct 2018 18:25:36 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 D0CCEE0887 for ; Sun, 14 Oct 2018 18:25:35 +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 35D40335C95 for ; Sun, 14 Oct 2018 18:25:32 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 621AF3D4 for ; Sun, 14 Oct 2018 18:25:30 +0000 (UTC) From: "Sebastian Pipping" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sebastian Pipping" Message-ID: <1539541501.a80b8874e5125c39029b51e0ecfb32a93a227c09.sping@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/gimp/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-gfx/gimp/gimp-2.10.6-r1.ebuild media-gfx/gimp/gimp-9999.ebuild media-gfx/gimp/metadata.xml X-VCS-Directories: media-gfx/gimp/ X-VCS-Committer: sping X-VCS-Committer-Name: Sebastian Pipping X-VCS-Revision: a80b8874e5125c39029b51e0ecfb32a93a227c09 X-VCS-Branch: master Date: Sun, 14 Oct 2018 18:25:30 +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-Archives-Salt: 96249c6c-d294-4044-ada0-3cd79dce877e X-Archives-Hash: 067a49f0a411d49bb4d93a8f200dafb5 commit: a80b8874e5125c39029b51e0ecfb32a93a227c09 Author: Sebastian Pipping gentoo org> AuthorDate: Sun Oct 14 18:10:40 2018 +0000 Commit: Sebastian Pipping gentoo org> CommitDate: Sun Oct 14 18:25:01 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a80b8874 media-gfx/gimp: Unlock support for HEIF images Closes: https://bugs.gentoo.org/668262 Based on patch by Doppler, thanks! Signed-off-by: Sebastian Pipping gentoo.org> Package-Manager: Portage-2.3.50, Repoman-2.3.11 media-gfx/gimp/gimp-2.10.6-r1.ebuild | 9 +++++---- media-gfx/gimp/gimp-9999.ebuild | 7 ++++--- media-gfx/gimp/metadata.xml | 3 +++ 3 files changed, 12 insertions(+), 7 deletions(-) diff --git a/media-gfx/gimp/gimp-2.10.6-r1.ebuild b/media-gfx/gimp/gimp-2.10.6-r1.ebuild index cf3eeeea373..88e720cd174 100644 --- a/media-gfx/gimp/gimp-2.10.6-r1.ebuild +++ b/media-gfx/gimp/gimp-2.10.6-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2018 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -18,7 +18,7 @@ SLOT="2" KEYWORDS="~amd64 ~x86" LANGS="am ar ast az be bg br ca ca@valencia cs csb da de dz el en_CA en_GB eo es et eu fa fi fr ga gl gu he hi hr hu id is it ja ka kk km kn ko lt lv mk ml ms my nb nds ne nl nn oc pa pl pt pt_BR ro ru rw si sk sl sr sr@latin sv ta te th tr tt uk vi xh yi zh_CN zh_HK zh_TW" -IUSE="alsa aalib altivec aqua debug doc openexr gnome postscript jpeg2k cpu_flags_x86_mmx mng python smp cpu_flags_x86_sse udev vector-icons webp wmf xpm" +IUSE="alsa aalib altivec aqua debug doc openexr gnome heif postscript jpeg2k cpu_flags_x86_mmx mng python smp cpu_flags_x86_sse udev vector-icons webp wmf xpm" RDEPEND=">=dev-libs/glib-2.56.0:2 >=dev-libs/atk-2.2.0 @@ -66,7 +66,8 @@ RDEPEND=">=dev-libs/glib-2.56.0:2 app-arch/bzip2 >=app-arch/xz-utils-5.0.0 postscript? ( app-text/ghostscript-gpl ) - udev? ( virtual/libgudev:= )" + udev? ( virtual/libgudev:= ) + heif? ( >=media-libs/libheif-1.1.0:= )" DEPEND="${RDEPEND} >=dev-lang/perl-5.10.0 dev-libs/appstream-glib @@ -123,7 +124,7 @@ src_configure() { $(use_with mng libmng) $(use_with openexr) $(use_with webp) - --without-libheif + $(use_with heif libheif) $(use_enable python) $(use_enable smp mp) $(use_enable cpu_flags_x86_sse sse) diff --git a/media-gfx/gimp/gimp-9999.ebuild b/media-gfx/gimp/gimp-9999.ebuild index 7ab62745ebd..ac017892f38 100644 --- a/media-gfx/gimp/gimp-9999.ebuild +++ b/media-gfx/gimp/gimp-9999.ebuild @@ -16,7 +16,7 @@ SLOT="2" KEYWORDS="" LANGS="am ar ast az be bg br ca ca@valencia cs csb da de dz el en_CA en_GB eo es et eu fa fi fr ga gl gu he hi hr hu id is it ja ka kk km kn ko lt lv mk ml ms my nb nds ne nl nn oc pa pl pt pt_BR ro ru rw si sk sl sr sr@latin sv ta te th tr tt uk vi xh yi zh_CN zh_HK zh_TW" -IUSE="alsa aalib altivec aqua debug doc openexr gnome postscript jpeg2k cpu_flags_x86_mmx mng python smp cpu_flags_x86_sse udev vector-icons webp wmf xpm" +IUSE="alsa aalib altivec aqua debug doc openexr gnome heif postscript jpeg2k cpu_flags_x86_mmx mng python smp cpu_flags_x86_sse udev vector-icons webp wmf xpm" RDEPEND=">=dev-libs/glib-2.56.0:2 >=dev-libs/atk-2.2.0 @@ -64,7 +64,8 @@ RDEPEND=">=dev-libs/glib-2.56.0:2 app-arch/bzip2 >=app-arch/xz-utils-5.0.0 postscript? ( app-text/ghostscript-gpl ) - udev? ( virtual/libgudev:= )" + udev? ( virtual/libgudev:= ) + heif? ( >=media-libs/libheif-1.1.0:= )" DEPEND="${RDEPEND} >=dev-lang/perl-5.10.0 dev-libs/appstream-glib @@ -121,7 +122,7 @@ src_configure() { $(use_with mng libmng) $(use_with openexr) $(use_with webp) - --without-libheif + $(use_with heif libheif) $(use_enable python) $(use_enable smp mp) $(use_enable cpu_flags_x86_sse sse) diff --git a/media-gfx/gimp/metadata.xml b/media-gfx/gimp/metadata.xml index 5bb4b5ca8ae..f16562de25f 100644 --- a/media-gfx/gimp/metadata.xml +++ b/media-gfx/gimp/metadata.xml @@ -11,5 +11,8 @@ Enable support for vector icons (experimental) + + Enable support for ISO/IEC 23008-12:2017 HEIF files +