From 247628e97e8126404960a7191aeea00e5cd7149b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= Date: Sat, 22 Aug 2026 06:15:45 +0200 Subject: [PATCH] dev-python/asteval: Bump to 1.0.10 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Michał Górny --- dev-python/asteval/Manifest | 1 + dev-python/asteval/asteval-1.0.10.ebuild | 31 ++++++++++++++++++++++++ 2 files changed, 32 insertions(+) create mode 100644 dev-python/asteval/asteval-1.0.10.ebuild diff --git a/dev-python/asteval/Manifest b/dev-python/asteval/Manifest index 83073bbb93705..6756d6f63d200 100644 --- a/dev-python/asteval/Manifest +++ b/dev-python/asteval/Manifest @@ -1 +1,2 @@ +DIST asteval-1.0.10.tar.gz 59581 BLAKE2B 7f839efdde56d698500e5890b19eb497d203e4c25e1594e8c75538f9be17b5a362d0cffccd4729efffa28c683f9c806ebb46fd0d9b8abb4a6f5ff16204be3dca SHA512 5d9fef82d7aa0136db565b09c61b97aa5f356be8a952a662d299243d1817a818b45a7028fd8aa541e43ba8502e3e92d3ad2e459a6fdee0316dbcb2455dfe555e DIST asteval-1.0.9.gh.tar.gz 50725 BLAKE2B 1f9a13e8e0dab427f6d448d3ffe7832542748d53c41ca632d705d907a5f433270ec0771d62e97a96ec1412a70508cc9aa2bb32e1920d8992f8660b2982a9c2cf SHA512 54ea5508bf36a087b99a68365662327b0f1963b9ad4565cd94ab1cddbb0f12cb4e56baa5b7d2d3be42ece845da0d65fabbf4e656f68f98230b6ffa92aea52118 diff --git a/dev-python/asteval/asteval-1.0.10.ebuild b/dev-python/asteval/asteval-1.0.10.ebuild new file mode 100644 index 0000000000000..5b43fcb202af8 --- /dev/null +++ b/dev-python/asteval/asteval-1.0.10.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{12..15} ) + +inherit distutils-r1 pypi + +DESCRIPTION="Evaluator of Python expression using ast module" +HOMEPAGE=" + https://lmfit.github.io/asteval/ + https://github.com/lmfit/asteval/ + https://pypi.org/project/asteval/ +" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" + +BDEPEND=" + dev-python/setuptools-scm[${PYTHON_USEDEP}] +" + +EPYTEST_PLUGINS=() +distutils_enable_tests pytest + +python_test() { + epytest -o addopts= +}