mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
dev-libs/isa-l: Bump to 2.32.1
Signed-off-by: Michał Górny <mgorny@gentoo.org>
This commit is contained in:
@@ -1 +1,2 @@
|
||||
DIST isa-l-2.32.0.tar.gz 842403 BLAKE2B bf2de03d14ae1f9c224881aa5b98bd40ac1e27a58f0e2f3cbc510ecf4f34b4642dfd7beeb33115086ef7d3d4fbe3222e3625fede9f5ce22ab53f1199e0f26418 SHA512 e09f6e6f39d60b06b7a62d0e5c0be5e86b26efc375235e84f7c9aa85f4706883e7f0b40cc9cbced4ac27db2f19ac9c36f45b93454652a36fe46aa297200d4aeb
|
||||
DIST isa-l-2.32.1.tar.gz 842741 BLAKE2B d6a7b0a7269b53905cec04c8b15eb1cc783449f182c3b5c344d21adef7b4bf15f9ad6f9aae4b4ad9aebd55cc90ebd56e755842114e40ee0be9c4274235569fea SHA512 f9da6ec16919b52492f7001b4e8047b16c0af8ffb82fd8f98ffb85293167ea8e8f016a0b0dc11d1b3f6c7a0ee08d271084faf0d98b0f46c8e22abb531273555f
|
||||
|
||||
59
dev-libs/isa-l/isa-l-2.32.1.ebuild
Normal file
59
dev-libs/isa-l/isa-l-2.32.1.ebuild
Normal file
@@ -0,0 +1,59 @@
|
||||
# Copyright 1999-2026 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=9
|
||||
|
||||
inherit autotools
|
||||
|
||||
DESCRIPTION="Intelligent Storage Acceleration Library"
|
||||
HOMEPAGE="https://github.com/intel/isa-l"
|
||||
SRC_URI="https://github.com/intel/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
|
||||
LICENSE="BSD"
|
||||
SLOT="0"
|
||||
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
|
||||
IUSE="tools"
|
||||
|
||||
BDEPEND="
|
||||
amd64? ( || (
|
||||
>=dev-lang/nasm-2.11.01
|
||||
>=dev-lang/yasm-1.2.0
|
||||
) )
|
||||
"
|
||||
|
||||
PATCHES=(
|
||||
"${FILESDIR}"/${PN}-2.31.0_no-fortify-source.patch
|
||||
"${FILESDIR}"/${PN}-2.31.0_user-ldflags.patch
|
||||
)
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
|
||||
# isa-l does not support arbitrary assemblers on amd64 and x86,
|
||||
# it must be either nasm or yasm.
|
||||
if use amd64; then
|
||||
unset AS
|
||||
fi
|
||||
|
||||
# upstream is using D for their own purposes, sigh
|
||||
sed -i -e 's:${D}:${DIST_D}:' Makefile.am || die
|
||||
|
||||
eautoreconf
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
local myconf=(
|
||||
$(use_enable tools programs)
|
||||
)
|
||||
econf "${myconf[@]}"
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
unset ARCH
|
||||
default
|
||||
}
|
||||
|
||||
src_install() {
|
||||
default
|
||||
find "${ED}" -name '*.la' -delete || die
|
||||
}
|
||||
@@ -18,4 +18,7 @@
|
||||
<upstream>
|
||||
<remote-id type="github">intel/isa-l</remote-id>
|
||||
</upstream>
|
||||
<use>
|
||||
<flag name="tools">Install igzip tool</flag>
|
||||
</use>
|
||||
</pkgmetadata>
|
||||
|
||||
Reference in New Issue
Block a user