From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 71C71158094 for ; Mon, 29 Aug 2022 20:37:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 98927E089A; Mon, 29 Aug 2022 20:36:59 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 78929E089A for ; Mon, 29 Aug 2022 20:36:59 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 75DDB3408F0 for ; Mon, 29 Aug 2022 20:36:58 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id F40A9568 for ; Mon, 29 Aug 2022 20:36:56 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1661805406.bf414177055490c8dd5acc59db2eb595bd5f251e.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/mp3fs/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-fs/mp3fs/mp3fs-1.1.1-r2.ebuild X-VCS-Directories: sys-fs/mp3fs/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: bf414177055490c8dd5acc59db2eb595bd5f251e X-VCS-Branch: master Date: Mon, 29 Aug 2022 20:36:56 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 9cb3de71-54c7-4f1d-9ce5-9751ab2db6dc X-Archives-Hash: 6fbe6839397e110b1c47c86a53228131 commit: bf414177055490c8dd5acc59db2eb595bd5f251e Author: Andreas Sturmlechner gentoo org> AuthorDate: Mon Aug 29 20:26:23 2022 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Mon Aug 29 20:36:46 2022 +0000 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 000000000000..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) +}