blob: 4cbab835b55a5e32b4e3a6b58fdba7d6962bcb68 (
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
|
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
PYTHON_COMPAT=( python3_{6,7,8} )
inherit cmake distutils-r1
DESCRIPTION="AST-based Python refactoring library"
HOMEPAGE="https://pybind11.readthedocs.io/en/stable/"
SRC_URI="https://github.com/pybind/pybind11/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
IUSE="doc test"
DEPEND="
${PYTHON_DEPS}
doc? (
dev-python/breathe[${PYTHON_USEDEP}]
<dev-python/sphinx-3[${PYTHON_USEDEP}]
dev-python/sphinx_rtd_theme[${PYTHON_USEDEP}]
)
"
RDEPEND="
${PYTHON_DEPS}
dev-cpp/eigen:3
"
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
DOCS=( README.md CONTRIBUTING.md ISSUE_TEMPLATE.md )
#I can't make tests do anything
RESTRICT=test
pkg_setup() {
use doc && DISTUTILS_ALL_SUBPHASE_IMPLS=( 'python3_7' )
}
python_prepare_all() {
export PYBIND11_USE_CMAKE=1
cmake_src_prepare
distutils-r1_python_prepare_all
}
python_configure_all() {
local mycmakeargs=(
-DPYBIND11_INSTALL=ON
-DPYBIND11_TEST=$(usex test)
)
cmake_src_configure
}
python_compile_all() {
# Compilation only does anything for tests
use test && cmake_src_compile
# documentation is not covered by cmake, but has it's own makefile
# using sphinx
if use doc; then
python_setup 'python3_7'
pushd "${S}"/docs || die
emake info man html
popd || die
fi
}
python_install_all() {
cmake_src_install
if use doc; then
python_setup
local HTML_DOCS=( "${S}"/docs/.build/html/. )
# install man and info pages
doman "${S}"/docs/.build/man/pybind11.1
doinfo "${S}"/docs/.build/texinfo/pybind11.info
fi
distutils-r1_python_install_all
}
python_test_all() {
cmake_src_test
}
|