Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/mp3fs/
Date: Mon, 29 Aug 2022 20:37:00
Message-Id: 1661805406.bf414177055490c8dd5acc59db2eb595bd5f251e.asturm@gentoo
1 commit: bf414177055490c8dd5acc59db2eb595bd5f251e
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Mon Aug 29 20:26:23 2022 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Mon Aug 29 20:36:46 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bf414177
7
8 sys-fs/mp3fs: update EAPI 6 -> 8, fix dependencies
9
10 Bug: https://bugs.gentoo.org/732764
11 Closes: https://bugs.gentoo.org/798981
12 Closes: https://bugs.gentoo.org/809299
13 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
14
15 sys-fs/mp3fs/mp3fs-1.1.1-r2.ebuild | 31 +++++++++++++++++++++++++++++++
16 1 file changed, 31 insertions(+)
17
18 diff --git a/sys-fs/mp3fs/mp3fs-1.1.1-r2.ebuild b/sys-fs/mp3fs/mp3fs-1.1.1-r2.ebuild
19 new file mode 100644
20 index 000000000000..91cf99c844be
21 --- /dev/null
22 +++ b/sys-fs/mp3fs/mp3fs-1.1.1-r2.ebuild
23 @@ -0,0 +1,31 @@
24 +# Copyright 1999-2022 Gentoo Authors
25 +# Distributed under the terms of the GNU General Public License v2
26 +
27 +EAPI=8
28 +
29 +DESCRIPTION="Read-only FUSE filesystem which transcodes FLAC audio files to MP3 when read"
30 +HOMEPAGE="https://khenriks.github.com/mp3fs/"
31 +SRC_URI="https://github.com/khenriks/mp3fs/releases/download/v${PV}/${P}.tar.gz"
32 +
33 +LICENSE="GPL-3"
34 +SLOT="0"
35 +KEYWORDS="~amd64 ~x86"
36 +IUSE="+flac vorbis"
37 +
38 +REQUIRED_USE="|| ( flac vorbis )"
39 +RESTRICT="test"
40 +
41 +DEPEND="
42 + media-libs/libid3tag:=
43 + media-sound/lame
44 + sys-fs/fuse:0=
45 + flac? ( >=media-libs/flac-1.1.4 )
46 + vorbis? ( >=media-libs/libvorbis-1.3.0 )
47 +"
48 +RDEPEND="${DEPEND}"
49 +
50 +src_configure() {
51 + econf \
52 + $(use_with flac) \
53 + $(use_with vorbis)
54 +}