diff options
author | CoprDistGit <copr-devel@lists.fedorahosted.org> | 2023-02-24 13:04:57 +0000 |
---|---|---|
committer | CoprDistGit <copr-devel@lists.fedorahosted.org> | 2023-02-24 13:04:57 +0000 |
commit | 1fdd5943e3bd247caf745e6bd7253b4edc1ab56a (patch) | |
tree | 4f515392cba5c6c17831483683e0ef43f5a79e55 | |
parent | 38481a78418f13791b6dba16fbe9a45551d3e257 (diff) |
automatic import of python3-futuristopeneuler20.03
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | python-futurist.spec | 71 | ||||
-rw-r--r-- | sources | 1 |
3 files changed, 73 insertions, 0 deletions
@@ -0,0 +1 @@ +/futurist-2.4.1.tar.gz diff --git a/python-futurist.spec b/python-futurist.spec new file mode 100644 index 0000000..43fc699 --- /dev/null +++ b/python-futurist.spec @@ -0,0 +1,71 @@ +%global _empty_manifest_terminate_build 0 +Name: python-futurist +Version: 2.4.1 +Release: 1 +Summary: Useful additions to futures, from the future. +License: Apache Software License +URL: https://docs.openstack.org/futurist/latest/ +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/e7/08/141b42af4fbaa9f7b8b9ffbf32197d261269e1088a3d4f2287fcfcbf542b/futurist-2.4.1.tar.gz +BuildArch: noarch + + +%description + + +%package -n python3-futurist +Summary: Useful additions to futures, from the future. +Provides: python-futurist +BuildRequires: python3-devel +BuildRequires: python3-setuptools +%description -n python3-futurist + + +%package help +Summary: Development documents and examples for futurist +Provides: python3-futurist-doc +%description help + + +%prep +%autosetup -n futurist-2.4.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-futurist -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Fri Feb 24 2023 Python_Bot <Python_Bot@openeuler.org> - 2.4.1-1 +- Package Spec generated @@ -0,0 +1 @@ +3d541a8c1e13c2b7cde000a85eab295c futurist-2.4.1.tar.gz |