summaryrefslogtreecommitdiff
path: root/dev-python/asteval
diff options
context:
space:
mode:
Diffstat (limited to 'dev-python/asteval')
-rw-r--r--dev-python/asteval/Manifest1
-rw-r--r--dev-python/asteval/asteval-1.0.10.ebuild31
2 files changed, 32 insertions, 0 deletions
diff --git a/dev-python/asteval/Manifest b/dev-python/asteval/Manifest
index 83073bbb9370..6756d6f63d20 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 000000000000..317b28051e35
--- /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_{13..14} )
+
+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=
+}