mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-12-13 21:47:44 +00:00
update HOMEPAGE and SRC_URI with github repo add a snapshot after 1.5.0_alpha3 auto-completion/libtecla support removed in 1.5.0_alpha1 bug #729104 fixed in 1.5.0_alpha1 remove .la files patches : fix gcc-15 fix implicit function in configure fix an issue with randomization Closes: https://bugs.gentoo.org/729104 Closes: https://bugs.gentoo.org/906004 Closes: https://bugs.gentoo.org/943905 Signed-off-by: Nicolas PARLANT <nicolas.parlant@parhuet.fr> Part-of: https://github.com/gentoo/gentoo/pull/43620 Closes: https://github.com/gentoo/gentoo/pull/43620 Signed-off-by: Sam James <sam@gentoo.org>
40 lines
1 KiB
Bash
40 lines
1 KiB
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit autotools
|
|
|
|
COMMIT_HASH="22620e602cbbebad90c0bd041896ebccf70dbf5f"
|
|
DESCRIPTION="Filebench - A Model Based File System Workload Generator"
|
|
HOMEPAGE="https://github.com/filebench/filebench"
|
|
SRC_URI="https://github.com/${PN}/${PN}/archive/${COMMIT_HASH}.tar.gz -> ${P}.tar.gz"
|
|
S="${WORKDIR}/${PN}-${COMMIT_HASH}"
|
|
|
|
LICENSE="CDDL"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~riscv ~x86"
|
|
|
|
DEPEND="
|
|
app-alternatives/lex
|
|
app-alternatives/yacc
|
|
"
|
|
|
|
PATCHES=(
|
|
# https://github.com/filebench/filebench/pull/143
|
|
"${FILESDIR}"/${PN}-1.5.0_alpha3_add_suppress_asr.patch
|
|
# https://github.com/filebench/filebench/pull/160 #906004
|
|
"${FILESDIR}"/${PN}-1.5.0_alpha3_fix_implicit_syscall.patch
|
|
# selected commits from https://github.com/filebench/filebench/pull/116 #943905
|
|
"${FILESDIR}"/${PN}-1.5.0_alpha3_fix_gcc15.patch
|
|
)
|
|
|
|
src_prepare() {
|
|
default
|
|
eautoreconf
|
|
}
|
|
|
|
src_install() {
|
|
default
|
|
find "${ED}" -name '*.la' -delete || die
|
|
}
|