[gentoo-commits] repo/gentoo:master commit in: sys-fs/mp3fs/

2023-12-30 Thread Conrad Kostecki
commit: cc31650f4f4221ca8f921a8bec9e0945614ceccc
Author: Michael Mair-Keimberger  levelnine  at>
AuthorDate: Fri Dec 29 22:01:24 2023 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Sun Dec 31 02:39:05 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cc31650f

sys-fs/mp3fs: fix LICENSE, fix bug #869656

Signed-off-by: Michael Mair-Keimberger  levelnine.at>

Closes: https://bugs.gentoo.org/869656
Closes: https://github.com/gentoo/gentoo/pull/34552
Signed-off-by: Conrad Kostecki  gentoo.org>

 sys-fs/mp3fs/mp3fs-1.1.1-r5.ebuild | 37 +
 1 file changed, 37 insertions(+)

diff --git a/sys-fs/mp3fs/mp3fs-1.1.1-r5.ebuild 
b/sys-fs/mp3fs/mp3fs-1.1.1-r5.ebuild
new file mode 100644
index ..f8a75766501d
--- /dev/null
+++ b/sys-fs/mp3fs/mp3fs-1.1.1-r5.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit toolchain-funcs
+
+DESCRIPTION="Read-only FUSE filesystem which transcodes FLAC audio files to 
MP3 when read"
+HOMEPAGE="https://khenriks.github.io/mp3fs/;
+SRC_URI="https://github.com/khenriks/mp3fs/releases/download/v${PV}/${P}.tar.gz;
+
+LICENSE="GPL-3+"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="+flac vorbis"
+
+REQUIRED_USE="|| ( flac vorbis )"
+RESTRICT="test"
+
+DEPEND="
+   media-libs/libid3tag:=
+   media-sound/lame
+   sys-fs/fuse:0=
+   flac? ( >=media-libs/flac-1.1.4:=[cxx] )
+   vorbis? ( >=media-libs/libvorbis-1.3.0 )
+"
+RDEPEND="${DEPEND}"
+
+src_configure() {
+   econf \
+   $(use_with flac) \
+   $(use_with vorbis)
+}
+
+src_compile() {
+   emake AR="$(tc-getAR)"
+}



[gentoo-commits] repo/gentoo:master commit in: sys-fs/mp3fs/

2023-04-10 Thread Sam James
commit: 6d627566a6f4d164f280724b4d86b24a623a1035
Author: Sam James  gentoo  org>
AuthorDate: Mon Apr 10 22:13:34 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Apr 10 22:13:34 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6d627566

sys-fs/mp3fs: update *.github.com HOMEPAGEs

Signed-off-by: Sam James  gentoo.org>

 sys-fs/mp3fs/mp3fs-1.1.1-r4.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys-fs/mp3fs/mp3fs-1.1.1-r4.ebuild 
b/sys-fs/mp3fs/mp3fs-1.1.1-r4.ebuild
index 222b8b14873c..11f67b814bad 100644
--- a/sys-fs/mp3fs/mp3fs-1.1.1-r4.ebuild
+++ b/sys-fs/mp3fs/mp3fs-1.1.1-r4.ebuild
@@ -1,10 +1,10 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
 
 DESCRIPTION="Read-only FUSE filesystem which transcodes FLAC audio files to 
MP3 when read"
-HOMEPAGE="https://khenriks.github.com/mp3fs/;
+HOMEPAGE="https://khenriks.github.io/mp3fs/;
 
SRC_URI="https://github.com/khenriks/mp3fs/releases/download/v${PV}/${P}.tar.gz;
 
 LICENSE="GPL-3"



[gentoo-commits] repo/gentoo:master commit in: sys-fs/mp3fs/

2022-09-22 Thread Andreas Sturmlechner
commit: ccf24fbbdf954bcddcdda4bb482fbae79d095446
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Thu Sep 22 20:45:07 2022 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Thu Sep 22 20:59:17 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ccf24fbb

sys-fs/mp3fs: Add missing media-libs/flac[cxx] USEdep

Closes: https://bugs.gentoo.org/872395
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 sys-fs/mp3fs/{mp3fs-1.1.1-r3.ebuild => mp3fs-1.1.1-r4.ebuild} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/mp3fs/mp3fs-1.1.1-r3.ebuild 
b/sys-fs/mp3fs/mp3fs-1.1.1-r4.ebuild
similarity index 93%
rename from sys-fs/mp3fs/mp3fs-1.1.1-r3.ebuild
rename to sys-fs/mp3fs/mp3fs-1.1.1-r4.ebuild
index 1fa7524c654e..222b8b14873c 100644
--- a/sys-fs/mp3fs/mp3fs-1.1.1-r3.ebuild
+++ b/sys-fs/mp3fs/mp3fs-1.1.1-r4.ebuild
@@ -19,7 +19,7 @@ DEPEND="
media-libs/libid3tag:=
media-sound/lame
sys-fs/fuse:0=
-   flac? ( >=media-libs/flac-1.1.4:= )
+   flac? ( >=media-libs/flac-1.1.4:=[cxx] )
vorbis? ( >=media-libs/libvorbis-1.3.0 )
 "
 RDEPEND="${DEPEND}"



[gentoo-commits] repo/gentoo:master commit in: sys-fs/mp3fs/

2022-09-01 Thread Andreas Sturmlechner
commit: 952c05c18e8d83420c86245e859e9d3b1c61c67c
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Thu Sep  1 11:50:36 2022 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Thu Sep  1 11:50:36 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=952c05c1

sys-fs/mp3fs: drop 0.91-r2

Closes: https://bugs.gentoo.org/732764
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 sys-fs/mp3fs/Manifest |  1 -
 sys-fs/mp3fs/mp3fs-0.91-r2.ebuild | 21 -
 2 files changed, 22 deletions(-)

diff --git a/sys-fs/mp3fs/Manifest b/sys-fs/mp3fs/Manifest
index 57f55c8eebf0..80b6203c4ccd 100644
--- a/sys-fs/mp3fs/Manifest
+++ b/sys-fs/mp3fs/Manifest
@@ -1,2 +1 @@
-DIST mp3fs-0.91.tar.gz 357098 BLAKE2B 
39f77f1f6d2c6e86aa08be925060c6cc72e0737ead2578f5b7ac5cfcf92aaf27dc31ae10e38646d0460c0087a7100229bc150ec443879b7c1c15c485cf3946c8
 SHA512 
9499566afbaf181acd9efb8a4d6253e288ab9be0c8b036b2993553d0d4f4692d7dbcf34ac03787d8dbbfc35b2cc29e1d78612933c428a908c9c48290fedb8681
 DIST mp3fs-1.1.1.tar.gz 804399 BLAKE2B 
9e7f99b923ad744d172fa261315498c7df13d2416a7eca45108d47a7926c40c527e306c1b7d3f0aeded01ad5d32325640358fab5b5327a5c11e0e91d21d4f290
 SHA512 
b1e4f403666122056f924514a7e63ddd53dc00346d7750e37e8150ad5f13294129595d79398677c69726fb2abf942d4ddb8fdcac3b1312a01ed467475f22592b

diff --git a/sys-fs/mp3fs/mp3fs-0.91-r2.ebuild 
b/sys-fs/mp3fs/mp3fs-0.91-r2.ebuild
deleted file mode 100644
index 9cfc17e71ace..
--- a/sys-fs/mp3fs/mp3fs-0.91-r2.ebuild
+++ /dev/null
@@ -1,21 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-DESCRIPTION="A read-only FUSE filesystem which transcodes FLAC audio files to 
MP3 when read"
-HOMEPAGE="https://khenriks.github.com/mp3fs/;
-SRC_URI="https://github.com/khenriks/mp3fs/releases/download/v${PV}/${P}.tar.gz;
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="amd64 x86"
-
-RESTRICT="test"
-
-DEPEND="sys-fs/fuse:0=
-   media-libs/libid3tag:=
-   media-libs/flac
-   media-sound/lame
-   media-libs/libogg"
-RDEPEND="${DEPEND}"



[gentoo-commits] repo/gentoo:master commit in: sys-fs/mp3fs/

2022-08-31 Thread Sam James
commit: 24d795c53ac1ab73da4d8a1ac578fba910d2d34a
Author: Sam James  gentoo  org>
AuthorDate: Thu Sep  1 03:12:51 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Sep  1 03:12:51 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=24d795c5

sys-fs/mp3fs: Stabilize 1.1.1-r2 amd64, #732764

Signed-off-by: Sam James  gentoo.org>

 sys-fs/mp3fs/mp3fs-1.1.1-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/mp3fs/mp3fs-1.1.1-r2.ebuild 
b/sys-fs/mp3fs/mp3fs-1.1.1-r2.ebuild
index 5f8ebd3e819e..9d1c983aed61 100644
--- a/sys-fs/mp3fs/mp3fs-1.1.1-r2.ebuild
+++ b/sys-fs/mp3fs/mp3fs-1.1.1-r2.ebuild
@@ -9,7 +9,7 @@ 
SRC_URI="https://github.com/khenriks/mp3fs/releases/download/v${PV}/${P}.tar.gz;
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~amd64 x86"
+KEYWORDS="amd64 x86"
 IUSE="+flac vorbis"
 
 REQUIRED_USE="|| ( flac vorbis )"



[gentoo-commits] repo/gentoo:master commit in: sys-fs/mp3fs/

2022-08-31 Thread Sam James
commit: 9dd58013d6288b5180c374229a8bb0fbc1008996
Author: Sam James  gentoo  org>
AuthorDate: Thu Sep  1 03:06:39 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Sep  1 03:06:39 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9dd58013

sys-fs/mp3fs: Stabilize 1.1.1-r2 x86, #732764

Signed-off-by: Sam James  gentoo.org>

 sys-fs/mp3fs/mp3fs-1.1.1-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/mp3fs/mp3fs-1.1.1-r2.ebuild 
b/sys-fs/mp3fs/mp3fs-1.1.1-r2.ebuild
index 91cf99c844be..5f8ebd3e819e 100644
--- a/sys-fs/mp3fs/mp3fs-1.1.1-r2.ebuild
+++ b/sys-fs/mp3fs/mp3fs-1.1.1-r2.ebuild
@@ -9,7 +9,7 @@ 
SRC_URI="https://github.com/khenriks/mp3fs/releases/download/v${PV}/${P}.tar.gz;
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
 IUSE="+flac vorbis"
 
 REQUIRED_USE="|| ( flac vorbis )"



[gentoo-commits] repo/gentoo:master commit in: sys-fs/mp3fs/

2022-08-29 Thread Andreas Sturmlechner
commit: 6de76b15984e87e28977baaa19c539a0a184ef82
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Mon Aug 29 20:26:33 2022 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Mon Aug 29 20:36:46 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6de76b15

sys-fs/mp3fs: drop 1.1.1-r1

Signed-off-by: Andreas Sturmlechner  gentoo.org>

 sys-fs/mp3fs/mp3fs-1.1.1-r1.ebuild | 21 -
 1 file changed, 21 deletions(-)

diff --git a/sys-fs/mp3fs/mp3fs-1.1.1-r1.ebuild 
b/sys-fs/mp3fs/mp3fs-1.1.1-r1.ebuild
deleted file mode 100644
index e7f70ab2f022..
--- a/sys-fs/mp3fs/mp3fs-1.1.1-r1.ebuild
+++ /dev/null
@@ -1,21 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-DESCRIPTION="A read-only FUSE filesystem which transcodes FLAC audio files to 
MP3 when read"
-HOMEPAGE="https://khenriks.github.com/mp3fs/;
-SRC_URI="https://github.com/khenriks/mp3fs/releases/download/v${PV}/${P}.tar.gz;
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-RESTRICT="test"
-
-DEPEND="sys-fs/fuse:0=
-   media-libs/libid3tag:=
-   media-libs/flac
-   media-sound/lame
-   media-libs/libogg"
-RDEPEND="${DEPEND}"



[gentoo-commits] repo/gentoo:master commit in: sys-fs/mp3fs/

2022-08-29 Thread Andreas Sturmlechner
commit: bf414177055490c8dd5acc59db2eb595bd5f251e
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Mon Aug 29 20:26:23 2022 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Mon Aug 29 20:36:46 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bf414177

sys-fs/mp3fs: update EAPI 6 -> 8, fix dependencies

Bug: https://bugs.gentoo.org/732764
Closes: https://bugs.gentoo.org/798981
Closes: https://bugs.gentoo.org/809299
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 sys-fs/mp3fs/mp3fs-1.1.1-r2.ebuild | 31 +++
 1 file changed, 31 insertions(+)

diff --git a/sys-fs/mp3fs/mp3fs-1.1.1-r2.ebuild 
b/sys-fs/mp3fs/mp3fs-1.1.1-r2.ebuild
new file mode 100644
index ..91cf99c844be
--- /dev/null
+++ b/sys-fs/mp3fs/mp3fs-1.1.1-r2.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DESCRIPTION="Read-only FUSE filesystem which transcodes FLAC audio files to 
MP3 when read"
+HOMEPAGE="https://khenriks.github.com/mp3fs/;
+SRC_URI="https://github.com/khenriks/mp3fs/releases/download/v${PV}/${P}.tar.gz;
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="+flac vorbis"
+
+REQUIRED_USE="|| ( flac vorbis )"
+RESTRICT="test"
+
+DEPEND="
+   media-libs/libid3tag:=
+   media-sound/lame
+   sys-fs/fuse:0=
+   flac? ( >=media-libs/flac-1.1.4 )
+   vorbis? ( >=media-libs/libvorbis-1.3.0 )
+"
+RDEPEND="${DEPEND}"
+
+src_configure() {
+   econf \
+   $(use_with flac) \
+   $(use_with vorbis)
+}



[gentoo-commits] repo/gentoo:master commit in: sys-fs/mp3fs/

2021-08-16 Thread Sam James
commit: 3cb52a14e747b5b9c28acfcc6fe37d41b8a29525
Author: Sam James  gentoo  org>
AuthorDate: Mon Aug 16 21:21:48 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Aug 16 21:22:47 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3cb52a14

sys-fs/mp3fs: add missing slot operator dep (libid3tag)

Signed-off-by: Sam James  gentoo.org>

 sys-fs/mp3fs/{mp3fs-0.91-r1.ebuild => mp3fs-0.91-r2.ebuild} | 9 -
 sys-fs/mp3fs/{mp3fs-1.1.1.ebuild => mp3fs-1.1.1-r1.ebuild}  | 7 +++
 2 files changed, 7 insertions(+), 9 deletions(-)

diff --git a/sys-fs/mp3fs/mp3fs-0.91-r1.ebuild 
b/sys-fs/mp3fs/mp3fs-0.91-r2.ebuild
similarity index 73%
rename from sys-fs/mp3fs/mp3fs-0.91-r1.ebuild
rename to sys-fs/mp3fs/mp3fs-0.91-r2.ebuild
index 76e7779cab4..9cfc17e71ac 100644
--- a/sys-fs/mp3fs/mp3fs-0.91-r1.ebuild
+++ b/sys-fs/mp3fs/mp3fs-0.91-r2.ebuild
@@ -1,22 +1,21 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
 
-DESCRIPTION="a read-only FUSE filesystem which transcodes FLAC audio files to 
MP3 when read"
+DESCRIPTION="A read-only FUSE filesystem which transcodes FLAC audio files to 
MP3 when read"
 HOMEPAGE="https://khenriks.github.com/mp3fs/;
 
SRC_URI="https://github.com/khenriks/mp3fs/releases/download/v${PV}/${P}.tar.gz;
 
 LICENSE="GPL-3"
 SLOT="0"
 KEYWORDS="amd64 x86"
-IUSE=""
 
-RESTRICT=test
+RESTRICT="test"
 
 DEPEND="sys-fs/fuse:0=
media-libs/libid3tag:=
-   media-libs/flac:=
+   media-libs/flac
media-sound/lame
media-libs/libogg"
 RDEPEND="${DEPEND}"

diff --git a/sys-fs/mp3fs/mp3fs-1.1.1.ebuild 
b/sys-fs/mp3fs/mp3fs-1.1.1-r1.ebuild
similarity index 80%
rename from sys-fs/mp3fs/mp3fs-1.1.1.ebuild
rename to sys-fs/mp3fs/mp3fs-1.1.1-r1.ebuild
index 07bf786da21..e7f70ab2f02 100644
--- a/sys-fs/mp3fs/mp3fs-1.1.1.ebuild
+++ b/sys-fs/mp3fs/mp3fs-1.1.1-r1.ebuild
@@ -3,20 +3,19 @@
 
 EAPI=6
 
-DESCRIPTION="a read-only FUSE filesystem which transcodes FLAC audio files to 
MP3 when read"
+DESCRIPTION="A read-only FUSE filesystem which transcodes FLAC audio files to 
MP3 when read"
 HOMEPAGE="https://khenriks.github.com/mp3fs/;
 
SRC_URI="https://github.com/khenriks/mp3fs/releases/download/v${PV}/${P}.tar.gz;
 
 LICENSE="GPL-3"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
-IUSE=""
 
-RESTRICT=test
+RESTRICT="test"
 
 DEPEND="sys-fs/fuse:0=
media-libs/libid3tag:=
-   media-libs/flac:=
+   media-libs/flac
media-sound/lame
media-libs/libogg"
 RDEPEND="${DEPEND}"



[gentoo-commits] repo/gentoo:master commit in: sys-fs/mp3fs/

2021-06-27 Thread Matthias Maier
commit: f88a14a591abc234394a8c6ce4aae31a38af8ed0
Author: Matthias Maier  gentoo  org>
AuthorDate: Sun Jun 27 18:03:13 2021 +
Commit: Matthias Maier  gentoo  org>
CommitDate: Sun Jun 27 18:03:43 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f88a14a5

sys-fs/mp3fs: version bump to 1.1.1

Closes: https://bugs.gentoo.org/732764
Closes: https://bugs.gentoo.org/56
Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Matthias Maier  gentoo.org>

 sys-fs/mp3fs/Manifest   |  1 +
 sys-fs/mp3fs/mp3fs-1.1.1.ebuild | 22 ++
 2 files changed, 23 insertions(+)

diff --git a/sys-fs/mp3fs/Manifest b/sys-fs/mp3fs/Manifest
index 0b723a88d1c..57f55c8eebf 100644
--- a/sys-fs/mp3fs/Manifest
+++ b/sys-fs/mp3fs/Manifest
@@ -1 +1,2 @@
 DIST mp3fs-0.91.tar.gz 357098 BLAKE2B 
39f77f1f6d2c6e86aa08be925060c6cc72e0737ead2578f5b7ac5cfcf92aaf27dc31ae10e38646d0460c0087a7100229bc150ec443879b7c1c15c485cf3946c8
 SHA512 
9499566afbaf181acd9efb8a4d6253e288ab9be0c8b036b2993553d0d4f4692d7dbcf34ac03787d8dbbfc35b2cc29e1d78612933c428a908c9c48290fedb8681
+DIST mp3fs-1.1.1.tar.gz 804399 BLAKE2B 
9e7f99b923ad744d172fa261315498c7df13d2416a7eca45108d47a7926c40c527e306c1b7d3f0aeded01ad5d32325640358fab5b5327a5c11e0e91d21d4f290
 SHA512 
b1e4f403666122056f924514a7e63ddd53dc00346d7750e37e8150ad5f13294129595d79398677c69726fb2abf942d4ddb8fdcac3b1312a01ed467475f22592b

diff --git a/sys-fs/mp3fs/mp3fs-1.1.1.ebuild b/sys-fs/mp3fs/mp3fs-1.1.1.ebuild
new file mode 100644
index 000..07bf786da21
--- /dev/null
+++ b/sys-fs/mp3fs/mp3fs-1.1.1.ebuild
@@ -0,0 +1,22 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+DESCRIPTION="a read-only FUSE filesystem which transcodes FLAC audio files to 
MP3 when read"
+HOMEPAGE="https://khenriks.github.com/mp3fs/;
+SRC_URI="https://github.com/khenriks/mp3fs/releases/download/v${PV}/${P}.tar.gz;
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RESTRICT=test
+
+DEPEND="sys-fs/fuse:0=
+   media-libs/libid3tag:=
+   media-libs/flac:=
+   media-sound/lame
+   media-libs/libogg"
+RDEPEND="${DEPEND}"



[gentoo-commits] repo/gentoo:master commit in: sys-fs/mp3fs/

2019-06-30 Thread Matthias Maier
commit: 8b23aa1b97268f8db6cab6d12182d3145bcbabc2
Author: Matthias Maier  gentoo  org>
AuthorDate: Sun Jun 30 18:14:19 2019 +
Commit: Matthias Maier  gentoo  org>
CommitDate: Sun Jun 30 18:19:36 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8b23aa1b

sys-fs/mp3fs: stabilize mp3fs

Rationale: This was a dependency only update. Let's not put unnecessary
burden on the arch teams.

Package-Manager: Portage-2.3.67, Repoman-2.3.16
RepoMan-Options: --force
Signed-off-by: Matthias Maier  gentoo.org>

 sys-fs/mp3fs/mp3fs-0.91-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/mp3fs/mp3fs-0.91-r1.ebuild 
b/sys-fs/mp3fs/mp3fs-0.91-r1.ebuild
index 278fef25efe..76e7779cab4 100644
--- a/sys-fs/mp3fs/mp3fs-0.91-r1.ebuild
+++ b/sys-fs/mp3fs/mp3fs-0.91-r1.ebuild
@@ -9,7 +9,7 @@ 
SRC_URI="https://github.com/khenriks/mp3fs/releases/download/v${PV}/${P}.tar.gz;
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE=""
 
 RESTRICT=test



[gentoo-commits] repo/gentoo:master commit in: sys-fs/mp3fs/

2019-06-30 Thread Matthias Maier
commit: 4a08fbae0bed7595edb693969706a94dbb894705
Author: Matthias Maier  gentoo  org>
AuthorDate: Sun Jun 30 18:15:00 2019 +
Commit: Matthias Maier  gentoo  org>
CommitDate: Sun Jun 30 18:19:39 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4a08fbae

sys-fs/mp3fs: drop old

Package-Manager: Portage-2.3.67, Repoman-2.3.16
Signed-off-by: Matthias Maier  gentoo.org>

 sys-fs/mp3fs/mp3fs-0.91.ebuild | 20 
 1 file changed, 20 deletions(-)

diff --git a/sys-fs/mp3fs/mp3fs-0.91.ebuild b/sys-fs/mp3fs/mp3fs-0.91.ebuild
deleted file mode 100644
index 8c8622ae981..000
--- a/sys-fs/mp3fs/mp3fs-0.91.ebuild
+++ /dev/null
@@ -1,20 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-DESCRIPTION="a read-only FUSE filesystem which transcodes FLAC audio files to 
MP3 when read"
-HOMEPAGE="https://khenriks.github.com/mp3fs/;
-SRC_URI="https://github.com/khenriks/mp3fs/releases/download/v${PV}/${P}.tar.gz;
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE=""
-
-DEPEND="sys-fs/fuse:0=
-   media-libs/libid3tag
-   media-libs/flac
-   media-sound/lame
-   media-libs/libogg"
-RDEPEND="${DEPEND}"



[gentoo-commits] repo/gentoo:master commit in: sys-fs/mp3fs/

2019-06-30 Thread Matthias Maier
commit: 899ed8dde1c1484378b5dbf11f86686def953e42
Author: Matthias Maier  gentoo  org>
AuthorDate: Sun Jun 30 18:13:10 2019 +
Commit: Matthias Maier  gentoo  org>
CommitDate: Sun Jun 30 18:19:33 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=899ed8dd

sys-fs/mp3fs: use slotted fuse dependency

Closes: https://bugs.gentoo.org/673642
Package-Manager: Portage-2.3.67, Repoman-2.3.16
Signed-off-by: Matthias Maier  gentoo.org>

 sys-fs/mp3fs/mp3fs-0.91-r1.ebuild | 4 ++--
 sys-fs/mp3fs/mp3fs-0.91.ebuild| 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/sys-fs/mp3fs/mp3fs-0.91-r1.ebuild 
b/sys-fs/mp3fs/mp3fs-0.91-r1.ebuild
index e3b560646d8..278fef25efe 100644
--- a/sys-fs/mp3fs/mp3fs-0.91-r1.ebuild
+++ b/sys-fs/mp3fs/mp3fs-0.91-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -14,7 +14,7 @@ IUSE=""
 
 RESTRICT=test
 
-DEPEND="sys-fs/fuse:=
+DEPEND="sys-fs/fuse:0=
media-libs/libid3tag:=
media-libs/flac:=
media-sound/lame

diff --git a/sys-fs/mp3fs/mp3fs-0.91.ebuild b/sys-fs/mp3fs/mp3fs-0.91.ebuild
index 781cd615125..8c8622ae981 100644
--- a/sys-fs/mp3fs/mp3fs-0.91.ebuild
+++ b/sys-fs/mp3fs/mp3fs-0.91.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -12,7 +12,7 @@ SLOT="0"
 KEYWORDS="amd64 x86"
 IUSE=""
 
-DEPEND="sys-fs/fuse
+DEPEND="sys-fs/fuse:0=
media-libs/libid3tag
media-libs/flac
media-sound/lame



[gentoo-commits] repo/gentoo:master commit in: sys-fs/mp3fs/

2018-02-06 Thread Matthias Maier
commit: bd2c473b517ce0353a478d29a99ea777da519393
Author: Matthias Maier  gentoo  org>
AuthorDate: Wed Feb  7 00:48:46 2018 +
Commit: Matthias Maier  gentoo  org>
CommitDate: Wed Feb  7 00:54:23 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bd2c473b

sys-fs/mp3fs: ebuild maintenance

 - port to EAPI 6
 - add slot operators
 - restrict tests

Closes: https://bugs.gentoo.org/624020
Package-Manager: Portage-2.3.24, Repoman-2.3.6

 sys-fs/mp3fs/mp3fs-0.91-r1.ebuild | 22 ++
 1 file changed, 22 insertions(+)

diff --git a/sys-fs/mp3fs/mp3fs-0.91-r1.ebuild 
b/sys-fs/mp3fs/mp3fs-0.91-r1.ebuild
new file mode 100644
index 000..e3b560646d8
--- /dev/null
+++ b/sys-fs/mp3fs/mp3fs-0.91-r1.ebuild
@@ -0,0 +1,22 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+DESCRIPTION="a read-only FUSE filesystem which transcodes FLAC audio files to 
MP3 when read"
+HOMEPAGE="https://khenriks.github.com/mp3fs/;
+SRC_URI="https://github.com/khenriks/mp3fs/releases/download/v${PV}/${P}.tar.gz;
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RESTRICT=test
+
+DEPEND="sys-fs/fuse:=
+   media-libs/libid3tag:=
+   media-libs/flac:=
+   media-sound/lame
+   media-libs/libogg"
+RDEPEND="${DEPEND}"



[gentoo-commits] repo/gentoo:master commit in: sys-fs/mp3fs/

2018-02-06 Thread Matthias Maier
commit: 330fffa7484f7c9425741149250ef252d08714c3
Author: Matthias Maier  gentoo  org>
AuthorDate: Wed Feb  7 00:46:40 2018 +
Commit: Matthias Maier  gentoo  org>
CommitDate: Wed Feb  7 00:54:23 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=330fffa7

sys-fs/mp3fs: drop old version 0.32

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 sys-fs/mp3fs/Manifest  |  1 -
 sys-fs/mp3fs/mp3fs-0.32.ebuild | 23 ---
 2 files changed, 24 deletions(-)

diff --git a/sys-fs/mp3fs/Manifest b/sys-fs/mp3fs/Manifest
index ca5725fd3fc..0b723a88d1c 100644
--- a/sys-fs/mp3fs/Manifest
+++ b/sys-fs/mp3fs/Manifest
@@ -1,2 +1 @@
-DIST mp3fs-0.32.tar.gz 120579 BLAKE2B 
a929068353c687fb6bd90ceecfd2f9371be9ce0e2f3e730a6f0efdbf24764caf5fda386f622e0b02103bbc557c85489a979b1c50ac1392f3620ffc6e30b93949
 SHA512 
826ad719198195d66fff5bbb4b9b6734b5f180f37ead11bf77ecf9dd7cc86e4e2243cdea78c029b3bb8757efb9f52143f84c979f07034b016147b6257d0c9980
 DIST mp3fs-0.91.tar.gz 357098 BLAKE2B 
39f77f1f6d2c6e86aa08be925060c6cc72e0737ead2578f5b7ac5cfcf92aaf27dc31ae10e38646d0460c0087a7100229bc150ec443879b7c1c15c485cf3946c8
 SHA512 
9499566afbaf181acd9efb8a4d6253e288ab9be0c8b036b2993553d0d4f4692d7dbcf34ac03787d8dbbfc35b2cc29e1d78612933c428a908c9c48290fedb8681

diff --git a/sys-fs/mp3fs/mp3fs-0.32.ebuild b/sys-fs/mp3fs/mp3fs-0.32.ebuild
deleted file mode 100644
index 1be92bd497b..000
--- a/sys-fs/mp3fs/mp3fs-0.32.ebuild
+++ /dev/null
@@ -1,23 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-DESCRIPTION="a read-only FUSE filesystem which transcodes FLAC audio files to 
MP3 when read"
-HOMEPAGE="https://khenriks.github.com/mp3fs/;
-SRC_URI="mirror://github/khenriks/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE=""
-
-DEPEND="sys-fs/fuse
-   media-libs/libid3tag
-   media-libs/flac
-   media-sound/lame
-   media-libs/libogg"
-RDEPEND="${DEPEND}"
-
-src_install() {
-   emake DESTDIR="${D}" install || die
-   dodoc AUTHORS ChangeLog NEWS README.rst
-}