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 E06C1158020 for ; Sat, 5 Nov 2022 16:39:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AF5EBE07C5; Sat, 5 Nov 2022 16:39:19 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9564DE07C5 for ; Sat, 5 Nov 2022 16:39:19 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9C8CF341231 for ; Sat, 5 Nov 2022 16:39:18 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 34E406FE for ; Sat, 5 Nov 2022 16:39:17 +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: <1667639252.5d52996bc1a90cad7d6e01b235c6b04fc9359c77.asturm@gentoo> Subject: [gentoo-commits] proj/qt:master commit in: dev-qt/qtimageformats/ X-VCS-Repository: proj/qt X-VCS-Files: dev-qt/qtimageformats/Manifest dev-qt/qtimageformats/qtimageformats-6.4.0.ebuild X-VCS-Directories: dev-qt/qtimageformats/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 5d52996bc1a90cad7d6e01b235c6b04fc9359c77 X-VCS-Branch: master Date: Sat, 5 Nov 2022 16:39:17 +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: 770985b0-002f-4b78-a47d-96a75a9e753b X-Archives-Hash: b533dc83a5f914831720b4df59eccf19 commit: 5d52996bc1a90cad7d6e01b235c6b04fc9359c77 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sat Nov 5 09:07:32 2022 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sat Nov 5 09:07:32 2022 +0000 URL: https://gitweb.gentoo.org/proj/qt.git/commit/?id=5d52996b dev-qt/qtimageformats: drop 6.4.0 Signed-off-by: Andreas Sturmlechner gentoo.org> dev-qt/qtimageformats/Manifest | 1 - dev-qt/qtimageformats/qtimageformats-6.4.0.ebuild | 35 ----------------------- 2 files changed, 36 deletions(-) diff --git a/dev-qt/qtimageformats/Manifest b/dev-qt/qtimageformats/Manifest deleted file mode 100644 index 57479559..00000000 --- a/dev-qt/qtimageformats/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST qtimageformats-everywhere-src-6.4.0.tar.xz 1861400 BLAKE2B be2d99999a29b5876981d0768d63dab6a70181a1643be73e83cb7bf6771bd35462165e1a848206d4f69018c3388118f4bd94a336ff28ab19dbc75973eb86463b SHA512 3a7302cfbe9187ffb753c7171c62bbf43223c9c876bb0df20de8b593d51ef775bffeff124d269ed8d4ce7e1fb3d55790acd75bce0b5d5bfa223e5e83dfb41f01 diff --git a/dev-qt/qtimageformats/qtimageformats-6.4.0.ebuild b/dev-qt/qtimageformats/qtimageformats-6.4.0.ebuild deleted file mode 100644 index f1a8354e..00000000 --- a/dev-qt/qtimageformats/qtimageformats-6.4.0.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit qt6-build - -DESCRIPTION="Additional format plugins for the Qt image I/O system" - -if [[ ${QT6_BUILD_TYPE} == release ]]; then - KEYWORDS="~amd64" -fi - -IUSE="mng" - -DEPEND=" - =dev-qt/qtbase-${PV}*[gui] - media-libs/libwebp:= - media-libs/tiff - mng? ( media-libs/libmng:= ) -" -RDEPEND="${DEPEND}" - -src_configure() { - local mycmakeargs=( - -DQT_FEATURE_jasper=OFF - $(qt_feature mng) - -DQT_FEATURE_tiff=ON - -DQT_FEATURE_webp=ON - -DQT_FEATURE_system-tiff=ON - -DQT_FEATURE_system-webp=ON - ) - - qt6-build_src_configure -}