Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pybind11/
Date: Wed, 29 Dec 2021 08:30:24
Message-Id: 1640766569.3387300e169dea03f86915256bad569e10b116a8.mgorny@gentoo
1 commit: 3387300e169dea03f86915256bad569e10b116a8
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed Dec 29 06:57:06 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed Dec 29 08:29:29 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3387300e
7
8 dev-python/pybind11: Bump to 2.9.0
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/pybind11/Manifest | 1 +
13 dev-python/pybind11/pybind11-2.9.0.ebuild | 53 +++++++++++++++++++++++++++++++
14 2 files changed, 54 insertions(+)
15
16 diff --git a/dev-python/pybind11/Manifest b/dev-python/pybind11/Manifest
17 index 0e1154459ca6..bad20830777f 100644
18 --- a/dev-python/pybind11/Manifest
19 +++ b/dev-python/pybind11/Manifest
20 @@ -1 +1,2 @@
21 DIST pybind11-2.8.1.tar.gz 693075 BLAKE2B 00f691121858bbe019b5398ab5418523b352f29716901ec6572817e3a35efeb953a9a1542ad37830aab6b9e5a6d6dd56c7aee390772f1d992ef570e03472ebd8 SHA512 6738b4551a1ca2fdf6676be78216b9056cecf8b4d125f0d1aaae9929614bcbf4a9b233fc3c52b8f9dfd19a9ca1496515e6748c1afd8968b9c52c9a1e8b28da10
22 +DIST pybind11-2.9.0.tar.gz 698784 BLAKE2B bfbe173d580131e445d759bd9b1a8929ceb9fc357a1ed8873aa8024fb9226a37bb97293dc0189a67ae61a232f3790ca6f635a30d0a0401c867cde98f1010438c SHA512 87184c9e09e1340f2d34786a66560fe77684a3629b517f78321073a1f0dfdb766365d3698dcf6f08e5141b1f4da50ec917e61b36538e5a1ec9fd1b68f29cd396
23
24 diff --git a/dev-python/pybind11/pybind11-2.9.0.ebuild b/dev-python/pybind11/pybind11-2.9.0.ebuild
25 new file mode 100644
26 index 000000000000..54e1aa92dba5
27 --- /dev/null
28 +++ b/dev-python/pybind11/pybind11-2.9.0.ebuild
29 @@ -0,0 +1,53 @@
30 +# Copyright 1999-2021 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +PYTHON_COMPAT=( python3_{8..10} )
36 +inherit cmake distutils-r1
37 +
38 +DESCRIPTION="AST-based Python refactoring library"
39 +HOMEPAGE="https://pybind11.readthedocs.io/en/stable/"
40 +SRC_URI="https://github.com/pybind/pybind11/archive/v${PV}.tar.gz -> ${P}.tar.gz"
41 +
42 +LICENSE="BSD"
43 +SLOT="0"
44 +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
45 +
46 +RDEPEND="
47 + dev-cpp/eigen:3
48 +"
49 +
50 +distutils_enable_tests pytest
51 +
52 +python_prepare_all() {
53 + export PYBIND11_USE_CMAKE=1
54 +
55 + cmake_src_prepare
56 + distutils-r1_python_prepare_all
57 +}
58 +
59 +python_configure() {
60 + local mycmakeargs=(
61 + # disable forced lto
62 + -DPYBIND11_LTO_CXX_FLAGS=
63 + -DPYBIND11_INSTALL=ON
64 + -DPYBIND11_TEST=$(usex test)
65 + )
66 + cmake_src_configure
67 +}
68 +
69 +python_compile() {
70 + distutils-r1_python_compile
71 + # Compilation only does anything for tests
72 + use test && cmake_src_compile
73 +}
74 +
75 +python_test() {
76 + cmake_build check
77 +}
78 +
79 +python_install() {
80 + distutils-r1_python_install
81 + cmake_src_install
82 +}