commit: d9dd4351054cdd9f17889892de47fcf2a253c9f7 Author: Nicolas PARLANT <nicolas.parlant <AT> parhuet <DOT> fr> AuthorDate: Wed Jan 21 12:52:12 2026 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Sun Jan 25 06:32:43 2026 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d9dd4351
media-sound/redoflacs: add 1.1.0, EAPI 8 update EAPI 7->8 use optfeature instead of readme.gentoo license is now MIT install README and manpage Closes: https://bugs.gentoo.org/950710 Signed-off-by: Nicolas PARLANT <nicolas.parlant <AT> parhuet.fr> Part-of: https://github.com/gentoo/gentoo/pull/45467 Closes: https://github.com/gentoo/gentoo/pull/45467 Signed-off-by: Sam James <sam <AT> gentoo.org> media-sound/redoflacs/Manifest | 1 + media-sound/redoflacs/redoflacs-1.1.0.ebuild | 35 ++++++++++++++++++++++++++++ 2 files changed, 36 insertions(+) diff --git a/media-sound/redoflacs/Manifest b/media-sound/redoflacs/Manifest index ca96474fc404..8afc770fde75 100644 --- a/media-sound/redoflacs/Manifest +++ b/media-sound/redoflacs/Manifest @@ -1 +1,2 @@ DIST redoflacs-0.30.tar.gz 40711 BLAKE2B afa4ddd4892b006092df769be753a6861dc75564021432ef255aef5046e870173c31a76c756362b7c530611432531dab2199155824457623c1ad805b8c51dc57 SHA512 bdd706909f4609668da1dd80635c486821616310d8de1caac1d4dbce17d8eb76ae04657f7f77fe22a05aabcb0b12d34e2e2c0812d16e973af132ab8a420afc4a +DIST redoflacs-1.1.0.tar.gz 32907 BLAKE2B 13b75ffcff62b9a2e138535ad1381eebe6f853f829bf5659a0df3f134be8faeb9c7bf04de70ae81e3c52c16ffa9b890172271b750ffbdff51c3f06a23af1402d SHA512 d5f508d38b25a62a571fed662e5f77eecddc1044d27595d2b0fd5fd6cdd7ba34c2fad603714b0acaeb6b6eddf998b86c9776a77d14e6a7e29180a230512a3307 diff --git a/media-sound/redoflacs/redoflacs-1.1.0.ebuild b/media-sound/redoflacs/redoflacs-1.1.0.ebuild new file mode 100644 index 000000000000..b5bc6f5bb93d --- /dev/null +++ b/media-sound/redoflacs/redoflacs-1.1.0.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit optfeature + +DESCRIPTION="Bash commandline flac compressor, verifier, organizer, analyzer, retagger" +HOMEPAGE="https://github.com/sirjaren/redoflacs" +SRC_URI="https://github.com/sirjaren/redoflacs/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND=" + >=app-shells/bash-4 + media-libs/flac + sys-apps/coreutils +" + +# use precompiled redoflacs.1 +src_compile() { :; } + +src_install() { + dobin redoflacs + dodoc README.md + doman redoflacs.1 +} + +pkg_postinst() { + elog "Run 'redoflacs -o' to generate a new config-file (non-destructive) to take advantage of any new features." + optfeature "creating spectrograms" media-sound/sox[png] + optfeature "determining authenticity of FLAC files (CDDA)" media-sound/aucdtec +}
