forked from pool/python-asteval
- Update to 1.0.6
* drop testing and support for Python3.8, add Python 3.13,
change document to reflect this.
* implement safe_getattr and safe_format functions; fix bugs
in UNSAFE_ATTRS and UNSAFE_ATTRS_DTYPES usage
* make all procedure attributes private to curb access to AST
nodes, which can be exploited
* improvements to error messages, including use ast functions
to construct better error messages
* remove import of numpy.linalg, as documented
* update doc description for security advisory
OBS-URL: https://build.opensuse.org/request/show/1240526
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-asteval?expand=0&rev=42
73 lines
2.2 KiB
RPMSpec
73 lines
2.2 KiB
RPMSpec
#
|
|
# spec file for package python-asteval
|
|
#
|
|
# Copyright (c) 2025 SUSE LLC
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
%{?sle15_python_module_pythons}
|
|
Name: python-asteval
|
|
Version: 1.0.6
|
|
Release: 0
|
|
Summary: Safe, minimalistic evaluator of python expression using ast module
|
|
License: MIT
|
|
Group: Development/Languages/Python
|
|
URL: https://github.com/lmfit/asteval
|
|
Source: https://files.pythonhosted.org/packages/source/a/asteval/asteval-%{version}.tar.gz
|
|
BuildRequires: %{python_module pip}
|
|
BuildRequires: %{python_module setuptools_scm}
|
|
BuildRequires: %{python_module setuptools}
|
|
BuildRequires: %{python_module wheel}
|
|
BuildRequires: fdupes
|
|
BuildRequires: python-rpm-macros
|
|
BuildArch: noarch
|
|
# SECTION test requirements
|
|
BuildRequires: %{python_module pytest}
|
|
BuildRequires: %{python_module pytest-cov}
|
|
# /SECTION
|
|
%python_subpackages
|
|
|
|
%description
|
|
ASTEVAL provides a numpy-aware, safe(ish) 'eval' function
|
|
|
|
Emphasis is on mathematical expressions, and so numpy ufuncs
|
|
are used if available. Symbols are held in the Interpreter
|
|
symbol table 'symtable': a simple dictionary supporting a
|
|
simple, flat namespace.
|
|
|
|
Expressions can be compiled into ast node for later evaluation,
|
|
using the values in the symbol table current at evaluation time.
|
|
|
|
%prep
|
|
%setup -q -n asteval-%{version}
|
|
sed -i -e '/^#!\//, 1d' asteval/asteval.py
|
|
|
|
%build
|
|
%pyproject_wheel
|
|
|
|
%install
|
|
%pyproject_install
|
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
|
|
|
%check
|
|
%pytest
|
|
|
|
%files %{python_files}
|
|
%doc README.rst
|
|
%license LICENSE
|
|
%{python_sitelib}/asteval
|
|
%{python_sitelib}/asteval-%{version}.dist-info
|
|
|
|
%changelog
|