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 881D6158015 for ; Sun, 17 Dec 2023 22:21:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 53E652BC024; Sun, 17 Dec 2023 22:21:29 +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 352E62BC024 for ; Sun, 17 Dec 2023 22:21:29 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4C4F5335DE9 for ; Sun, 17 Dec 2023 22:21:28 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AA042B85 for ; Sun, 17 Dec 2023 22:21:26 +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: <1702850659.e75b8de05badddb6f1da21fe08538f51e3cb1caf.asturm@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: media-libs/mpvqt/ X-VCS-Repository: proj/kde X-VCS-Files: media-libs/mpvqt/metadata.xml media-libs/mpvqt/mpvqt-1.0.0.ebuild X-VCS-Directories: media-libs/mpvqt/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: e75b8de05badddb6f1da21fe08538f51e3cb1caf X-VCS-Branch: master Date: Sun, 17 Dec 2023 22:21:26 +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: 70cddebd-9ded-43f2-a375-25e336b90118 X-Archives-Hash: c2be5f8303430435f06b45eab9e00ee6 commit: e75b8de05badddb6f1da21fe08538f51e3cb1caf Author: Joshua Goins redstrate com> AuthorDate: Mon Dec 11 19:40:45 2023 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Dec 17 22:04:19 2023 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=e75b8de0 media-libs/mpvqt: new package, add 1.0.0 Signed-off-by: Joshua Goins redstrate.com> Closes: https://github.com/gentoo/kde/pull/945 Signed-off-by: Andreas Sturmlechner gentoo.org> media-libs/mpvqt/metadata.xml | 12 ++++++++++++ media-libs/mpvqt/mpvqt-1.0.0.ebuild | 27 +++++++++++++++++++++++++++ 2 files changed, 39 insertions(+) diff --git a/media-libs/mpvqt/metadata.xml b/media-libs/mpvqt/metadata.xml new file mode 100644 index 0000000000..4b756e71cd --- /dev/null +++ b/media-libs/mpvqt/metadata.xml @@ -0,0 +1,12 @@ + + + + + kde@gentoo.org + Gentoo KDE Project + + + https://bugs.kde.org/ + libraries/mpvqt + + diff --git a/media-libs/mpvqt/mpvqt-1.0.0.ebuild b/media-libs/mpvqt/mpvqt-1.0.0.ebuild new file mode 100644 index 0000000000..6451bd5d4e --- /dev/null +++ b/media-libs/mpvqt/mpvqt-1.0.0.ebuild @@ -0,0 +1,27 @@ +# Copyright 2021-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +KFMIN=5.245.0 +QTMIN=6.5.0 +inherit ecm kde.org + +if [[ ${KDE_BUILD_TYPE} = release ]]; then + SRC_URI="mirror://kde/stable/${PN}/${P}.tar.xz" + KEYWORDS="~amd64" +fi + +DESCRIPTION="MpvQt is a libmpv wrapper for QtQuick2 and QML" +HOMEPAGE="https://invent.kde.org/libraries/mpvqt" + +LICENSE="|| ( GPL-2 GPL-3 LGPL-3 LGPL-2.1 ) CC-BY-SA-4.0 MIT BSD" +SLOT="6" +IUSE="" + +DEPEND=" + media-video/mpv:=[libmpv] + >=dev-qt/qtbase-${QTMIN}:6[gui,opengl] + >=dev-qt/qtdeclarative-${QTMIN}:6 +" +RDEPEND="${DEPEND}"