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: Thu, 26 Aug 2021 15:31:21
Message-Id: 1629991874.3a10f9873ae4aae56865f13e0d1ded32c4259ec2.mgorny@gentoo
1 commit: 3a10f9873ae4aae56865f13e0d1ded32c4259ec2
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Aug 26 15:27:40 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Aug 26 15:31:14 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3a10f987
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 | 3 --
13 dev-python/pybind11/pybind11-2.6.1.ebuild | 58 -------------------------------
14 dev-python/pybind11/pybind11-2.6.2.ebuild | 55 -----------------------------
15 dev-python/pybind11/pybind11-2.7.0.ebuild | 54 ----------------------------
16 4 files changed, 170 deletions(-)
17
18 diff --git a/dev-python/pybind11/Manifest b/dev-python/pybind11/Manifest
19 index 8fe39197059..96f96ba6b10 100644
20 --- a/dev-python/pybind11/Manifest
21 +++ b/dev-python/pybind11/Manifest
22 @@ -1,4 +1 @@
23 -DIST pybind11-2.6.1.tar.gz 634179 BLAKE2B 33f057e88e45985a0475783b8931ec669a16efcad5d66ecb265744155e9941b2d618391a36bff1d8c1c2d74a7e0b41de50b26eae689215d4585542fbd4282cc1 SHA512 8730efec82eef8dc09a58ca3e3b28fca45880cef85d32aa5524a8fe64e23d5f6dff4ca1b48b3034a287199bd56f4db4d6806c5358bef66fde84ed0fbf80ec264
24 -DIST pybind11-2.6.2.tar.gz 647954 BLAKE2B e336d626d314538123a121d48998b15d9d16b80a6a513e85b4ef2b3179f73732ef23b85ab91d815f15c31f7e2c5091192e90b9ff8e727725882963a895367612 SHA512 1eb346ff6b8f827053265340925e2c8038b1e2a89c352fc09f15ebe86128e7ba1f48c4368b193941f034b30bee7f72a94343e05d4841fdbbd0e4d91ed3d32025
25 -DIST pybind11-2.7.0.tar.gz 666200 BLAKE2B 4f78493ecbea5068dd9ab6771c9b33859baf3e14a82a6a3b361a11620ce6495763f94acca0c0a9512fa92343fa2ff91fa3e2ff7f30731bdda823b2b3fc139302 SHA512 529596c8762f463868f942ca9c4d3e4ed141bc09c734defeeace2b0250234c3359ef1f231997389fbffca849e01ba1feb8d7edc385745b6d964771aa67ced720
26 DIST pybind11-2.7.1.tar.gz 668217 BLAKE2B 92d857f14290ee0717bd9f9b871dcecd6c0b36209bb9879f107c8542326fb0cc42c051f3bc12a8be50df892f1e26c26b710f60ed275f0dff206e30149547f2b4 SHA512 f09f46622b394d3990ab82aa7ea15a06e298df109cd2df263ba9d6ac7fb248217df7450e1954a9679a8360335d5bbf662926a34c8b7c61b6e4c396bbdfd88305
27
28 diff --git a/dev-python/pybind11/pybind11-2.6.1.ebuild b/dev-python/pybind11/pybind11-2.6.1.ebuild
29 deleted file mode 100644
30 index 2503acee1b3..00000000000
31 --- a/dev-python/pybind11/pybind11-2.6.1.ebuild
32 +++ /dev/null
33 @@ -1,58 +0,0 @@
34 -# Copyright 1999-2021 Gentoo Authors
35 -# Distributed under the terms of the GNU General Public License v2
36 -
37 -EAPI=7
38 -
39 -DISTUTILS_USE_SETUPTOOLS=rdepend
40 -PYTHON_COMPAT=( python3_{7..9} )
41 -
42 -inherit cmake distutils-r1
43 -
44 -DESCRIPTION="AST-based Python refactoring library"
45 -HOMEPAGE="https://pybind11.readthedocs.io/en/stable/"
46 -SRC_URI="https://github.com/pybind/pybind11/archive/v${PV}.tar.gz -> ${P}.tar.gz"
47 -
48 -LICENSE="BSD"
49 -SLOT="0"
50 -KEYWORDS="amd64 ~arm ~arm64 ppc ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos"
51 -
52 -RDEPEND="
53 - dev-cpp/eigen:3
54 -"
55 -
56 -distutils_enable_tests pytest
57 -
58 -python_prepare_all() {
59 - export PYBIND11_USE_CMAKE=1
60 -
61 - # broken with scipy-1.4.1
62 - sed -i -e 's:test_sparse:_&:' tests/test_eigen.py || die
63 -
64 - cmake_src_prepare
65 - distutils-r1_python_prepare_all
66 -}
67 -
68 -python_configure() {
69 - local mycmakeargs=(
70 - # disable forced lto
71 - -DPYBIND11_LTO_CXX_FLAGS=
72 - -DPYBIND11_INSTALL=ON
73 - -DPYBIND11_TEST=$(usex test)
74 - )
75 - cmake_src_configure
76 -}
77 -
78 -python_compile() {
79 - distutils-r1_python_compile
80 - # Compilation only does anything for tests
81 - use test && cmake_src_compile
82 -}
83 -
84 -python_test() {
85 - cmake_build check
86 -}
87 -
88 -python_install() {
89 - distutils-r1_python_install
90 - cmake_src_install
91 -}
92
93 diff --git a/dev-python/pybind11/pybind11-2.6.2.ebuild b/dev-python/pybind11/pybind11-2.6.2.ebuild
94 deleted file mode 100644
95 index 72a159eda50..00000000000
96 --- a/dev-python/pybind11/pybind11-2.6.2.ebuild
97 +++ /dev/null
98 @@ -1,55 +0,0 @@
99 -# Copyright 1999-2021 Gentoo Authors
100 -# Distributed under the terms of the GNU General Public License v2
101 -
102 -EAPI=7
103 -
104 -DISTUTILS_USE_SETUPTOOLS=rdepend
105 -PYTHON_COMPAT=( python3_{7..10} )
106 -
107 -inherit cmake distutils-r1
108 -
109 -DESCRIPTION="AST-based Python refactoring library"
110 -HOMEPAGE="https://pybind11.readthedocs.io/en/stable/"
111 -SRC_URI="https://github.com/pybind/pybind11/archive/v${PV}.tar.gz -> ${P}.tar.gz"
112 -
113 -LICENSE="BSD"
114 -SLOT="0"
115 -KEYWORDS="amd64 ~arm ~arm64 ppc ppc64 ~riscv ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos"
116 -
117 -RDEPEND="
118 - dev-cpp/eigen:3
119 -"
120 -
121 -distutils_enable_tests pytest
122 -
123 -python_prepare_all() {
124 - export PYBIND11_USE_CMAKE=1
125 -
126 - cmake_src_prepare
127 - distutils-r1_python_prepare_all
128 -}
129 -
130 -python_configure() {
131 - local mycmakeargs=(
132 - # disable forced lto
133 - -DPYBIND11_LTO_CXX_FLAGS=
134 - -DPYBIND11_INSTALL=ON
135 - -DPYBIND11_TEST=$(usex test)
136 - )
137 - cmake_src_configure
138 -}
139 -
140 -python_compile() {
141 - distutils-r1_python_compile
142 - # Compilation only does anything for tests
143 - use test && cmake_src_compile
144 -}
145 -
146 -python_test() {
147 - cmake_build check
148 -}
149 -
150 -python_install() {
151 - distutils-r1_python_install
152 - cmake_src_install
153 -}
154
155 diff --git a/dev-python/pybind11/pybind11-2.7.0.ebuild b/dev-python/pybind11/pybind11-2.7.0.ebuild
156 deleted file mode 100644
157 index b477308fbbe..00000000000
158 --- a/dev-python/pybind11/pybind11-2.7.0.ebuild
159 +++ /dev/null
160 @@ -1,54 +0,0 @@
161 -# Copyright 1999-2021 Gentoo Authors
162 -# Distributed under the terms of the GNU General Public License v2
163 -
164 -EAPI=7
165 -
166 -DISTUTILS_USE_SETUPTOOLS=rdepend
167 -PYTHON_COMPAT=( python3_{7..10} )
168 -inherit cmake distutils-r1
169 -
170 -DESCRIPTION="AST-based Python refactoring library"
171 -HOMEPAGE="https://pybind11.readthedocs.io/en/stable/"
172 -SRC_URI="https://github.com/pybind/pybind11/archive/v${PV}.tar.gz -> ${P}.tar.gz"
173 -
174 -LICENSE="BSD"
175 -SLOT="0"
176 -KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
177 -
178 -RDEPEND="
179 - dev-cpp/eigen:3
180 -"
181 -
182 -distutils_enable_tests pytest
183 -
184 -python_prepare_all() {
185 - export PYBIND11_USE_CMAKE=1
186 -
187 - cmake_src_prepare
188 - distutils-r1_python_prepare_all
189 -}
190 -
191 -python_configure() {
192 - local mycmakeargs=(
193 - # disable forced lto
194 - -DPYBIND11_LTO_CXX_FLAGS=
195 - -DPYBIND11_INSTALL=ON
196 - -DPYBIND11_TEST=$(usex test)
197 - )
198 - cmake_src_configure
199 -}
200 -
201 -python_compile() {
202 - distutils-r1_python_compile
203 - # Compilation only does anything for tests
204 - use test && cmake_src_compile
205 -}
206 -
207 -python_test() {
208 - cmake_build check
209 -}
210 -
211 -python_install() {
212 - distutils-r1_python_install
213 - cmake_src_install
214 -}