forked from pool/python-simpleeval
* Better handling of empty strings passed as input. * Fix the shift safe number issue from 0.9.12 * More minor pylint / etc fixes / cleanups (general code quality) * separate `.parse` from #115 * Allow setting up completely empty `{}` operators / functions * Add extra bit-ops from #87 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-simpleeval?expand=0&rev=13
66 lines
2.0 KiB
RPMSpec
66 lines
2.0 KiB
RPMSpec
#
|
||
# spec file
|
||
#
|
||
# Copyright (c) 2023 SUSE LLC
|
||
# Copyright (c) 2015 Dr. Axel Braun
|
||
#
|
||
# 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/
|
||
#
|
||
|
||
|
||
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
||
%define modname simpleeval
|
||
Name: python-%{modname}
|
||
Version: 0.9.13
|
||
Release: 0
|
||
Summary: A simple, safe single expression evaluator library
|
||
License: MIT
|
||
URL: https://github.com/danthedeckie/simpleeval
|
||
Source0: https://files.pythonhosted.org/packages/source/s/simpleeval/%{modname}-%{version}.tar.gz
|
||
BuildRequires: %{python_module setuptools}
|
||
BuildRequires: fdupes
|
||
BuildRequires: python-rpm-macros
|
||
BuildArch: noarch
|
||
# SECTION test requirements
|
||
BuildRequires: %{python_module pytest}
|
||
# /SECTION
|
||
%python_subpackages
|
||
|
||
%description
|
||
A quick single file library for easily adding evaluatable expressions
|
||
into python projects. Say you want to allow a user to set an alarm volume,
|
||
which could depend on the time of day, alarm level, how many previous alarms
|
||
had gone off, and if there is music playing at the time.
|
||
|
||
Or if you want to allow simple formulare in a web application, but don’t want
|
||
to give full eval() access, or don’t want to run in javascript on the client side.
|
||
|
||
%prep
|
||
%setup -q -n %{modname}-%{version}
|
||
|
||
%build
|
||
%python_build
|
||
|
||
%install
|
||
%python_install
|
||
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
||
|
||
%check
|
||
%pytest
|
||
|
||
%files %{python_files}
|
||
%doc README.rst
|
||
%license LICENCE
|
||
%{python_sitelib}/*
|
||
|
||
%changelog
|