From 0e5fde4237f0ee0ee5121c09ad24726b4722c607 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= Date: Fri, 17 Jul 2026 04:15:37 +0200 Subject: [PATCH] dev-python/dictdiffer: Bump to 0.10.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Michał Górny --- dev-python/dictdiffer/Manifest | 1 + .../dictdiffer/dictdiffer-0.10.0.ebuild | 42 +++++++++++++++++++ 2 files changed, 43 insertions(+) create mode 100644 dev-python/dictdiffer/dictdiffer-0.10.0.ebuild diff --git a/dev-python/dictdiffer/Manifest b/dev-python/dictdiffer/Manifest index eb6bc8a714711..e00381871c8ab 100644 --- a/dev-python/dictdiffer/Manifest +++ b/dev-python/dictdiffer/Manifest @@ -1 +1,2 @@ +DIST dictdiffer-0.10.0.tar.gz 12451 BLAKE2B 4219a610687215e8456134e114dc95827d53e35ddd9364098260bc5e9faa783681839a15380038359159d56463453e7a327a71f6795920aba11ad28e1e1e06c7 SHA512 eaa5b8b87064be5b4803302f2bd1c976dfcf0d8d2a7099f32a18c549d123d39b56b4f08b59fe05320b4ad0e2d24dd3da9dc62cf894ae76a7833d76a28b632d65 DIST dictdiffer-0.9.0.tar.gz 31513 BLAKE2B 7f1a980b71978b49c6e41eb4b806aef8aa12e858889622d6b55741e7793e2e812a91ce6089156a080d198a9f9c8e9369e55b6e712fd5476864b2876094ea0d4f SHA512 7985b4d69d3cb08b7cf0fc8f878ac594b72c1f1e3482157c204027fff90afd9b19041e85fced12a47d5624e0b8cc1b2d6643a88295a6d212aeead76c09c24f86 diff --git a/dev-python/dictdiffer/dictdiffer-0.10.0.ebuild b/dev-python/dictdiffer/dictdiffer-0.10.0.ebuild new file mode 100644 index 0000000000000..167802808612d --- /dev/null +++ b/dev-python/dictdiffer/dictdiffer-0.10.0.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{12..15} ) +DISTUTILS_USE_PEP517=hatchling + +inherit distutils-r1 pypi + +DESCRIPTION="Dictdiffer is a library that helps you to diff and patch dictionaries" +HOMEPAGE=" + https://github.com/inveniosoftware/dictdiffer/ + https://pypi.org/project/dictdiffer/ +" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" + +BDEPEND=" + dev-python/hatch-vcs[${PYTHON_USEDEP}] + test? ( + dev-python/numpy[${PYTHON_USEDEP}] + ) +" + +EPYTEST_PLUGINS=() +distutils_enable_tests pytest +# Requires self to be already installed +#distutils_enable_sphinx docs dev-python/sphinx-rtd-theme + +python_prepare_all() { + # remove a bunch of random linters from pytest run + sed -e 's:--isort::' \ + -e 's:--pydocstyle::' \ + -e 's:--cov=dictdiffer::' \ + -e 's:--cov-report=term-missing::' \ + -i pyproject.toml || die + + distutils-r1_python_prepare_all +}