diff options
author | CoprDistGit <infra@openeuler.org> | 2023-05-18 05:39:10 +0000 |
---|---|---|
committer | CoprDistGit <infra@openeuler.org> | 2023-05-18 05:39:10 +0000 |
commit | 02d264b19b75d756a344fdd2b237e51ea0516fc3 (patch) | |
tree | 292e5523c579629e2bcb169b4568b80ba00fd4a5 | |
parent | 769fbbd14d3d88e5d12297c74c39a7efef759bfc (diff) |
automatic import of python-metal-python
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | python-metal-python.spec | 79 | ||||
-rw-r--r-- | sources | 1 |
3 files changed, 81 insertions, 0 deletions
@@ -0,0 +1 @@ +/metal_python-0.22.5.tar.gz diff --git a/python-metal-python.spec b/python-metal-python.spec new file mode 100644 index 0000000..e08244d --- /dev/null +++ b/python-metal-python.spec @@ -0,0 +1,79 @@ +%global _empty_manifest_terminate_build 0 +Name: python-metal-python +Version: 0.22.5 +Release: 1 +Summary: Python API client for metal-api +License: MIT +URL: https://github.com/metal-stack/metal-python +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/8e/91/b0f46266857bfb477362018929685480813a292d0e55bb6f0ed604dd2f0e/metal_python-0.22.5.tar.gz +BuildArch: noarch + +Requires: python3-certifi +Requires: python3-dateutil +Requires: python3-six +Requires: python3-urllib3 +Requires: python3-wrapt +Requires: python3-nose +Requires: python3-coverage + +%description + + +%package -n python3-metal-python +Summary: Python API client for metal-api +Provides: python-metal-python +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +%description -n python3-metal-python + + +%package help +Summary: Development documents and examples for metal-python +Provides: python3-metal-python-doc +%description help + + +%prep +%autosetup -n metal-python-0.22.5 + +%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-metal-python -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Thu May 18 2023 Python_Bot <Python_Bot@openeuler.org> - 0.22.5-1 +- Package Spec generated @@ -0,0 +1 @@ +ffdb76df3282603f62c30cdf71ab4176 metal_python-0.22.5.tar.gz |