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 92F41138350 for ; Wed, 12 Feb 2020 16:58:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9A0C0E077C; Wed, 12 Feb 2020 16:58:24 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 833D5E077C for ; Wed, 12 Feb 2020 16:58:24 +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 3DF5B34EC1E for ; Wed, 12 Feb 2020 16:58:23 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 33B2210F for ; Wed, 12 Feb 2020 16:58:21 +0000 (UTC) From: "Johannes Huber" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Johannes Huber" Message-ID: <1581526691.d25a304cfc73a36f295c5c36ccd14709ebee9d72.johu@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/qtav/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/qtav/qtav-1.12.0-r1.ebuild X-VCS-Directories: media-libs/qtav/ X-VCS-Committer: johu X-VCS-Committer-Name: Johannes Huber X-VCS-Revision: d25a304cfc73a36f295c5c36ccd14709ebee9d72 X-VCS-Branch: master Date: Wed, 12 Feb 2020 16:58:21 +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: 33310adb-df6e-4e1e-baa9-3ce3c0b5e98d X-Archives-Hash: 104c3c4f73447ba2de1ae6ba53f9c634 commit: d25a304cfc73a36f295c5c36ccd14709ebee9d72 Author: Johannes Huber gentoo org> AuthorDate: Wed Feb 12 16:56:47 2020 +0000 Commit: Johannes Huber gentoo org> CommitDate: Wed Feb 12 16:58:11 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d25a304c media-libs/qtav: Remove 1.12.0-r1 Package-Manager: Portage-2.3.88, Repoman-2.3.20 Signed-off-by: Johannes Huber gentoo.org> media-libs/qtav/qtav-1.12.0-r1.ebuild | 64 ----------------------------------- 1 file changed, 64 deletions(-) diff --git a/media-libs/qtav/qtav-1.12.0-r1.ebuild b/media-libs/qtav/qtav-1.12.0-r1.ebuild deleted file mode 100644 index cac2cb20460..00000000000 --- a/media-libs/qtav/qtav-1.12.0-r1.ebuild +++ /dev/null @@ -1,64 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -MY_PN="QtAV" -CAPI_HASH="b43aa93" -inherit cmake - -DESCRIPTION="Multimedia playback framework based on Qt + FFmpeg" -HOMEPAGE="https://www.qtav.org" -SRC_URI="https://github.com/wang-bin/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz -https://dev.gentoo.org/~johu/distfiles/${P}-capi.h-${CAPI_HASH}.xz" - -LICENSE="GPL-3+ LGPL-2.1+" -SLOT="0/1" -KEYWORDS="~amd64" -IUSE="gui libav opengl portaudio pulseaudio vaapi" -REQUIRED_USE="gui? ( opengl )" - -DEPEND=" - dev-qt/qtcore:5 - dev-qt/qtdeclarative:5 - dev-qt/qtgui:5 - dev-qt/qtwidgets:5 - gui? ( dev-qt/qtsql:5 ) - libav? ( - media-video/libav:= - x11-libs/libX11 - ) - !libav? ( media-video/ffmpeg:= ) - opengl? ( dev-qt/qtopengl:5 ) - portaudio? ( media-libs/portaudio ) - pulseaudio? ( media-sound/pulseaudio ) -" -RDEPEND="${DEPEND}" - -S="${WORKDIR}/${MY_PN}-${PV}" - -PATCHES=( - "${FILESDIR}"/${P}-multilib.patch - "${FILESDIR}"/${P}-ffmpeg4-{1,2}.patch # bugs 660852, 670765 - "${FILESDIR}"/${P}-qt5.14.patch -) - -src_prepare() { - cmake_src_prepare - cp "${WORKDIR}/${P}-capi.h-${CAPI_HASH}" contrib/capi/capi.h \ - || die "Failed to add missing header" -} - -src_configure() { - local mycmakeargs=( - -DBUILD_TESTS=OFF - -DBUILD_EXAMPLES=OFF - -DBUILD_PLAYERS=$(usex gui) - -DBUILD_QT5OPENGL=$(usex opengl) - -DHAVE_PORTAUDIO=$(usex portaudio) - -DHAVE_PULSE=$(usex pulseaudio) - -DHAVE_VAAPI=$(usex vaapi) - ) - - cmake_src_configure -}