From: "Andreas Sturmlechner" <asturm@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/kid3/
Date: Sat, 21 Sep 2024 12:40:08 +0000 (UTC) [thread overview]
Message-ID: <1726922384.184f2b4f942dd1f99a7c3dbb523400c6b743802a.asturm@gentoo> (raw)
commit: 184f2b4f942dd1f99a7c3dbb523400c6b743802a
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Sat Sep 21 12:32:28 2024 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sat Sep 21 12:39:44 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=184f2b4f
media-sound/kid3: add 3.9.6
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
media-sound/kid3/Manifest | 1 +
media-sound/kid3/kid3-3.9.6.ebuild | 94 ++++++++++++++++++++++++++++++++++++++
2 files changed, 95 insertions(+)
diff --git a/media-sound/kid3/Manifest b/media-sound/kid3/Manifest
index ba2bf1bd75c0..84fcf1ac248d 100644
--- a/media-sound/kid3/Manifest
+++ b/media-sound/kid3/Manifest
@@ -1 +1,2 @@
DIST kid3-3.9.5.tar.xz 1843528 BLAKE2B 6bd7cf85eb6da91e1fb2dad40f63cdd443b1f75f3fab685f7af3caa5727f49afbf9b53a8d304f5e127743c4e0f8e3672b62fca33cf6de0a02ef091e758b2335a SHA512 a5b21ebabeddb49a2755fd1b5c563a822419d2a82184182bda85e5be9932ccd9626e969f944fb55cfa4c85f7c7c9821adba75375f966ee90272c2cf2283acdd8
+DIST kid3-3.9.6.tar.xz 1872012 BLAKE2B 3945ca19f08baf84373ba34bcb9917f58d20f9208479a3a2d1319bdf50aae5cc56b906f5ac2caee5eb3d5c5f042a0ecdeff3e3ac0ecb499e6e3a32db436f2b1d SHA512 1667b3f5d458f9cc54e5b9af839c849e990a333eab3cfaa8d310b4d46b925ca5b57ea0ac9365a023fecc1ac2429f761dd2bfc0b3a3df48f5d4dd351c8741455f
diff --git a/media-sound/kid3/kid3-3.9.6.ebuild b/media-sound/kid3/kid3-3.9.6.ebuild
new file mode 100644
index 000000000000..2f6d21932bed
--- /dev/null
+++ b/media-sound/kid3/kid3-3.9.6.ebuild
@@ -0,0 +1,94 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{10..13} )
+inherit cmake kde.org python-any-r1 xdg
+
+DESCRIPTION="Simple tag editor based on Qt"
+HOMEPAGE="https://kid3.kde.org/"
+
+if [[ ${KDE_BUILD_TYPE} != live ]]; then
+ SRC_URI="mirror://kde/stable/${PN}/${PV}/${P}.tar.xz"
+ KEYWORDS="~amd64 ~x86"
+fi
+
+LICENSE="GPL-2+"
+SLOT="0"
+IUSE="acoustid flac kde mp3 mp4 +mpris +taglib test vorbis"
+
+REQUIRED_USE="flac? ( vorbis )"
+RESTRICT="!test? ( test )"
+
+DEPEND="
+ dev-qt/qtbase:6[gui,network,widgets,xml]
+ dev-qt/qtdeclarative:6
+ dev-qt/qtmultimedia:6
+ sys-libs/readline:=
+ acoustid? (
+ media-libs/chromaprint:=
+ media-video/ffmpeg:=
+ )
+ flac? (
+ media-libs/flac:=[cxx]
+ media-libs/libvorbis
+ )
+ kde? (
+ kde-frameworks/kconfig:6
+ kde-frameworks/kconfigwidgets:6
+ kde-frameworks/kcoreaddons:6
+ kde-frameworks/kio:6
+ kde-frameworks/kwidgetsaddons:6
+ kde-frameworks/kxmlgui:6
+ )
+ mp3? ( media-libs/id3lib )
+ mp4? ( media-libs/libmp4v2 )
+ mpris? ( dev-qt/qttools:6[qdbus] )
+ taglib? ( >=media-libs/taglib-1.9.1:= )
+ vorbis? (
+ media-libs/libogg
+ media-libs/libvorbis
+ )
+"
+RDEPEND="${DEPEND}
+ !media-sound/kid3:5
+"
+BDEPEND="${PYTHON_DEPS}
+ dev-qt/qttools:6[linguist]
+ kde? ( kde-frameworks/extra-cmake-modules:0 )
+"
+
+pkg_setup() {
+ use test && python-any-r1_pkg_setup
+}
+
+src_prepare() {
+ # overengineered upstream build system
+ cmake_src_prepare
+ # applies broken python hacks, bug #614950
+ cmake_comment_add_subdirectory doc
+}
+
+src_configure() {
+ local mycmakeargs=(
+ -DBUILD_WITH_QT6=ON
+ -DWITH_QAUDIODECODER=ON # bug 855281
+ -DWITH_CHROMAPRINT=$(usex acoustid)
+ -DWITH_DBUS=$(usex mpris)
+ -DWITH_FLAC=$(usex flac)
+ -DWITH_ID3LIB=$(usex mp3)
+ -DWITH_MP4V2=$(usex mp4)
+ -DWITH_TAGLIB=$(usex taglib)
+ -DBUILD_TESTING=$(usex test)
+ -DWITH_VORBIS=$(usex vorbis)
+ )
+
+ if use kde ; then
+ mycmakeargs+=( "-DWITH_APPS=KDE;CLI" )
+ else
+ mycmakeargs+=( "-DWITH_APPS=Qt;CLI" )
+ fi
+
+ cmake_src_configure
+}
next reply other threads:[~2024-09-21 12:40 UTC|newest]
Thread overview: 108+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-09-21 12:40 Andreas Sturmlechner [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-03-25 13:58 [gentoo-commits] repo/gentoo:master commit in: media-sound/kid3/ Andreas Sturmlechner
2025-03-25 13:58 Andreas Sturmlechner
2025-03-18 20:36 Andreas Sturmlechner
2025-03-18 20:36 Andreas Sturmlechner
2024-11-08 13:31 Andreas Sturmlechner
2024-10-22 1:34 Sam James
2024-09-21 13:46 Andreas Sturmlechner
2024-04-22 17:07 Andreas Sturmlechner
2024-04-20 14:52 Arthur Zamarin
2024-04-20 14:52 Arthur Zamarin
2024-03-11 9:25 Miroslav Šulc
2023-08-03 17:11 Andreas Sturmlechner
2023-07-31 16:08 Andreas Sturmlechner
2023-07-11 19:21 Andreas Sturmlechner
2023-02-25 18:05 Arthur Zamarin
2023-02-25 14:46 Arthur Zamarin
2023-01-12 20:42 Andreas Sturmlechner
2022-09-10 9:17 Andreas Sturmlechner
2022-09-10 8:41 Sam James
2022-09-10 0:48 Sam James
2022-09-10 0:48 Sam James
2022-08-08 12:08 Andreas Sturmlechner
2022-01-22 12:20 Andreas Sturmlechner
2022-01-22 9:48 Agostino Sarubbo
2022-01-21 13:27 Jakov Smolić
2022-01-18 16:31 Andreas Sturmlechner
2022-01-17 10:47 Andreas Sturmlechner
2021-12-18 16:54 Andreas Sturmlechner
2021-07-22 7:21 Miroslav Šulc
2021-07-22 7:10 Agostino Sarubbo
2021-07-22 7:09 Agostino Sarubbo
2021-06-20 20:02 Andreas Sturmlechner
2021-04-26 10:34 Sam James
2021-04-25 10:02 Sam James
2021-04-07 8:36 Andreas Sturmlechner
2021-04-06 6:31 Agostino Sarubbo
2021-04-05 22:54 Thomas Deutschmann
2021-03-25 23:13 Andreas Sturmlechner
2021-01-31 16:07 Andreas Sturmlechner
2020-11-04 8:21 Miroslav Šulc
2020-11-04 0:52 Sam James
2020-10-27 22:00 Thomas Deutschmann
2020-09-26 10:33 Andreas Sturmlechner
2020-07-18 8:41 Andreas Sturmlechner
2020-07-17 15:17 Agostino Sarubbo
2020-07-17 15:05 Agostino Sarubbo
2020-05-10 11:31 Andreas Sturmlechner
2020-04-26 10:35 David Seifert
2020-03-02 13:05 Andreas Sturmlechner
2020-03-02 12:32 Agostino Sarubbo
2020-03-01 22:02 Andreas Sturmlechner
2020-03-01 21:44 Agostino Sarubbo
2020-01-28 15:11 Andreas Sturmlechner
2019-12-29 11:54 Andreas Sturmlechner
2019-12-26 13:39 Andreas Sturmlechner
2019-08-30 8:24 Lars Wendler
2019-07-16 21:04 Andreas Sturmlechner
2019-05-19 17:54 Andreas Sturmlechner
2019-05-19 17:54 Andreas Sturmlechner
2019-05-19 15:48 Thomas Deutschmann
2019-03-24 16:49 Andreas Sturmlechner
2019-03-20 15:03 Lars Wendler
2019-02-22 10:24 Mikle Kolyada
2019-02-17 8:11 Andreas Sturmlechner
2019-02-15 1:37 Thomas Deutschmann
2018-12-26 0:04 Lars Wendler
2018-09-03 12:11 Lars Wendler
2018-08-18 17:40 Andreas Sturmlechner
2018-07-14 8:44 Andreas Sturmlechner
2018-07-09 16:27 Johannes Huber
2018-07-09 16:27 Johannes Huber
2018-07-09 15:03 Mikle Kolyada
2018-07-06 13:43 Thomas Deutschmann
2018-04-26 11:35 Lars Wendler
2018-03-20 9:07 Lars Wendler
2018-01-25 14:41 Michael Palimaka
2018-01-25 14:41 Michael Palimaka
2017-11-06 15:29 Lars Wendler
2017-11-06 15:29 Lars Wendler
2017-08-18 15:29 Michael Palimaka
2017-08-18 15:29 Michael Palimaka
2017-06-18 10:17 Johannes Huber
2017-06-04 10:53 Andreas Sturmlechner
2017-06-04 10:42 Agostino Sarubbo
2017-06-04 10:34 Agostino Sarubbo
2017-06-03 18:20 Andreas Sturmlechner
2017-03-04 13:49 Johannes Huber
2017-03-04 13:49 Johannes Huber
2017-03-04 13:46 Agostino Sarubbo
2017-03-04 13:38 Agostino Sarubbo
2017-02-21 17:37 Johannes Huber
2017-02-21 17:37 Johannes Huber
2016-12-29 11:55 Michael Palimaka
2016-12-25 15:04 Lars Wendler
2016-11-04 10:14 Lars Wendler
2016-11-04 10:14 Lars Wendler
2016-11-04 10:14 Lars Wendler
2016-09-19 13:17 Lars Wendler
2016-09-03 0:08 Lars Wendler
2016-09-03 0:08 Lars Wendler
2016-07-13 20:24 Lars Wendler
2016-06-08 20:31 Michael Palimaka
2016-05-13 14:51 Agostino Sarubbo
2016-04-26 11:38 Lars Wendler
2016-03-23 14:47 Lars Wendler
2016-03-06 12:58 Agostino Sarubbo
2016-01-19 14:10 Michael Palimaka
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=1726922384.184f2b4f942dd1f99a7c3dbb523400c6b743802a.asturm@gentoo \
--to=asturm@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