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 A99A8158099 for ; Wed, 29 Nov 2023 22:48:02 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0DFAF2BC02B; Wed, 29 Nov 2023 22:48:01 +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 D98C32BC02B for ; Wed, 29 Nov 2023 22:48:00 +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 EAD25335D1B for ; Wed, 29 Nov 2023 22:47:59 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7D0571433 for ; Wed, 29 Nov 2023 22:47:58 +0000 (UTC) From: "David Roman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Roman" Message-ID: <1701018466.f9c22da2b267a4bd525bfe7bcdc077ccd947aea5.davidroman@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: media-video/mpc-qt/ X-VCS-Repository: repo/proj/guru X-VCS-Files: media-video/mpc-qt/Manifest media-video/mpc-qt/mpc-qt-23.02.ebuild X-VCS-Directories: media-video/mpc-qt/ X-VCS-Committer: davidroman X-VCS-Committer-Name: David Roman X-VCS-Revision: f9c22da2b267a4bd525bfe7bcdc077ccd947aea5 X-VCS-Branch: master Date: Wed, 29 Nov 2023 22:47:58 +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: 01814d22-234c-41db-858f-4296694cc4b4 X-Archives-Hash: a0e5f0abf6c08da126f8d80c69d833e3 commit: f9c22da2b267a4bd525bfe7bcdc077ccd947aea5 Author: Benoît Dufour mail com> AuthorDate: Sun Nov 26 17:07:46 2023 +0000 Commit: David Roman gmail com> CommitDate: Sun Nov 26 17:07:46 2023 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=f9c22da2 media-video/mpc-qt: new package, add 23.02 Signed-off-by: Benoît Dufour mail.com> media-video/mpc-qt/Manifest | 1 + media-video/mpc-qt/mpc-qt-23.02.ebuild | 31 +++++++++++++++++++++++++++++++ 2 files changed, 32 insertions(+) diff --git a/media-video/mpc-qt/Manifest b/media-video/mpc-qt/Manifest new file mode 100644 index 0000000000..7a56c0e816 --- /dev/null +++ b/media-video/mpc-qt/Manifest @@ -0,0 +1 @@ +DIST v23.02.tar.gz 300103 BLAKE2B 7837dfc2f1e9d0c8f7742fed567601f9ecddb55170d79f2b92acb02ce1df8066484554ffe70d0f83470c97b9936d787cfa722cab3882e0fbeb863204e6705c16 SHA512 1c1316a17467f36e6ac01587980333ad9f0dde71122cd6f315a0e3772fbdc5905ae4247f37990fb85d17c3ee4c26947940ada39e49f14566e3d7338875d017ab diff --git a/media-video/mpc-qt/mpc-qt-23.02.ebuild b/media-video/mpc-qt/mpc-qt-23.02.ebuild new file mode 100644 index 0000000000..119514e17e --- /dev/null +++ b/media-video/mpc-qt/mpc-qt-23.02.ebuild @@ -0,0 +1,31 @@ +# Copyright 2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit qmake-utils desktop + +DESCRIPTION="Media Player Classic Qute Theater" +HOMEPAGE="https://mpc-qt.github.io/" +SRC_URI="https://github.com/${PN}/${PN}/archive/refs/tags/v${PV}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64" + +DEPEND="dev-qt/qtcore:5" +RDEPEND="${DEPEND}" +BDEPEND="" + +src_configure() { + eqmake5 mpc-qt.pro +} + +src_compile() { + emake +} + +src_install() { + dobin "${WORKDIR}/${P}/mpc-qt" + domenu "${WORKDIR}/${P}/io.github.mpc_qt.Mpc-Qt.desktop" +}