public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Joonas Niilola" <juippis@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/flacon/
Date: Fri, 09 May 2025 07:07:00 +0000 (UTC)	[thread overview]
Message-ID: <1746774414.ae6dc2f2a7d1c12287f3285c054f582dcb22b7ad.juippis@gentoo> (raw)

commit:     ae6dc2f2a7d1c12287f3285c054f582dcb22b7ad
Author:     Philipp Rösner <rndxelement <AT> protonmail <DOT> com>
AuthorDate: Sat Mar  8 17:25:19 2025 +0000
Commit:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Fri May  9 07:06:54 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ae6dc2f2

media-sound/flacon: add 12.0.0

Closes: https://bugs.gentoo.org/950664
Signed-off-by: Philipp Rösner <rndxelement <AT> protonmail.com>
Closes: https://github.com/gentoo/gentoo/pull/40964
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>

 media-sound/flacon/Manifest             |  1 +
 media-sound/flacon/flacon-12.0.0.ebuild | 99 +++++++++++++++++++++++++++++++++
 2 files changed, 100 insertions(+)

diff --git a/media-sound/flacon/Manifest b/media-sound/flacon/Manifest
index a55359d66d39..9d6ae5b69c32 100644
--- a/media-sound/flacon/Manifest
+++ b/media-sound/flacon/Manifest
@@ -1 +1,2 @@
 DIST flacon-11.4.0.tar.gz 4095740 BLAKE2B 078bded28f114939ee2a003885e85a6259122ae0de95265a52de525202645d872550a773b49b7d37e3b479912bc6b31245532f71bd2020a954b227082c856589 SHA512 321f80c40b61e60e91b32d19a1f14dbdc9738aacd54e7ea8bf0a969daeeec3f663b119fd3973a2722b14b836bc8d6c16cd3f4b831c003a906f1d110db5caaeee
+DIST flacon-12.0.0.tar.gz 5843268 BLAKE2B dc1327562a62d04524f22cf281d9645ef3fcc564330a344e61e11834d4bac2ad62abe141ab10601ff4da687b8b39ce04a89ba6c4120be887909a7d098b37549e SHA512 fa8e98e70ae0272f86baa59839e7c9f24496d77951b5ca41c06ee09d306cc752a95222599a3b71228ade325f919783e4a65d1f690b07975fa7c00cd2542a2254

diff --git a/media-sound/flacon/flacon-12.0.0.ebuild b/media-sound/flacon/flacon-12.0.0.ebuild
new file mode 100644
index 000000000000..8a8ebe18fdbf
--- /dev/null
+++ b/media-sound/flacon/flacon-12.0.0.ebuild
@@ -0,0 +1,99 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+# Tests require lots of disk space
+CHECKREQS_DISK_BUILD=10G
+inherit check-reqs cmake optfeature virtualx xdg-utils
+
+DESCRIPTION="Extracts audio tracks from an audio CD image to separate tracks"
+HOMEPAGE="https://flacon.github.io/"
+SRC_URI="https://github.com/flacon/flacon/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="LGPL-2.1+"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+
+BDEPEND="
+	dev-qt/qttools:6[linguist]
+	virtual/pkgconfig
+"
+RDEPEND="
+	app-i18n/uchardet
+	dev-qt/qtbase:6[gui,network,widgets,concurrent]
+	media-libs/taglib:=
+	media-sound/sox[flac,wavpack]
+	media-video/mediainfo
+"
+DEPEND="${RDEPEND}
+	test? (
+		dev-cpp/yaml-cpp
+		media-libs/faac
+		media-libs/flac
+		media-sound/alacenc
+		media-sound/alac_decoder
+		media-sound/lame
+		<=media-sound/mac-4.12
+		media-sound/opus-tools
+		media-sound/shntool
+		media-sound/ttaenc
+		media-sound/vorbis-tools
+		media-sound/wavpack
+	)
+"
+
+PATCHES=(
+	"${FILESDIR}"/${PN}-11.3.0-no-man-compress.patch
+)
+
+RESTRICT="!test? ( test )"
+
+pkg_pretend() {
+	use test && check-reqs_pkg_pretend
+}
+
+pkg_setup() {
+	use test && check-reqs_pkg_setup
+}
+
+src_configure() {
+	local mycmakeargs=(
+		-DBUILD_TESTS="$(usex test)"
+		-DUSE_QT5="OFF"
+		-DUSE_QT6="ON"
+	)
+	cmake_src_configure
+}
+
+src_test() {
+	# All tests fail with enabled sandbox
+	# TODO: Get all tests to pass
+	# See bug: #831592
+	local -x SANDBOX_ON=0
+
+	virtx "${BUILD_DIR}/tests/${PN}_test" || die
+}
+
+pkg_postinst() {
+	optfeature_header "${PN} optionally supports formats listed below."
+	optfeature 'FLAC input and output support' media-libs/flac
+	optfeature 'WavPack input and output support' media-sound/wavpack
+	optfeature 'APE input support' media-sound/mac
+	optfeature 'ALAC input support' media-sound/alacenc
+	optfeature 'ALAC output support' media-sound/alac_decoder
+	optfeature 'TTA input support' media-sound/ttaenc
+	optfeature 'AAC output support' media-libs/faac
+	optfeature 'MP3 output support' media-sound/lame
+	optfeature 'Vorbis output support' media-sound/vorbis-tools
+	optfeature 'Opus input/output support' media-sound/opus-tools
+
+	xdg_icon_cache_update
+	xdg_desktop_database_update
+}
+
+pkg_postrm() {
+	xdg_icon_cache_update
+	xdg_desktop_database_update
+}


             reply	other threads:[~2025-05-09  7:07 UTC|newest]

Thread overview: 71+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-05-09  7:07 Joonas Niilola [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-10-01 20:20 [gentoo-commits] repo/gentoo:master commit in: media-sound/flacon/ Sam James
2025-09-04 20:48 Sam James
2025-06-15  5:21 Arthur Zamarin
2025-01-01 16:48 Andreas Sturmlechner
2025-01-01 10:18 Joonas Niilola
2025-01-01  4:30 Sam James
2024-12-28  0:38 Andreas Sturmlechner
2024-12-10 16:03 Andreas Sturmlechner
2024-12-10 15:56 Joonas Niilola
2024-11-22 16:01 Joonas Niilola
2024-11-10 13:03 Sam James
2023-09-30 10:25 Daniel Pielmeier
2023-05-30  6:07 Joonas Niilola
2023-05-30  6:07 Joonas Niilola
2023-03-20  6:42 Joonas Niilola
2023-03-20  6:42 Joonas Niilola
2023-02-26  7:04 Joonas Niilola
2023-02-26  7:04 Joonas Niilola
2022-11-18  8:18 Joonas Niilola
2022-10-06  5:25 Joonas Niilola
2022-10-06  5:25 Joonas Niilola
2022-08-04  7:25 Joonas Niilola
2022-07-20  4:11 Joonas Niilola
2022-07-20  4:11 Joonas Niilola
2022-07-05  8:22 Joonas Niilola
2022-07-05  8:22 Joonas Niilola
2022-01-20 14:30 Sam James
2022-01-20 14:30 Sam James
2020-03-15 22:34 Andreas Sturmlechner
2020-03-15 11:45 Agostino Sarubbo
2019-12-07 15:01 Andreas Sturmlechner
2018-07-28  8:53 Michał Górny
2018-06-25  9:53 Jason Zaman
2018-04-30 16:08 Patrice Clement
2018-02-23 19:48 Andreas Sturmlechner
2018-02-01  1:45 Andreas Sturmlechner
2018-01-02 18:29 Patrice Clement
2018-01-02 18:29 Patrice Clement
2017-08-16  7:32 Michał Górny
2017-08-16  7:32 Michał Górny
2017-07-04  7:25 Patrice Clement
2017-05-15  9:09 Michał Górny
2017-02-25  1:03 Michael Palimaka
2017-01-04  6:19 Göktürk Yüksek
2016-12-28 13:27 Patrice Clement
2016-12-28 13:27 Patrice Clement
2016-10-26 21:29 Patrice Clement
2016-06-28 14:03 Patrice Clement
2016-06-27  0:25 Göktürk Yüksek
2016-06-02  7:42 Patrice Clement
2016-06-02  7:42 Patrice Clement
2016-06-02  7:42 Patrice Clement
2016-06-02  7:42 Patrice Clement
2016-05-10  9:28 Ian Delaney
2016-05-10  9:28 Ian Delaney
2016-05-10  9:28 Ian Delaney
2016-04-23 13:18 Davide Pesavento
2016-03-15 15:27 Agostino Sarubbo
2016-03-05 11:39 Patrice Clement
2016-02-02 11:07 Patrice Clement
2016-01-31 14:43 Patrice Clement
2016-01-31 14:43 Patrice Clement
2016-01-31 14:43 Patrice Clement
2016-01-31 14:43 Patrice Clement
2016-01-31 14:43 Patrice Clement
2016-01-31 14:43 Patrice Clement
2016-01-06 18:06 Ian Delaney
2016-01-02 16:28 Agostino Sarubbo
2015-12-01  7:02 Ian Delaney
2015-11-26  2:07 Ian Delaney

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=1746774414.ae6dc2f2a7d1c12287f3285c054f582dcb22b7ad.juippis@gentoo \
    --to=juippis@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