commit: b49f82758de6efd489de142e92af687d2471c3b8 Author: Maciej Barć <xgqt <AT> gentoo <DOT> org> AuthorDate: Fri Oct 17 10:18:12 2025 +0000 Commit: Maciej Barć <xgqt <AT> gentoo <DOT> org> CommitDate: Fri Oct 17 10:55:36 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b49f8275
app-emacs/emms: minor style refactor Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org> app-emacs/emms/emms-23.ebuild | 20 +++++++++++++------- app-emacs/emms/emms-24.ebuild | 20 +++++++++++++------- 2 files changed, 26 insertions(+), 14 deletions(-) diff --git a/app-emacs/emms/emms-23.ebuild b/app-emacs/emms/emms-23.ebuild index 5eaa3f1a2cf5..10e77567d9f0 100644 --- a/app-emacs/emms/emms-23.ebuild +++ b/app-emacs/emms/emms-23.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2024 Gentoo Authors +# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -11,21 +11,27 @@ HOMEPAGE="https://www.gnu.org/software/emms/ if [[ "${PV}" == *9999* ]] ; then inherit git-r3 - EGIT_REPO_URI="https://git.savannah.gnu.org/git/emms.git" + + EGIT_REPO_URI="https://git.savannah.gnu.org/git/emms" else SRC_URI="https://git.savannah.gnu.org/cgit/emms.git/snapshot/${P}.tar.gz" + KEYWORDS="~amd64 ~ppc ~sparc ~x86" fi LICENSE="GPL-3+ FDL-1.1+" SLOT="0" -RDEPEND="media-libs/taglib:=" -DEPEND="${RDEPEND}" +# NOTE: EMMS can use almost anything for playing media files therefore +# the dependency possibilities are so broad that we refrain from setting +# anything explicitly in DEPEND/RDEPEND. -# EMMS can use almost anything for playing media files therefore the dependency -# possibilities are so broad that we refrain from setting anything explicitly -# in DEPEND/RDEPEND. +RDEPEND=" + media-libs/taglib:= +" +DEPEND=" + ${RDEPEND} +" DOCS=( AUTHORS NEWS README ) SITEFILE="50${PN}-gentoo.el" diff --git a/app-emacs/emms/emms-24.ebuild b/app-emacs/emms/emms-24.ebuild index 5eaa3f1a2cf5..10e77567d9f0 100644 --- a/app-emacs/emms/emms-24.ebuild +++ b/app-emacs/emms/emms-24.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2024 Gentoo Authors +# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -11,21 +11,27 @@ HOMEPAGE="https://www.gnu.org/software/emms/ if [[ "${PV}" == *9999* ]] ; then inherit git-r3 - EGIT_REPO_URI="https://git.savannah.gnu.org/git/emms.git" + + EGIT_REPO_URI="https://git.savannah.gnu.org/git/emms" else SRC_URI="https://git.savannah.gnu.org/cgit/emms.git/snapshot/${P}.tar.gz" + KEYWORDS="~amd64 ~ppc ~sparc ~x86" fi LICENSE="GPL-3+ FDL-1.1+" SLOT="0" -RDEPEND="media-libs/taglib:=" -DEPEND="${RDEPEND}" +# NOTE: EMMS can use almost anything for playing media files therefore +# the dependency possibilities are so broad that we refrain from setting +# anything explicitly in DEPEND/RDEPEND. -# EMMS can use almost anything for playing media files therefore the dependency -# possibilities are so broad that we refrain from setting anything explicitly -# in DEPEND/RDEPEND. +RDEPEND=" + media-libs/taglib:= +" +DEPEND=" + ${RDEPEND} +" DOCS=( AUTHORS NEWS README ) SITEFILE="50${PN}-gentoo.el"
