commit: 8f9c39cc640044465812b78e26148a615a3b1257 Author: NHOrus <jy6x2b32pie9 <AT> yahoo <DOT> com> AuthorDate: Thu Jan 2 15:22:26 2025 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Mon Mar 10 01:39:06 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8f9c39cc
media-sound/id3tool: update EAPI 7 -> 8, fix impl. function in configure Autoreconf solves false negatives in configure. Bug: https://bugs.gentoo.org/899852 Signed-off-by: NHOrus <jy6x2b32pie9 <AT> yahoo.com> Closes: https://github.com/gentoo/gentoo/pull/39946 Signed-off-by: Sam James <sam <AT> gentoo.org> media-sound/id3tool/id3tool-1.2a-r1.ebuild | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/media-sound/id3tool/id3tool-1.2a-r1.ebuild b/media-sound/id3tool/id3tool-1.2a-r1.ebuild new file mode 100644 index 000000000000..eb2059541fe6 --- /dev/null +++ b/media-sound/id3tool/id3tool-1.2a-r1.ebuild @@ -0,0 +1,21 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit autotools + +DESCRIPTION="Tool for easy manipulation of the ID3 tags present in MP3 audio files" +HOMEPAGE="http://nekohako.xware.cx/id3tool/" +SRC_URI="http://nekohako.xware.cx/id3tool/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~sparc ~x86" + +src_prepare() { + default + + #implied function in configure, bug https://bugs.gentoo.org/899852 + eautoreconf +}
