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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 933A6158094 for ; Tue, 28 Jun 2022 20:39:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B8484E0B93; Tue, 28 Jun 2022 20:39:35 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 1EF74E0B83 for ; Tue, 28 Jun 2022 20:39:35 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 023CF3415AE for ; Tue, 28 Jun 2022 20:39:34 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8245D4ED for ; Tue, 28 Jun 2022 20:39:32 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1656448637.c2ee0a12de8cc34fcfce2be0b670d6e26284f34c.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-qt/qtimageformats/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-qt/qtimageformats/qtimageformats-5.15.5-r1.ebuild X-VCS-Directories: dev-qt/qtimageformats/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: c2ee0a12de8cc34fcfce2be0b670d6e26284f34c X-VCS-Branch: master Date: Tue, 28 Jun 2022 20:39:32 +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: e1fdc1be-1f4b-4299-aa4e-7ab070fce643 X-Archives-Hash: 531371eeb460a73150fd2df6b4b065d8 commit: c2ee0a12de8cc34fcfce2be0b670d6e26284f34c Author: Andreas Sturmlechner gentoo org> AuthorDate: Tue Jun 28 20:37:17 2022 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Tue Jun 28 20:37:17 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c2ee0a12 dev-qt/qtimageformats: Backport 5.15.6 Jasper 3 fix jp2: use correct buffer_size for jas_stream_memopen QTBUG: https://bugreports.qt.io/browse/QTBUG-104398 Package-Manager: Portage-3.0.30, Repoman-3.0.3 Signed-off-by: Andreas Sturmlechner gentoo.org> .../qtimageformats/qtimageformats-5.15.5-r1.ebuild | 32 ++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/dev-qt/qtimageformats/qtimageformats-5.15.5-r1.ebuild b/dev-qt/qtimageformats/qtimageformats-5.15.5-r1.ebuild new file mode 100644 index 000000000000..0926524f47a9 --- /dev/null +++ b/dev-qt/qtimageformats/qtimageformats-5.15.5-r1.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +QT5_KDEPATCHSET_REV=1 +inherit qt5-build + +DESCRIPTION="Additional format plugins for the Qt image I/O system" + +if [[ ${QT5_BUILD_TYPE} == release ]]; then + KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc64 ~riscv ~sparc ~x86" +fi + +IUSE="mng" + +DEPEND=" + =dev-qt/qtcore-${QT5_PV}* + =dev-qt/qtgui-${QT5_PV}* + media-libs/libwebp:= + media-libs/tiff:0 + mng? ( media-libs/libmng:= ) +" +RDEPEND="${DEPEND}" + +src_configure() { + sed -e 's/qtConfig(jasper)/false:/' \ + -i src/plugins/imageformats/imageformats.pro || die + qt_use_disable_config mng mng src/plugins/imageformats/imageformats.pro + + qt5-build_src_configure +}