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 906CE158092 for ; Sun, 19 Sep 2021 08:06:14 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E9478E094A; Sun, 19 Sep 2021 08:06:12 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 94155E094A for ; Sun, 19 Sep 2021 08:06:12 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 61D8734342B for ; Sun, 19 Sep 2021 08:06:11 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7AE859B for ; Sun, 19 Sep 2021 08:06:09 +0000 (UTC) From: "Jakov Smolić" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jakov Smolić" Message-ID: <1632038575.947ba1da0999c9c613d32c92cbeb59579aa466d6.jsmolic@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libheif/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/libheif/libheif-1.12.0-r1.ebuild media-libs/libheif/libheif-1.12.0.ebuild media-libs/libheif/libheif-9999.ebuild media-libs/libheif/metadata.xml X-VCS-Directories: media-libs/libheif/ X-VCS-Committer: jsmolic X-VCS-Committer-Name: Jakov Smolić X-VCS-Revision: 947ba1da0999c9c613d32c92cbeb59579aa466d6 X-VCS-Branch: master Date: Sun, 19 Sep 2021 08:06:09 +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: 2b024593-0a56-45d5-8c5e-daf1ae8818dc X-Archives-Hash: a397deaf7b38993babe6f18b560b5b0e commit: 947ba1da0999c9c613d32c92cbeb59579aa466d6 Author: Jakov Smolić gentoo org> AuthorDate: Sun Sep 19 08:01:31 2021 +0000 Commit: Jakov Smolić gentoo org> CommitDate: Sun Sep 19 08:02:55 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=947ba1da media-libs/libheif: Enable libde265 unconditionally - Since libheif can't decode HEIF file without it it's not a good idea to disable libde265 support, so let's just enable it unconditionally Closes: https://bugs.gentoo.org/813669 Signed-off-by: Jakov Smolić gentoo.org> .../{libheif-1.12.0.ebuild => libheif-1.12.0-r1.ebuild} | 8 ++++---- media-libs/libheif/libheif-9999.ebuild | 10 +++++----- media-libs/libheif/metadata.xml | 1 - 3 files changed, 9 insertions(+), 10 deletions(-) diff --git a/media-libs/libheif/libheif-1.12.0.ebuild b/media-libs/libheif/libheif-1.12.0-r1.ebuild similarity index 90% rename from media-libs/libheif/libheif-1.12.0.ebuild rename to media-libs/libheif/libheif-1.12.0-r1.ebuild index 6dc4980f1f2..f90f0e7b6cc 100644 --- a/media-libs/libheif/libheif-1.12.0.ebuild +++ b/media-libs/libheif/libheif-1.12.0-r1.ebuild @@ -18,20 +18,20 @@ HOMEPAGE="https://github.com/strukturag/libheif" LICENSE="GPL-3" SLOT="0/1.12" -IUSE="+aom gdk-pixbuf go libde265 rav1e test +threads x265" -REQUIRED_USE="test? ( go libde265 )" +IUSE="+aom gdk-pixbuf go rav1e test +threads x265" +REQUIRED_USE="test? ( go )" RESTRICT="!test? ( test )" BDEPEND="test? ( dev-lang/go )" DEPEND=" media-libs/dav1d:=[${MULTILIB_USEDEP}] + media-libs/libde265:=[${MULTILIB_USEDEP}] media-libs/libpng:0=[${MULTILIB_USEDEP}] sys-libs/zlib:=[${MULTILIB_USEDEP}] virtual/jpeg:0=[${MULTILIB_USEDEP}] aom? ( >=media-libs/libaom-2.0.0:=[${MULTILIB_USEDEP}] ) gdk-pixbuf? ( x11-libs/gdk-pixbuf[${MULTILIB_USEDEP}] ) go? ( dev-lang/go ) - libde265? ( media-libs/libde265:=[${MULTILIB_USEDEP}] ) rav1e? ( media-video/rav1e:= ) x265? ( media-libs/x265:=[${MULTILIB_USEDEP}] )" RDEPEND="${DEPEND}" @@ -50,10 +50,10 @@ src_prepare() { multilib_src_configure() { export GO111MODULE=auto local econf_args=( + --enable-libde265 --disable-static $(multilib_is_native_abi && use go || echo --disable-go) $(use_enable aom) - $(use_enable libde265) $(use_enable gdk-pixbuf) $(use_enable rav1e) $(use_enable threads multithreading) diff --git a/media-libs/libheif/libheif-9999.ebuild b/media-libs/libheif/libheif-9999.ebuild index 05d7c5f68ed..a1837ad0964 100644 --- a/media-libs/libheif/libheif-9999.ebuild +++ b/media-libs/libheif/libheif-9999.ebuild @@ -10,7 +10,7 @@ if [[ ${PV} == *9999 ]] ; then inherit git-r3 else SRC_URI="https://github.com/strukturag/libheif/releases/download/v${PV}/${P}.tar.gz" - KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86" + KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86" fi DESCRIPTION="ISO/IEC 23008-12:2017 HEIF file format decoder and encoder" @@ -18,20 +18,20 @@ HOMEPAGE="https://github.com/strukturag/libheif" LICENSE="GPL-3" SLOT="0/1.12" -IUSE="+aom gdk-pixbuf go libde265 rav1e test +threads x265" -REQUIRED_USE="test? ( go libde265 )" +IUSE="+aom gdk-pixbuf go rav1e test +threads x265" +REQUIRED_USE="test? ( go )" RESTRICT="!test? ( test )" BDEPEND="test? ( dev-lang/go )" DEPEND=" media-libs/dav1d:=[${MULTILIB_USEDEP}] + media-libs/libde265:=[${MULTILIB_USEDEP}] media-libs/libpng:0=[${MULTILIB_USEDEP}] sys-libs/zlib:=[${MULTILIB_USEDEP}] virtual/jpeg:0=[${MULTILIB_USEDEP}] aom? ( >=media-libs/libaom-2.0.0:=[${MULTILIB_USEDEP}] ) gdk-pixbuf? ( x11-libs/gdk-pixbuf[${MULTILIB_USEDEP}] ) go? ( dev-lang/go ) - libde265? ( media-libs/libde265:=[${MULTILIB_USEDEP}] ) rav1e? ( media-video/rav1e:= ) x265? ( media-libs/x265:=[${MULTILIB_USEDEP}] )" RDEPEND="${DEPEND}" @@ -50,10 +50,10 @@ src_prepare() { multilib_src_configure() { export GO111MODULE=auto local econf_args=( + --enable-libde265 --disable-static $(multilib_is_native_abi && use go || echo --disable-go) $(use_enable aom) - $(use_enable libde265) $(use_enable gdk-pixbuf) $(use_enable rav1e) $(use_enable threads multithreading) diff --git a/media-libs/libheif/metadata.xml b/media-libs/libheif/metadata.xml index c8f0f34e809..2d2f28772dd 100644 --- a/media-libs/libheif/metadata.xml +++ b/media-libs/libheif/metadata.xml @@ -9,7 +9,6 @@ Use media-libs/libaom for AVIF encoding/decoding Enable x11-libs/gdk-pixbuf plugin Enable building dev-lang/go code/examples - Use media-libs/libde265 for HEIF decoding Use media-video/rav1e for AVIF encoding Use media-libs/x265 for HEIF encoding