Gentoo Archives: gentoo-commits

From: Matthias Maier <tamiko@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/mp3fs/
Date: Wed, 07 Feb 2018 00:54:55
Message-Id: 1517964863.bd2c473b517ce0353a478d29a99ea777da519393.tamiko@gentoo
1 commit: bd2c473b517ce0353a478d29a99ea777da519393
2 Author: Matthias Maier <tamiko <AT> gentoo <DOT> org>
3 AuthorDate: Wed Feb 7 00:48:46 2018 +0000
4 Commit: Matthias Maier <tamiko <AT> gentoo <DOT> org>
5 CommitDate: Wed Feb 7 00:54:23 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bd2c473b
7
8 sys-fs/mp3fs: ebuild maintenance
9
10 - port to EAPI 6
11 - add slot operators
12 - restrict tests
13
14 Closes: https://bugs.gentoo.org/624020
15 Package-Manager: Portage-2.3.24, Repoman-2.3.6
16
17 sys-fs/mp3fs/mp3fs-0.91-r1.ebuild | 22 ++++++++++++++++++++++
18 1 file changed, 22 insertions(+)
19
20 diff --git a/sys-fs/mp3fs/mp3fs-0.91-r1.ebuild b/sys-fs/mp3fs/mp3fs-0.91-r1.ebuild
21 new file mode 100644
22 index 00000000000..e3b560646d8
23 --- /dev/null
24 +++ b/sys-fs/mp3fs/mp3fs-0.91-r1.ebuild
25 @@ -0,0 +1,22 @@
26 +# Copyright 1999-2018 Gentoo Foundation
27 +# Distributed under the terms of the GNU General Public License v2
28 +
29 +EAPI=6
30 +
31 +DESCRIPTION="a read-only FUSE filesystem which transcodes FLAC audio files to MP3 when read"
32 +HOMEPAGE="https://khenriks.github.com/mp3fs/"
33 +SRC_URI="https://github.com/khenriks/mp3fs/releases/download/v${PV}/${P}.tar.gz"
34 +
35 +LICENSE="GPL-3"
36 +SLOT="0"
37 +KEYWORDS="~amd64 ~x86"
38 +IUSE=""
39 +
40 +RESTRICT=test
41 +
42 +DEPEND="sys-fs/fuse:=
43 + media-libs/libid3tag:=
44 + media-libs/flac:=
45 + media-sound/lame
46 + media-libs/libogg"
47 +RDEPEND="${DEPEND}"