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 DAB4C158009 for ; Sun, 18 Jun 2023 21:28:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E6D3EE087D; Sun, 18 Jun 2023 21:28:27 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id CFBBBE087D for ; Sun, 18 Jun 2023 21:28:27 +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 C7BBF340FEE for ; Sun, 18 Jun 2023 21:28:26 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2131BA90 for ; Sun, 18 Jun 2023 21:28:25 +0000 (UTC) From: "Jimi Huotari" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jimi Huotari" Message-ID: <1687123675.39e19754cb48c89ea70b0d18bf80b881ce93db5e.chiitoo@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-qt/qtmultimedia/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-qt/qtmultimedia/qtmultimedia-6.5.1.ebuild X-VCS-Directories: dev-qt/qtmultimedia/ X-VCS-Committer: chiitoo X-VCS-Committer-Name: Jimi Huotari X-VCS-Revision: 39e19754cb48c89ea70b0d18bf80b881ce93db5e X-VCS-Branch: master Date: Sun, 18 Jun 2023 21:28:25 +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: 002a1fcf-d098-4882-9ef1-0c770774ccf1 X-Archives-Hash: 84dccc19409c4cd5c6aa63bd2e6dff9e commit: 39e19754cb48c89ea70b0d18bf80b881ce93db5e Author: Jimi Huotari gentoo org> AuthorDate: Sun Jun 18 21:14:18 2023 +0000 Commit: Jimi Huotari gentoo org> CommitDate: Sun Jun 18 21:27:55 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=39e19754 dev-qt/qtmultimedia: remove version 6.5.1 (r0) Signed-off-by: Jimi Huotari gentoo.org> dev-qt/qtmultimedia/qtmultimedia-6.5.1.ebuild | 56 --------------------------- 1 file changed, 56 deletions(-) diff --git a/dev-qt/qtmultimedia/qtmultimedia-6.5.1.ebuild b/dev-qt/qtmultimedia/qtmultimedia-6.5.1.ebuild deleted file mode 100644 index d8aa0ed4a6d2..000000000000 --- a/dev-qt/qtmultimedia/qtmultimedia-6.5.1.ebuild +++ /dev/null @@ -1,56 +0,0 @@ -# Copyright 2021-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit qt6-build - -DESCRIPTION="Multimedia (audio, video, radio, camera) library for the Qt6 framework" - -if [[ ${QT6_BUILD_TYPE} == release ]]; then - KEYWORDS="~amd64" -fi - -IUSE="alsa +ffmpeg gstreamer pulseaudio v4l" - -REQUIRED_USE="|| ( ffmpeg gstreamer )" - -RDEPEND=" - =dev-qt/qtbase-${PV}*[gui,network,widgets] - =dev-qt/qtdeclarative-${PV}* - =dev-qt/qtquick3d-${PV}* - =dev-qt/qtshadertools-${PV}* - =dev-qt/qtsvg-${PV}* - alsa? ( media-libs/alsa-lib ) - ffmpeg? ( - media-libs/libva:= - media-video/ffmpeg:= - x11-libs/libX11 - x11-libs/libXext - x11-libs/libXrandr - ) - gstreamer? ( - dev-libs/glib:2 - media-libs/gstreamer:1.0 - media-libs/gst-plugins-bad:1.0 - media-libs/gst-plugins-base:1.0 - media-libs/libglvnd - ) - pulseaudio? ( media-libs/libpulse[glib] ) -" -DEPEND="${RDEPEND} - gstreamer? ( x11-base/xorg-proto ) - v4l? ( sys-kernel/linux-headers ) -" - -src_configure() { - local mycmakeargs=( - $(qt_feature alsa) - $(qt_feature ffmpeg) - $(qt_feature gstreamer) - $(qt_feature v4l linux_v4l) - $(qt_feature pulseaudio) - ) - - qt6-build_src_configure -}