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 E06DC138334 for ; Thu, 13 Dec 2018 23:04:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 06131E08EB; Thu, 13 Dec 2018 23:04:19 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 D3316E08EB for ; Thu, 13 Dec 2018 23:04:18 +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 EA547335CB7 for ; Thu, 13 Dec 2018 23:04:16 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4247E4E4 for ; Thu, 13 Dec 2018 23:04:15 +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: <1544742185.bf7d4fb7123673668971500d4d536eb0a925c6bb.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/qt-gstreamer/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/qt-gstreamer/qt-gstreamer-1.2.0-r3.ebuild X-VCS-Directories: media-libs/qt-gstreamer/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: bf7d4fb7123673668971500d4d536eb0a925c6bb X-VCS-Branch: master Date: Thu, 13 Dec 2018 23:04:15 +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: 2ddc8921-c056-4d49-9680-f932f9a43c92 X-Archives-Hash: 4d4c66f5420d71c61ac7041880d300e1 commit: bf7d4fb7123673668971500d4d536eb0a925c6bb Author: Andreas Sturmlechner gentoo org> AuthorDate: Thu Dec 13 23:03:05 2018 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Thu Dec 13 23:03:05 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bf7d4fb7 media-libs/qt-gstreamer: Drop 1.2.0-r3 Package-Manager: Portage-2.3.52, Repoman-2.3.12 Signed-off-by: Andreas Sturmlechner gentoo.org> .../qt-gstreamer/qt-gstreamer-1.2.0-r3.ebuild | 54 ---------------------- 1 file changed, 54 deletions(-) diff --git a/media-libs/qt-gstreamer/qt-gstreamer-1.2.0-r3.ebuild b/media-libs/qt-gstreamer/qt-gstreamer-1.2.0-r3.ebuild deleted file mode 100644 index 11e32d10e30..00000000000 --- a/media-libs/qt-gstreamer/qt-gstreamer-1.2.0-r3.ebuild +++ /dev/null @@ -1,54 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -if [[ ${PV} != *9999* ]]; then - SRC_URI="https://gstreamer.freedesktop.org/src/qt-gstreamer/${P}.tar.xz" - KEYWORDS="amd64 ~arm ~ppc ~ppc64 x86" -else - EGIT_REPO_URI="https://anongit.freedesktop.org/git/gstreamer/qt-gstreamer.git" - inherit git-r3 -fi - -inherit cmake-utils - -DESCRIPTION="C++ bindings for GStreamer with a Qt-style API" -HOMEPAGE="https://gstreamer.freedesktop.org/modules/qt-gstreamer.html" - -LICENSE="LGPL-2.1" -SLOT="0" -IUSE="test" - -RDEPEND=" - dev-libs/glib:2 - dev-libs/boost:= - dev-qt/qtcore:5 - dev-qt/qtdeclarative:5 - dev-qt/qtgui:5 - dev-qt/qtopengl:5 - dev-qt/qtwidgets:5 - media-libs/gstreamer:1.0 - media-libs/gst-plugins-base:1.0 -" -DEPEND="${RDEPEND} - test? ( dev-qt/qttest:5 ) -" - -PATCHES=( - "${FILESDIR}/${P}-gstreamer15.patch" - "${FILESDIR}/${P}-boost157.patch" -) - -# bug 497880 -RESTRICT="test" - -src_configure() { - local mycmakeargs=( - -DCMAKE_DISABLE_FIND_PACKAGE_Qt5Declarative=ON - -DQTGSTREAMER_EXAMPLES=OFF - -DQTGSTREAMER_TESTS=$(usex test) - -DQT_VERSION=5 - ) - cmake-utils_src_configure -}