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, 02 Feb 2022 06:45:11
Message-Id: 1643784268.2a3dcd9a3ae308ee88fc3c07ce65638b5a1c9802.mgorny@gentoo
1 commit: 2a3dcd9a3ae308ee88fc3c07ce65638b5a1c9802
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed Feb 2 06:27:57 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed Feb 2 06:44:28 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2a3dcd9a
7
8 dev-python/pybind11: Remove old
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.8.1.ebuild | 53 -------------------------------
14 2 files changed, 54 deletions(-)
15
16 diff --git a/dev-python/pybind11/Manifest b/dev-python/pybind11/Manifest
17 index bad20830777f..552d3e34ffb8 100644
18 --- a/dev-python/pybind11/Manifest
19 +++ b/dev-python/pybind11/Manifest
20 @@ -1,2 +1 @@
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.8.1.ebuild b/dev-python/pybind11/pybind11-2.8.1.ebuild
25 deleted file mode 100644
26 index 34b65faf8ef3..000000000000
27 --- a/dev-python/pybind11/pybind11-2.8.1.ebuild
28 +++ /dev/null
29 @@ -1,53 +0,0 @@
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 -}