From 8b5a92f1e1eccecfa61db8a4744e1b9d449522b6 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Fri, 5 May 2023 17:31:39 +0100 Subject: gentoo auto-resync : 05:05:2023 - 17:31:39 --- dev-python/pybind11/Manifest | 4 +- dev-python/pybind11/pybind11-2.10.3.ebuild | 67 ------------------------------ dev-python/pybind11/pybind11-2.10.4.ebuild | 2 +- 3 files changed, 2 insertions(+), 71 deletions(-) delete mode 100644 dev-python/pybind11/pybind11-2.10.3.ebuild (limited to 'dev-python/pybind11') diff --git a/dev-python/pybind11/Manifest b/dev-python/pybind11/Manifest index 0bfdc87bd376..d6dd4f83a65a 100644 --- a/dev-python/pybind11/Manifest +++ b/dev-python/pybind11/Manifest @@ -1,5 +1,3 @@ -DIST pybind11-2.10.3.gh.tar.gz 740214 BLAKE2B 967b93cbf7d1f8faad25db9a4d3e84fd33b48429cdf527c167e65faad5c01df83a5634021cf99f07adf443855d9f6bb076f0cc67b0e6555e189b794a845b533a SHA512 3894400f04cd08e2dbb14b3d696339f0364434f1d6f8bb057338ac88157ec7491b2df1e1e46ebd5abccdcd5775c5e9238de6404f0db87f64f5a1802db3a5b18c DIST pybind11-2.10.4.gh.tar.gz 740622 BLAKE2B 7b2d86e8262581b2cc6dd720b83336206e242ef8ca99b257b01a11141ed8b127d7f35d7d573bc763dd36f2fe8c8ac91766089deb63a76e9c10029c34eec2d6d3 SHA512 7970defbb6d057a44468ed707c80bfa6ef8c9578528fbc084b03aeea20a52dbd681581f82d55ff90af11ee89693379bd79e2ab6603239ba05b0aa8da29dd93c7 -EBUILD pybind11-2.10.3.ebuild 1237 BLAKE2B 17590abe071c68edf93fb630c7e10c770edae992d1bac7177c4b5258a55db4f0371f518c021ad383b21d9becace91bfb288dfbd0cb60fc40ae2ea8ca22ed7b2a SHA512 47664fc3cae4088de5228e08f39c87df059f85f9f0651d4db726cc49bce961a3c44f1b3d57531b9964489c0cdfdd4d94fa1aeea1893e759438c132e814ebda9f -EBUILD pybind11-2.10.4.ebuild 1281 BLAKE2B f68d774e41aee765108b06dee4de5b87d8e09d9c34f1ceaf7ee9501c42a17684721bc07db8e531cf08a375e542fe00cc3f6c4e77e3dc19100ab4b30db4a5f384 SHA512 08969d9f451da6e9412894dc13212daf99b1563f508b47a492db5818fa3b01598d80988083fcdfdecf23f50bdddea888470e039e41a2c00012cda9faab07049f +EBUILD pybind11-2.10.4.ebuild 1280 BLAKE2B 71fd073f743f76f6b56a2283531a164fad3ccd70258b6f0d91e7a18e98caf813219243ce2a120ea5c2b0cf3ad1524588203006b5fdd46b2e9de3ce251a7f11f2 SHA512 6fc04e67776147b374b9fee6e14a85028d8bebd24b1a46bef8e7637bd10672a743db4f4cc8a1f13d868126d87ab2ccb4c41a728626d3e4c42963e5afba63fdaf MISC metadata.xml 475 BLAKE2B faf317a1197850acb0d16546a303bd50ee1bfe6fc3aaf592e6c147c6612fd20b809f1c911d79ca9a356cfa0c4166d2b155fcbd593f8b55e0d7dd75ff6444073b SHA512 5779adcc9f25c15fd999aa6c91d3144fc14535270e57925bfb8ac67f45448c144a142af2ea9a321ec6ffbf568713f663cef85a0be3d4a056e58b1782a5fc9a41 diff --git a/dev-python/pybind11/pybind11-2.10.3.ebuild b/dev-python/pybind11/pybind11-2.10.3.ebuild deleted file mode 100644 index 2cd31b51b573..000000000000 --- a/dev-python/pybind11/pybind11-2.10.3.ebuild +++ /dev/null @@ -1,67 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..11} pypy3 ) - -inherit cmake distutils-r1 - -DESCRIPTION="AST-based Python refactoring library" -HOMEPAGE=" - https://pybind11.readthedocs.io/en/stable/ - https://github.com/pybind/pybind11/ - https://pypi.org/project/pybind11/ -" -SRC_URI=" - https://github.com/pybind/pybind11/archive/v${PV}.tar.gz - -> ${P}.gh.tar.gz -" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ppc ppc64 ~riscv ~s390 sparc x86" - -RDEPEND=" - dev-cpp/eigen:3 -" -BDEPEND=" - test? ( - >=dev-cpp/catch-2.13.5 - dev-libs/boost - ) -" - -distutils_enable_tests pytest - -python_prepare_all() { - export PYBIND11_USE_CMAKE=1 - cmake_src_prepare - distutils-r1_python_prepare_all -} - -python_configure() { - local mycmakeargs=( - # disable forced lto - -DPYBIND11_LTO_CXX_FLAGS= - -DPYBIND11_INSTALL=ON - -DPYBIND11_TEST=$(usex test) - ) - cmake_src_configure -} - -python_compile() { - distutils-r1_python_compile - # Compilation only does anything for tests - use test && cmake_src_compile -} - -python_test() { - cmake_build check -} - -python_install() { - distutils-r1_python_install - cmake_src_install -} diff --git a/dev-python/pybind11/pybind11-2.10.4.ebuild b/dev-python/pybind11/pybind11-2.10.4.ebuild index 4a57407c0527..ade4adbcd5e1 100644 --- a/dev-python/pybind11/pybind11-2.10.4.ebuild +++ b/dev-python/pybind11/pybind11-2.10.4.ebuild @@ -21,7 +21,7 @@ SRC_URI=" LICENSE="BSD" SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ppc ppc64 ~riscv ~s390 sparc x86" +KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ppc ppc64 ~riscv ~s390 sparc x86" RDEPEND=" dev-cpp/eigen:3 -- cgit v1.2.3