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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 794B6158099 for ; Sun, 26 Nov 2023 17:09:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BBC002BC070; Sun, 26 Nov 2023 17:09:08 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9BEED2BC070 for ; Sun, 26 Nov 2023 17:09:08 +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 8433B33BE42 for ; Sun, 26 Nov 2023 17:09:07 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D6F42998 for ; Sun, 26 Nov 2023 17:09:05 +0000 (UTC) From: "Benoît Dufour" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Benoît Dufour" Message-ID: <1701018466.f9c22da2b267a4bd525bfe7bcdc077ccd947aea5.benoit.dufour@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev 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: benoit.dufour X-VCS-Committer-Name: Benoît Dufour X-VCS-Revision: f9c22da2b267a4bd525bfe7bcdc077ccd947aea5 X-VCS-Branch: dev Date: Sun, 26 Nov 2023 17:09:05 +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: a983efbe-7bde-4e21-a0d3-0870b5f3fd38 X-Archives-Hash: 9e3213f8b22da36026559775f6515f3d commit: f9c22da2b267a4bd525bfe7bcdc077ccd947aea5 Author: Benoît Dufour mail com> AuthorDate: Sun Nov 26 17:07:46 2023 +0000 Commit: Benoît Dufour mail 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" +}