commit:     9d20c1300812a0caf29e58aca440b4fe45bda6e3
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Oct  5 08:32:05 2024 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Oct  5 08:33:32 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9d20c130

dev-python/nanobind: Remove old

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/nanobind/Manifest                       |  2 -
 .../files/nanobind-2.0.0-parallel-build.patch      |  7 --
 dev-python/nanobind/nanobind-2.0.0-r1.ebuild       | 77 ----------------------
 dev-python/nanobind/nanobind-2.1.0.ebuild          | 74 ---------------------
 4 files changed, 160 deletions(-)

diff --git a/dev-python/nanobind/Manifest b/dev-python/nanobind/Manifest
index 41f58108b74f..18a3fdfadc9a 100644
--- a/dev-python/nanobind/Manifest
+++ b/dev-python/nanobind/Manifest
@@ -1,3 +1 @@
-DIST nanobind-2.0.0.gh.tar.gz 842956 BLAKE2B 
82a2b44d904a2bfc88538d3bac6d5d96b473bcca2ff98647f9edd656a1d20fae324fcf334b848f861723aae666690b6b17ee626dede89bac6b140e9ef8cd01fe
 SHA512 
1bafbf6b18c9b65b5ecb3bbf23a164b17ee52ef4f053a00de986a35e17e662422b54cea1c145f83ee8a3973bba383a949b3c305dcfecfbf139ab90006d42935e
-DIST nanobind-2.1.0.gh.tar.gz 850714 BLAKE2B 
5686c0b204904d22e306338f0cf62f0ac306165510f94bfe94d6a36f8294ea108f2f195c67b5314476e9bc3083292c69974c52889015e2ac6cb996a0fbcfbaff
 SHA512 
1aaca50f8253b1b831e1d7092cfb238a020f72b7ae9830b04ecaff519a38dbe1396f79aac3098d942f30e7bb372862a2473459adbab898f17683ee488a0dad87
 DIST nanobind-2.2.0.gh.tar.gz 881024 BLAKE2B 
06b76c6cd53351ead32532b9013c3e0b4485173c70d12fac903c42b57a4309e49743bb2957c1310ac6d957230336b0c587f64a9d15a9c39b229b839531e1ac5d
 SHA512 
e47c2eab39fc507f5cb1b73f76a2eb9a6d475b56b3628e8372296ed7381844aed56ba7b59fb765651e660688be2762d094ec9368beb70201091f01d27a549a3a

diff --git a/dev-python/nanobind/files/nanobind-2.0.0-parallel-build.patch 
b/dev-python/nanobind/files/nanobind-2.0.0-parallel-build.patch
deleted file mode 100644
index d64c7383b976..000000000000
--- a/dev-python/nanobind/files/nanobind-2.0.0-parallel-build.patch
+++ /dev/null
@@ -1,7 +0,0 @@
-diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt
-index 62f2bdb..e932cca 100644
---- a/tests/CMakeLists.txt
-+++ b/tests/CMakeLists.txt
-@@ -75 +75 @@ nanobind_add_stub(
--  DEPENDS py_stub_test.py
-+  DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/py_stub_test.py

diff --git a/dev-python/nanobind/nanobind-2.0.0-r1.ebuild 
b/dev-python/nanobind/nanobind-2.0.0-r1.ebuild
deleted file mode 100644
index 45dce8c57782..000000000000
--- a/dev-python/nanobind/nanobind-2.0.0-r1.ebuild
+++ /dev/null
@@ -1,77 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{10..13} )
-
-inherit cmake distutils-r1
-
-DESCRIPTION="Tiny and efficient C++/Python bindings"
-HOMEPAGE="
-       https://github.com/wjakob/nanobind
-       https://pypi.org/project/nanobind/
-"
-SRC_URI="
-       https://github.com/wjakob/nanobind/archive/refs/tags/v${PV}.tar.gz
-               -> ${P}.gh.tar.gz
-"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc64 ~riscv"
-
-RDEPEND=">=dev-cpp/robin-map-1.3.0"
-DEPEND="${RDEPEND}"
-BDEPEND="
-       $(python_gen_cond_dep '
-               dev-python/typing-extensions[${PYTHON_USEDEP}]
-       ' 3.10)
-"
-
-EPYTEST_XDIST=1
-distutils_enable_tests pytest
-
-python_prepare_all() {
-       local PATCHES=(
-               # simplified version of 
https://github.com/wjakob/nanobind/pull/718
-               "${FILESDIR}/${PN}-2.0.0-parallel-build.patch"
-       )
-
-       # This test assumes in-source build for the .pyi stubs.
-       # (Hack because EPYTEST_IGNORE doesn't work with the paths it 
collects(?))
-       echo > tests/test_stubs.py || die
-
-       cmake_src_prepare
-       PATCHES=()
-       distutils-r1_python_prepare_all
-}
-
-python_configure() {
-       # XXX: nanobind installs a CMake config file which by default passes -Os
-       # We currently patch around it in dev-python/pyopencl. In future, we
-       # may want to add some override with Gentoo specific environment vars.
-       local mycmakeargs=(
-               -DNB_CREATE_INSTALL_RULES=ON
-               -DNB_USE_SUBMODULE_DEPS=OFF
-               -DNB_TEST=$(usex test)
-       )
-       cmake_src_configure
-}
-
-python_compile() {
-       distutils-r1_python_compile
-       cmake_src_compile
-}
-
-python_test() {
-       local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
-       cd "${BUILD_DIR}/tests" || die
-       epytest "${S}/tests"
-}
-
-python_install() {
-       distutils-r1_python_install
-       cmake_src_install
-}

diff --git a/dev-python/nanobind/nanobind-2.1.0.ebuild 
b/dev-python/nanobind/nanobind-2.1.0.ebuild
deleted file mode 100644
index 6a01b59dbefb..000000000000
--- a/dev-python/nanobind/nanobind-2.1.0.ebuild
+++ /dev/null
@@ -1,74 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=scikit-build-core
-PYTHON_COMPAT=( python3_{10..13} )
-
-inherit cmake distutils-r1
-
-DESCRIPTION="Tiny and efficient C++/Python bindings"
-HOMEPAGE="
-       https://github.com/wjakob/nanobind
-       https://pypi.org/project/nanobind/
-"
-SRC_URI="
-       https://github.com/wjakob/nanobind/archive/refs/tags/v${PV}.tar.gz
-               -> ${P}.gh.tar.gz
-"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc64 ~riscv"
-
-DEPEND="
-       >=dev-cpp/robin-map-1.3.0
-"
-RDEPEND="
-       ${DEPEND}
-"
-BDEPEND="
-       $(python_gen_cond_dep '
-               dev-python/typing-extensions[${PYTHON_USEDEP}]
-       ' 3.10)
-"
-
-EPYTEST_XDIST=1
-distutils_enable_tests pytest
-
-src_prepare() {
-       local PATCHES=(
-               # simplified version of 
https://github.com/wjakob/nanobind/pull/718
-               "${FILESDIR}/${PN}-2.0.0-parallel-build.patch"
-       )
-
-       cmake_src_prepare
-       PATCHES=()
-       distutils-r1_src_prepare
-}
-
-src_configure() {
-       # XXX: nanobind installs a CMake config file which by default passes -Os
-       # We currently patch around it in dev-python/pyopencl. In future, we
-       # may want to add some override with Gentoo specific environment vars.
-       DISTUTILS_ARGS=(
-               -DNB_CREATE_INSTALL_RULES=ON
-               -DNB_USE_SUBMODULE_DEPS=OFF
-               -DNB_TEST=OFF
-       )
-}
-
-python_test() {
-       local mycmakeargs=(
-               -DNB_CREATE_INSTALL_RULES=OFF
-               -DNB_USE_SUBMODULE_DEPS=OFF
-               -DNB_TEST=ON
-       )
-       cmake_src_configure
-       cmake_src_compile
-
-       local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
-       cd "${BUILD_DIR}/tests" || die
-       epytest
-}

Reply via email to