From: "Sam James" <sam@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: media-plugins/qmmp-plugin-pack/
Date: Tue, 14 Oct 2025 20:06:45 +0000 (UTC) [thread overview]
Message-ID: <1760472256.800a8b9e045a9dc2b68a77e3ef58820f3033879f.sam@gentoo> (raw)
commit: 800a8b9e045a9dc2b68a77e3ef58820f3033879f
Author: Nicolas PARLANT <nicolas.parlant <AT> parhuet <DOT> fr>
AuthorDate: Tue Oct 14 12:08:23 2025 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Oct 14 20:04:16 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=800a8b9e
media-plugins/qmmp-plugin-pack: add 2.3.0
add three plugins :
video w/ mplayer (move from qmmp)
video w/ mpv (experimental)
mms support (move from qmmp)
Signed-off-by: Nicolas PARLANT <nicolas.parlant <AT> parhuet.fr>
Part-of: https://github.com/gentoo/gentoo/pull/44174
Closes: https://github.com/gentoo/gentoo/pull/44174
Signed-off-by: Sam James <sam <AT> gentoo.org>
media-plugins/qmmp-plugin-pack/Manifest | 1 +
media-plugins/qmmp-plugin-pack/metadata.xml | 3 ++
.../qmmp-plugin-pack/qmmp-plugin-pack-2.3.0.ebuild | 53 ++++++++++++++++++++++
3 files changed, 57 insertions(+)
diff --git a/media-plugins/qmmp-plugin-pack/Manifest b/media-plugins/qmmp-plugin-pack/Manifest
index 500edc4fa8b4..dc1b3daef407 100644
--- a/media-plugins/qmmp-plugin-pack/Manifest
+++ b/media-plugins/qmmp-plugin-pack/Manifest
@@ -1 +1,2 @@
DIST qmmp-plugin-pack-2.2.2.tar.bz2 248813 BLAKE2B a1a1263b7a1626639864c621ce21f426c2f42b9f1cc463997f712762d0cf7a13388325111142e62341d55a5f5608ab788b8973e56dae3cd88a9fd39434370a25 SHA512 56b54e4377f8580964ad7ce08314e415e33a53d5d01b7cd56912c8821664511acf040b5d1e3835ea53d709103eb737bda890019cf0070bb8a95e0b203d9f4ec1
+DIST qmmp-plugin-pack-2.3.0.tar.bz2 263387 BLAKE2B 3c6623aaf0e27dab485e517bebf557033083a30044fb13c3e37a524c6a407775304dd9f9a91107842f445f50dc59f88fc0a9b73e62fbcb6945da3ce880c534ba SHA512 1ae3762bde61628482a3b1fb7d77ba25043ee462d49a879b91d205329b4553d70d917e8b45249e1dd356f9335352c12b3cb1cbb62e84743be987c2c3dcceca56
diff --git a/media-plugins/qmmp-plugin-pack/metadata.xml b/media-plugins/qmmp-plugin-pack/metadata.xml
index 93423219a5bc..d084f2552adb 100644
--- a/media-plugins/qmmp-plugin-pack/metadata.xml
+++ b/media-plugins/qmmp-plugin-pack/metadata.xml
@@ -5,4 +5,7 @@
<email>sound@gentoo.org</email>
<name>Gentoo Sound project</name>
</maintainer>
+ <use>
+ <flag name="mpv">Enable video support via <pkg>media-video/mpv</pkg>(experimental)</flag>
+ </use>
</pkgmetadata>
diff --git a/media-plugins/qmmp-plugin-pack/qmmp-plugin-pack-2.3.0.ebuild b/media-plugins/qmmp-plugin-pack/qmmp-plugin-pack-2.3.0.ebuild
new file mode 100644
index 000000000000..fe10d54aba79
--- /dev/null
+++ b/media-plugins/qmmp-plugin-pack/qmmp-plugin-pack-2.3.0.ebuild
@@ -0,0 +1,53 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake optfeature
+
+DESCRIPTION="Set of extra plugins for Qmmp"
+HOMEPAGE="https://qmmp.ylsoftware.com/"
+SRC_URI="https://qmmp.ylsoftware.com/files/${PN}/$(ver_cut 1-2)/${P}.tar.bz2"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="ffmpeg +libsamplerate mms modplug mplayer mpv"
+
+RDEPEND="
+ dev-qt/qtbase:6[gui,network,widgets]
+ media-libs/taglib:=
+ =media-sound/qmmp-$(ver_cut 1-2)*
+ ffmpeg? ( media-video/ffmpeg:= )
+ libsamplerate? ( media-libs/libsamplerate )
+ mms? ( media-libs/libmms )
+ modplug? ( media-libs/libmodplug )
+ mplayer? ( media-video/mplayer )
+ mpv? (
+ media-video/ffmpeg:=
+ media-video/mpv:=[libmpv]
+ )
+"
+DEPEND="${RDEPEND}"
+BDEPEND="
+ dev-qt/qttools:6[linguist]
+ virtual/pkgconfig
+"
+
+src_configure() {
+ local mycmakeargs=(
+ # enabled by default as taglib is already required by qmmp
+ -DUSE_FFAP=ON
+ -DUSE_FFVIDEO=$(usex ffmpeg)
+ -DUSE_MMS=$(usex mms)
+ -DUSE_MODPLUG=$(usex modplug)
+ -DUSE_MPLAYER=$(usex mplayer)
+ -DUSE_MPV=$(usex mpv)
+ -DUSE_SRC=$(usex libsamplerate)
+ )
+ cmake_src_configure
+}
+
+pkg_postinst() {
+ optfeature "audio playback from YouTube" net-misc/yt-dlp
+}
next reply other threads:[~2025-10-14 20:06 UTC|newest]
Thread overview: 86+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-10-14 20:06 Sam James [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-06-18 19:02 [gentoo-commits] repo/gentoo:master commit in: media-plugins/qmmp-plugin-pack/ Miroslav Šulc
2025-06-14 22:42 Sam James
2025-04-26 2:42 Sam James
2025-04-26 2:42 Sam James
2025-02-06 22:41 Andreas Sturmlechner
2025-01-06 22:58 Andreas Sturmlechner
2023-06-17 13:18 Andreas Sturmlechner
2023-06-17 7:43 Arthur Zamarin
2023-06-17 7:43 Arthur Zamarin
2023-05-29 10:11 Andreas Sturmlechner
2022-07-27 8:43 Andreas Sturmlechner
2022-07-27 5:01 Miroslav Šulc
2022-07-25 7:13 Agostino Sarubbo
2022-06-22 11:36 Jakov Smolić
2022-05-24 9:39 Lars Wendler
2022-05-05 10:07 Miroslav Šulc
2022-05-05 9:54 Jakov Smolić
2022-05-05 9:54 Jakov Smolić
2022-04-04 9:47 Lars Wendler
2022-02-17 10:14 Miroslav Šulc
2022-02-17 10:06 Jakov Smolić
2022-02-17 10:06 Jakov Smolić
2022-01-18 8:28 Lars Wendler
2021-08-19 5:49 Miroslav Šulc
2021-08-19 1:29 Agostino Sarubbo
2021-08-14 7:02 Agostino Sarubbo
2021-07-13 6:52 Miroslav Šulc
2021-07-13 6:34 Agostino Sarubbo
2021-07-13 5:35 Miroslav Šulc
2021-07-11 8:58 Agostino Sarubbo
2021-06-13 6:43 Miroslav Šulc
2021-06-13 6:32 Agostino Sarubbo
2021-06-13 6:04 Sam James
2021-06-09 13:28 Lars Wendler
2020-09-29 17:49 Miroslav Šulc
2020-09-20 20:21 Agostino Sarubbo
2020-09-08 15:54 Miroslav Šulc
2020-05-07 12:42 Lars Wendler
2020-04-28 9:24 Lars Wendler
2019-06-04 19:49 Andreas Sturmlechner
2019-06-04 14:45 Thomas Deutschmann
2019-05-26 11:47 Mikle Kolyada
2019-02-28 10:58 Lars Wendler
2019-02-15 18:10 Mikle Kolyada
2019-02-15 15:46 Thomas Deutschmann
2019-02-14 2:58 Lars Wendler
2019-02-14 2:58 Lars Wendler
2019-01-23 14:52 Lars Wendler
2018-09-24 16:18 Lars Wendler
2018-09-07 20:34 Andreas Sturmlechner
2018-09-07 15:04 Mikle Kolyada
2018-09-02 23:46 Thomas Deutschmann
2018-07-23 9:11 Lars Wendler
2018-07-23 9:11 Lars Wendler
2018-04-23 0:53 Lars Wendler
2017-11-29 18:45 Lars Wendler
2017-11-29 18:45 Lars Wendler
2017-10-23 15:31 Lars Wendler
2017-10-14 15:13 Andreas Sturmlechner
2017-08-07 7:53 Lars Wendler
2017-08-07 7:53 Lars Wendler
2017-06-03 21:26 Andreas Sturmlechner
2017-03-22 14:22 Agostino Sarubbo
2017-03-21 21:29 Andreas Sturmlechner
2017-03-21 21:20 Andreas Sturmlechner
2017-03-21 21:20 Andreas Sturmlechner
2017-01-16 2:40 Lars Wendler
2017-01-04 15:29 Agostino Sarubbo
2016-12-23 10:11 Johannes Huber
2016-12-19 15:40 Tobias Klausmann
2016-12-19 15:08 Tobias Klausmann
2016-10-17 9:05 Lars Wendler
2016-10-17 9:05 Lars Wendler
2016-09-03 0:08 Lars Wendler
2016-07-13 10:16 Lars Wendler
2016-07-13 10:16 Lars Wendler
2016-06-14 11:45 Lars Wendler
2016-06-11 17:00 Agostino Sarubbo
2016-05-04 9:30 Lars Wendler
2015-12-24 15:55 Lars Wendler
2015-12-24 15:55 Lars Wendler
2015-11-03 16:28 Agostino Sarubbo
2015-11-03 16:28 Agostino Sarubbo
2015-09-11 21:21 Markos Chandras
2015-08-27 17:29 Markos Chandras
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1760472256.800a8b9e045a9dc2b68a77e3ef58820f3033879f.sam@gentoo \
--to=sam@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox