commit: 297dc7325c3fdcb14ff1abec39b7e8b8cafd6e60 Author: Alexey Sokolov <alexey+gentoo <AT> asokolov <DOT> org> AuthorDate: Tue Sep 23 22:19:58 2025 +0000 Commit: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org> CommitDate: Thu Sep 25 10:32:32 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=297dc732
media-sound/wavsplit: update EAPI 7 -> 8 Closes: https://bugs.gentoo.org/945262 Signed-off-by: Alexey Sokolov <alexey+gentoo <AT> asokolov.org> Part-of: https://github.com/gentoo/gentoo/pull/43918 Closes: https://github.com/gentoo/gentoo/pull/43918 Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org> .../wavsplit/files/wavsplit-1.2.1-gcc15.patch | 13 ++++++++ media-sound/wavsplit/wavsplit-1.2.1-r3.ebuild | 39 ++++++++++++++++++++++ 2 files changed, 52 insertions(+) diff --git a/media-sound/wavsplit/files/wavsplit-1.2.1-gcc15.patch b/media-sound/wavsplit/files/wavsplit-1.2.1-gcc15.patch new file mode 100644 index 000000000000..15e4bd043104 --- /dev/null +++ b/media-sound/wavsplit/files/wavsplit-1.2.1-gcc15.patch @@ -0,0 +1,13 @@ +https://bugs.gentoo.org/945262 + +--- a/wavsplit.h ++++ b/wavsplit.h +@@ -113,7 +113,7 @@ static __inline__ short _LE_short (unsigned char *lp) + + #endif + +-static char *findchunk (); ++static char *findchunk (char *pstart, char *fourcc, size_t n); + static int readheader (); + static void Report (const char *Message, const char *Severity, int Verbose); + static int TokenOK (const char *Message, char **strPtr); diff --git a/media-sound/wavsplit/wavsplit-1.2.1-r3.ebuild b/media-sound/wavsplit/wavsplit-1.2.1-r3.ebuild new file mode 100644 index 000000000000..f75424b0adbf --- /dev/null +++ b/media-sound/wavsplit/wavsplit-1.2.1-r3.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit toolchain-funcs + +DESCRIPTION="Simple command line tool to split WAV files" +HOMEPAGE="https://sourceforge.net/projects/wavsplit/" +SRC_URI="https://downloads.sourceforge.net/${PN}/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +#-sparc, -amd64: 1.0: "Only supports PCM wave format" error message. +KEYWORDS="~amd64 -sparc ~x86" + +PATCHES=( + "${FILESDIR}"/${P}-Makefile.patch + "${FILESDIR}"/${P}-large-files.patch + "${FILESDIR}"/${P}-64bit.patch + "${FILESDIR}"/${P}-gcc15.patch +) + +src_prepare() { + default + emake clean +} + +src_compile() { + emake CC="$(tc-getCC)" +} + +src_test() { :; } #294302 + +src_install() { + dobin wav{ren,split} + doman wav{ren,split}.1 + dodoc BUGS CHANGES CREDITS README{,.wavren} +}
