commit 2d3762f3552b94a23118584f509b433d0d6090e7aa1217c89c079c848133d108 Author: Todd R Date: Sun Jun 3 04:04:54 2018 +0000 Accepting request 613717 from devel:languages:python:misc numpy-aware, safe(ish) 'eval' function OBS-URL: https://build.opensuse.org/request/show/613717 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-asteval?expand=0&rev=1 diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9b03811 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,23 @@ +## Default LFS +*.7z filter=lfs diff=lfs merge=lfs -text +*.bsp filter=lfs diff=lfs merge=lfs -text +*.bz2 filter=lfs diff=lfs merge=lfs -text +*.gem filter=lfs diff=lfs merge=lfs -text +*.gz filter=lfs diff=lfs merge=lfs -text +*.jar filter=lfs diff=lfs merge=lfs -text +*.lz filter=lfs diff=lfs merge=lfs -text +*.lzma filter=lfs diff=lfs merge=lfs -text +*.obscpio filter=lfs diff=lfs merge=lfs -text +*.oxt filter=lfs diff=lfs merge=lfs -text +*.pdf filter=lfs diff=lfs merge=lfs -text +*.png filter=lfs diff=lfs merge=lfs -text +*.rpm filter=lfs diff=lfs merge=lfs -text +*.tbz filter=lfs diff=lfs merge=lfs -text +*.tbz2 filter=lfs diff=lfs merge=lfs -text +*.tgz filter=lfs diff=lfs merge=lfs -text +*.ttf filter=lfs diff=lfs merge=lfs -text +*.txz filter=lfs diff=lfs merge=lfs -text +*.whl filter=lfs diff=lfs merge=lfs -text +*.xz filter=lfs diff=lfs merge=lfs -text +*.zip filter=lfs diff=lfs merge=lfs -text +*.zst filter=lfs diff=lfs merge=lfs -text diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..57affb6 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.osc diff --git a/asteval-0.9.12.tar.gz b/asteval-0.9.12.tar.gz new file mode 100644 index 0000000..3f6fd47 --- /dev/null +++ b/asteval-0.9.12.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38f3b0592cae7e7f65adc687e37aad1824a8e518245603a29ec33258277e779b +size 50686 diff --git a/python-asteval.changes b/python-asteval.changes new file mode 100644 index 0000000..c8bc60a --- /dev/null +++ b/python-asteval.changes @@ -0,0 +1,9 @@ +------------------------------------------------------------------- +Sat Jun 2 19:10:58 UTC 2018 - toddrme2178@gmail.com + +- Use license tag + +------------------------------------------------------------------- +Thu Mar 22 04:49:27 UTC 2018 - toddrme2178@gmail.com + +- Initial version diff --git a/python-asteval.spec b/python-asteval.spec new file mode 100644 index 0000000..8432f7b --- /dev/null +++ b/python-asteval.spec @@ -0,0 +1,77 @@ +# +# spec file for package python-asteval +# +# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany. +# +# 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 http://bugs.opensuse.org/ +# + + +%{?!python_module:%define python_module() python-%{**} python3-%{**}} +Name: python-asteval +Version: 0.9.12 +Release: 0 +Summary: Safe, minimalistic evaluator of python expression using ast module +License: MIT +Group: Development/Languages/Python +Url: http://github.com/newville/asteval +Source: https://files.pythonhosted.org/packages/source/a/asteval/asteval-%{version}.tar.gz +BuildRequires: %{python_module devel} +BuildRequires: %{python_module setuptools} +# SECTION test requirements +BuildRequires: %{python_module numpy >= 1.6} +BuildRequires: %{python_module pytest} +BuildRequires: %{python_module six} +# /SECTION +BuildRequires: fdupes +BuildRequires: python-rpm-macros +Requires: python-numpy >= 1.6 +Requires: python-six +BuildArch: noarch + +%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 +%python_build + +%install +%python_install +%python_expand %fdupes %{buildroot}%{$python_sitelib} + +%check +pushd tests +%{python_expand export PYTHONPATH=%{buildroot}%{$python_sitelib} +pytest-%{$python_bin_suffix} +} +popd + +%files %{python_files} +%doc README.rst +%license LICENSE +%{python_sitelib}/* + +%changelog