blob: 4e21e1d10fc3edfd347460a3dd8e1158cdc944f9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
# Copyright 2022-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{9..11} )
inherit python-r1 cmake
CommitId=0a92994d729ff76a58f692d3028ca1b64b145d91
DESCRIPTION="conversion to/from half-precision floating point formats"
HOMEPAGE="https://github.com/Maratyszcza/FP16/"
SRC_URI="https://github.com/Maratyszcza/${PN}/archive/${CommitId}.tar.gz
-> ${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
IUSE="test"
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
DEPEND="dev-libs/psimd"
RDEPEND="
${DEPEND}
${PYTHON_DEPS}
dev-python/PeachPy[${PYTHON_USEDEP}]
"
BDEPEND="test? ( dev-cpp/gtest )"
RESTRICT="!test? ( test )"
S="${WORKDIR}"/${PN}-${CommitId}
PATCHES=(
"${FILESDIR}"/${P}-gentoo.patch
)
src_prepare() {
cmake_src_prepare
mkdir -p module/fp16 || die
cp include/fp16/*py module/fp16 || die
}
src_configure() {
local mycmakeargs=(
-DFP16_BUILD_BENCHMARKS=OFF
-DFP16_BUILD_TESTS=$(usex test ON OFF)
)
cmake_src_configure
}
python_install() {
python_domodule module/fp16
}
src_install() {
cmake_src_install
rm "${ED}"/usr/include/fp16/*.py || die
python_foreach_impl python_install
}
|