app-arch/par2cmdline: add 1.1.1

Release notes: https://github.com/Parchive/par2cmdline/releases/tag/v1.1.1

My note: I dropped the endiness patch as was upstreamed in 1.0.0.

Closes: https://bugs.gentoo.org/959664
Signed-off-by: Joe Kappus <joe@wt.gd>
Part-of: https://codeberg.org/gentoo/gentoo/pulls/410
Signed-off-by: Sam James <sam@gentoo.org>
This commit is contained in:
Joe Kappus
2026-03-25 02:41:41 -04:00
committed by Sam James
parent d48e441068
commit a2d76768a2
2 changed files with 28 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST par2cmdline-0.8.1.tar.bz2 3213343 BLAKE2B 4778fd32012c61739e04a4e564eaedf48527c04b0d83c5467c34808913e81cd5459a6a5bfabe79ca74f520761ebd3592e80b714f3ef45cc98866da919757a176 SHA512 b33ee654bd14269afb02d48175abf183281270c3e0dad9ffcaa0aa69c4271715a85e550d6d56fe5460ebfe9a37dc53b7d2210cd79a6f55d3921dc5dd5972c846
DIST par2cmdline-1.1.1.tar.bz2 3259814 BLAKE2B fad7ce72c50a9fc12a9db0e6746cfe3d3af4a607a0be340abec5875d5df2217338a96a7d14731b2254229f8be01606b8fb969dce85e8eebb21c97a44a18170ff SHA512 13b78bb16958e808123ed47c5248f205e0f23b51c507d4d2ff6efccc4a4448970bddd0e4bdd9825b77ff9e26e16f847f8b7f76b19eedc18d4d6f23e8d7cf9acd

View File

@@ -0,0 +1,27 @@
# Copyright 1999-2026 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 ~arm64 ~hppa ~ppc ~ppc64 ~x86"
IUSE="openmp"
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)
}