diff options
author | CoprDistGit <copr-devel@lists.fedorahosted.org> | 2023-02-25 03:48:17 +0000 |
---|---|---|
committer | CoprDistGit <copr-devel@lists.fedorahosted.org> | 2023-02-25 03:48:17 +0000 |
commit | 0cd261e3d865cbc3a0de6070a5d17b97c9f4beab (patch) | |
tree | 30a311c115e0c3573dad65990343c24774619a8a | |
parent | 13696000dae530857a00374e92b6fea388624982 (diff) |
automatic import of python3-makefunopeneuler20.03
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | python-makefun.spec | 105 | ||||
-rw-r--r-- | sources | 1 |
3 files changed, 107 insertions, 0 deletions
@@ -0,0 +1 @@ +/makefun-1.15.1.tar.gz diff --git a/python-makefun.spec b/python-makefun.spec new file mode 100644 index 0000000..95efc3b --- /dev/null +++ b/python-makefun.spec @@ -0,0 +1,105 @@ +%global _empty_manifest_terminate_build 0 +Name: python-makefun +Version: 1.15.1 +Release: 1 +Summary: Small library to dynamically create python functions. +License: BSD 3-Clause +URL: https://github.com/smarie/python-makefun +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/15/58/5edc1646a157147ff70c8f69a369776d054a95791005f113de5c2255c436/makefun-1.15.1.tar.gz +BuildArch: noarch + +Requires: python3-funcsigs + +%description +# makefun + +[](https://pypi.python.org/pypi/makefun/) [](https://github.com/smarie/python-makefun/actions/workflows/base.yml) [](https://smarie.github.io/python-makefun/reports/junit/report.html) [](https://smarie.github.io/python-makefun/reports/coverage/index.html) [](https://codecov.io/gh/smarie/python-makefun) [](https://smarie.github.io/python-makefun/reports/flake8/index.html) + +[](https://smarie.github.io/python-makefun/) [](https://pypi.python.org/pypi/makefun/) [](https://pepy.tech/project/makefun) [](https://pepy.tech/project/makefun) [](https://github.com/smarie/python-makefun/stargazers) + +Small library to dynamically create python functions. + +The documentation for users is available here: [https://smarie.github.io/python-makefun/](https://smarie.github.io/python-makefun/) + +A readme for developers is available here: [https://github.com/smarie/python-makefun](https://github.com/smarie/python-makefun) + + +%package -n python3-makefun +Summary: Small library to dynamically create python functions. +Provides: python-makefun +BuildRequires: python3-devel +BuildRequires: python3-setuptools +%description -n python3-makefun +# makefun + +[](https://pypi.python.org/pypi/makefun/) [](https://github.com/smarie/python-makefun/actions/workflows/base.yml) [](https://smarie.github.io/python-makefun/reports/junit/report.html) [](https://smarie.github.io/python-makefun/reports/coverage/index.html) [](https://codecov.io/gh/smarie/python-makefun) [](https://smarie.github.io/python-makefun/reports/flake8/index.html) + +[](https://smarie.github.io/python-makefun/) [](https://pypi.python.org/pypi/makefun/) [](https://pepy.tech/project/makefun) [](https://pepy.tech/project/makefun) [](https://github.com/smarie/python-makefun/stargazers) + +Small library to dynamically create python functions. + +The documentation for users is available here: [https://smarie.github.io/python-makefun/](https://smarie.github.io/python-makefun/) + +A readme for developers is available here: [https://github.com/smarie/python-makefun](https://github.com/smarie/python-makefun) + + +%package help +Summary: Development documents and examples for makefun +Provides: python3-makefun-doc +%description help +# makefun + +[](https://pypi.python.org/pypi/makefun/) [](https://github.com/smarie/python-makefun/actions/workflows/base.yml) [](https://smarie.github.io/python-makefun/reports/junit/report.html) [](https://smarie.github.io/python-makefun/reports/coverage/index.html) [](https://codecov.io/gh/smarie/python-makefun) [](https://smarie.github.io/python-makefun/reports/flake8/index.html) + +[](https://smarie.github.io/python-makefun/) [](https://pypi.python.org/pypi/makefun/) [](https://pepy.tech/project/makefun) [](https://pepy.tech/project/makefun) [](https://github.com/smarie/python-makefun/stargazers) + +Small library to dynamically create python functions. + +The documentation for users is available here: [https://smarie.github.io/python-makefun/](https://smarie.github.io/python-makefun/) + +A readme for developers is available here: [https://github.com/smarie/python-makefun](https://github.com/smarie/python-makefun) + + +%prep +%autosetup -n makefun-1.15.1 + +%build +%py3_build + +%install +%py3_install +install -d -m755 %{buildroot}/%{_pkgdocdir} +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 +pushd %{buildroot} +if [ -d usr/lib ]; then + find usr/lib -type f -printf "/%h/%f\n" >> filelist.lst +fi +if [ -d usr/lib64 ]; then + find usr/lib64 -type f -printf "/%h/%f\n" >> filelist.lst +fi +if [ -d usr/bin ]; then + find usr/bin -type f -printf "/%h/%f\n" >> filelist.lst +fi +if [ -d usr/sbin ]; then + find usr/sbin -type f -printf "/%h/%f\n" >> filelist.lst +fi +touch doclist.lst +if [ -d usr/share/man ]; then + find usr/share/man -type f -printf "/%h/%f.gz\n" >> doclist.lst +fi +popd +mv %{buildroot}/filelist.lst . +mv %{buildroot}/doclist.lst . + +%files -n python3-makefun -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Sat Feb 25 2023 Python_Bot <Python_Bot@openeuler.org> - 1.15.1-1 +- Package Spec generated @@ -0,0 +1 @@ +08ae1d3ce13b1c50d56ae3eafc7329e4 makefun-1.15.1.tar.gz |