commit: 53d9488e4a950fecd17653691d7df5fe428df7cf Author: Joe Kappus <joe <AT> wt <DOT> gd> AuthorDate: Sat Sep 2 10:10:36 2023 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Sat Sep 2 15:00:11 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=53d9488e
app-arch/par2cmdline: fix openmp useflag and tests With advice from sam and dwfreed on IRC. openmp useflag was not being passed to configure. Tests work concurrently for some time. See-also: https://github.com/Parchive/par2cmdline/commit/91947749f93cc605781eabe6548f845728e45532 Signed-off-by: Joe Kappus <joe <AT> wt.gd> Signed-off-by: Sam James <sam <AT> gentoo.org> app-arch/par2cmdline/par2cmdline-0.8.1-r2.ebuild | 29 ++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/app-arch/par2cmdline/par2cmdline-0.8.1-r2.ebuild b/app-arch/par2cmdline/par2cmdline-0.8.1-r2.ebuild new file mode 100644 index 000000000000..e026448f3a80 --- /dev/null +++ b/app-arch/par2cmdline/par2cmdline-0.8.1-r2.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit toolchain-funcs + +DESCRIPTION="A PAR-2.0 file verification and repair tool" +HOMEPAGE="https://github.com/Parchive/par2cmdline" +SRC_URI="https://github.com/Parchive/${PN}/releases/download/v${PV}/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos" +IUSE="openmp" + +PATCHES=( "${FILESDIR}"/${P}-big-endian.patch ) + +pkg_pretend() { + [[ ${MERGE_TYPE} != binary ]] && use openmp && tc-check-openmp +} + +pkg_setup() { + [[ ${MERGE_TYPE} != binary ]] && use openmp && tc-check-openmp +} + +src_configure() { + econf $(use_enable openmp) +}
