commit: 6e273f69b17551881f0d02f157402bfeaa68d805 Author: Michał Górny <mgorny <AT> gentoo <DOT> org> AuthorDate: Wed Feb 25 03:09:35 2026 +0000 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org> CommitDate: Wed Feb 25 03:39:34 2026 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6e273f69
dev-python/scikit-build-core: Bump to 0.12.0 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org> dev-python/scikit-build-core/Manifest | 2 + .../scikit-build-core-0.12.0.ebuild | 57 ++++++++++++++++++++++ 2 files changed, 59 insertions(+) diff --git a/dev-python/scikit-build-core/Manifest b/dev-python/scikit-build-core/Manifest index 0d664edab5a4..b73412f33dbc 100644 --- a/dev-python/scikit-build-core/Manifest +++ b/dev-python/scikit-build-core/Manifest @@ -1 +1,3 @@ DIST scikit_build_core-0.11.6.tar.gz 286006 BLAKE2B 73c1dccfd32d70e96de2b948f35e7d69ed58fb0e7946b219fba1791692a068c5b661a21cda0789c548d4e851062737013c666fb6ec06aea157a0346c9fed1c68 SHA512 bc0c8fc346597be1166dd4cf575a7b22806a6ac4d04cf6625dad60ad0d95f29360f3fbe65c1298edae344349a07f8ff3b06842429fa2ec5f082b5122f188a9d0 +DIST scikit_build_core-0.12.0.tar.gz 302652 BLAKE2B 131fefc3d6288965bb65f246d20c2b056f79941e5927bcf82c023013f06c5c74e9634bd20e6a2b2fb0415d5e2189f7fd93df9c5989200708bed03bccde2d341d SHA512 eee8c18eba3e0ed9bff43f0ee43e593c9621f41057ad3be5136f02d867212587e60cac120dc43d5369082cb3011d78556ba05fe4abebc433ff0d083c9ce6d473 +DIST scikit_build_core-0.12.0.tar.gz.provenance 9853 BLAKE2B bb618cca1960fe45e3cbcef97acbd2497b87277423ed38ea8a176e95d213118f767b78ea438c9687b83fb61694656f531da6cbd7e017bc1b8945737cb6b97677 SHA512 6f09d417c62935194a4c1571337ff7f3d43b0719b13aac7323d72ae8dba6454986649da1b431ada3b28cde9214be0546dc13732bc073620d5a096c1cf6a0f5b8 diff --git a/dev-python/scikit-build-core/scikit-build-core-0.12.0.ebuild b/dev-python/scikit-build-core/scikit-build-core-0.12.0.ebuild new file mode 100644 index 000000000000..0c94804947f6 --- /dev/null +++ b/dev-python/scikit-build-core/scikit-build-core-0.12.0.ebuild @@ -0,0 +1,57 @@ +# Copyright 2023-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=hatchling +PYPI_VERIFY_REPO=https://github.com/scikit-build/scikit-build-core +PYTHON_COMPAT=( pypy3_11 python3_{11..14} ) + +inherit distutils-r1 pypi + +DESCRIPTION="Build backend for CMake based projects" +HOMEPAGE=" + https://github.com/scikit-build/scikit-build-core/ + https://pypi.org/project/scikit-build-core/ +" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~arm64-macos ~x64-macos ~x64-solaris" + +# we always want [pyproject] extra +RDEPEND=" + app-alternatives/ninja + dev-build/cmake + >=dev-python/packaging-23.2[${PYTHON_USEDEP}] + >=dev-python/pathspec-0.10.1[${PYTHON_USEDEP}] + >=dev-python/pyproject-metadata-0.5[${PYTHON_USEDEP}] +" +BDEPEND=" + dev-python/hatch-vcs[${PYTHON_USEDEP}] + test? ( + dev-python/build[${PYTHON_USEDEP}] + >=dev-python/cattrs-22.2.0[${PYTHON_USEDEP}] + dev-python/fastjsonschema[${PYTHON_USEDEP}] + dev-python/pybind11[${PYTHON_USEDEP}] + >=dev-python/pytest-subprocess-1.5[${PYTHON_USEDEP}] + dev-python/setuptools[${PYTHON_USEDEP}] + dev-python/virtualenv[${PYTHON_USEDEP}] + ) +" + +EPYTEST_PLUGINS=( pytest-subprocess ) +distutils_enable_tests pytest + +python_test() { + local _EPYTEST_DESELECT=( + # TODO / we don't package validate_pyproject anyway + tests/test_schema.py::test_compare_schemas + ) + local EPYTEST_IGNORE=( + # needs unpackaged validate_pyproject + tests/test_schema.py + ) + + epytest -m "not isolated and not network" +}
