diff --git a/python-simpleeval.spec b/python-simpleeval.spec index df89d5cc9e436853dd0b9495d8ef1544c788ea5b..ee3850680f26ac489e516f978bb2aafb0df032c2 100644 --- a/python-simpleeval.spec +++ b/python-simpleeval.spec @@ -1,14 +1,13 @@ %global _empty_manifest_terminate_build 0 Name: python-simpleeval -Version: 0.9.12 +Version: 0.9.13 Release: 1 Summary: A simple, safe single expression evaluator library. License: MIT License URL: https://github.com/danthedeckie/simpleeval -Source0: https://files.pythonhosted.org/packages/bc/9f/4b77fc4b6b988fc8e60a2f09f97e31c7aa2a02152ad22566726656d584da/simpleeval-0.9.12.tar.gz +Source0: https://files.pythonhosted.org/packages/8f/fa/d2d5bbf9a03fe7b0956368ac5420cfcb072146be6e912a50747dc376133a/simpleeval-0.9.13.tar.gz BuildArch: noarch - %description An short, easy to use, safe and reasonably extensible expression evaluator. Designed for things like in a website where you want to allow the user to @@ -17,7 +16,7 @@ eval() or other unsafe or needlessly complex linguistics. %package -n python3-simpleeval Summary: A simple, safe single expression evaluator library. -Provides: python-simpleeval +Provides: python-simpleeval = %{version}-%{release} BuildRequires: python3-devel BuildRequires: python3-setuptools %description -n python3-simpleeval @@ -48,6 +47,9 @@ if [ -d doc ]; then cp -arf doc %{buildroot}/%{_pkgdocdir}; fi if [ -d docs ]; then cp -arf docs %{buildroot}/%{_pkgdocdir}; fi if [ -d example ]; then cp -arf example %{buildroot}/%{_pkgdocdir}; fi if [ -d examples ]; then cp -arf examples %{buildroot}/%{_pkgdocdir}; fi +if [ -f README.rst ]; then cp -af README.rst %{buildroot}/%{_pkgdocdir}; fi +if [ -f README.md ]; then cp -af README.md %{buildroot}/%{_pkgdocdir}; fi +if [ -f README.txt ]; then cp -af README.txt %{buildroot}/%{_pkgdocdir}; fi pushd %{buildroot} if [ -d usr/lib ]; then find usr/lib -type f -printf "/%h/%f\n" >> filelist.lst @@ -76,6 +78,9 @@ mv %{buildroot}/doclist.lst . %{_docdir}/* %changelog +* Mon Feb 27 2023 wangjunqi - 0.9.13-1 +- Update package to version 0.9.13 + * Sun Sep 25 2022 guozhengxin - 0.9.12-1 - Upgrade package to version 0.9.12 diff --git a/simpleeval-0.9.12.tar.gz b/simpleeval-0.9.12.tar.gz deleted file mode 100644 index a38e93362df1a2c876f0bca1088becdca2d9b9e1..0000000000000000000000000000000000000000 Binary files a/simpleeval-0.9.12.tar.gz and /dev/null differ diff --git a/simpleeval-0.9.13.tar.gz b/simpleeval-0.9.13.tar.gz new file mode 100644 index 0000000000000000000000000000000000000000..a6281565a021a02d0988329dc7f8cbe877a843f4 Binary files /dev/null and b/simpleeval-0.9.13.tar.gz differ