diff options
author | CoprDistGit <infra@openeuler.org> | 2023-05-17 05:19:41 +0000 |
---|---|---|
committer | CoprDistGit <infra@openeuler.org> | 2023-05-17 05:19:41 +0000 |
commit | 3cfd5e147317b6fe0cd1ff883c230a2a0e3e35a9 (patch) | |
tree | 77663c470f7a831e21626d3626891ea402368d96 | |
parent | c7b4c4e12c35e677c394886c35d0fa154c532d3a (diff) |
automatic import of python-adcm-client
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | python-adcm-client.spec | 84 | ||||
-rw-r--r-- | sources | 1 |
3 files changed, 86 insertions, 0 deletions
@@ -0,0 +1 @@ +/adcm_client-2022.12.7.12.tar.gz diff --git a/python-adcm-client.spec b/python-adcm-client.spec new file mode 100644 index 0000000..cf9dfc3 --- /dev/null +++ b/python-adcm-client.spec @@ -0,0 +1,84 @@ +%global _empty_manifest_terminate_build 0 +Name: python-adcm-client +Version: 2022.12.7.12 +Release: 1 +Summary: ArenaData Cluster Manager Client +License: Apache Software License +URL: https://github.com/arenadata/adcm +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/8f/6a/d428fde46bdf21386ab3cc2a2cab7f82ad1860dcb77f9bef87de1a70bf89/adcm_client-2022.12.7.12.tar.gz +BuildArch: noarch + +Requires: python3-pyyaml +Requires: python3-coreapi +Requires: python3-ipython +Requires: python3-ad-ci-tools +Requires: python3-docker +Requires: python3-jinja2 +Requires: python3-version-utils +Requires: python3-ad-ci-tools +Requires: python3-pytz +Requires: python3-setuptools +Requires: python3-wheel +Requires: python3-pytest + +%description + + +%package -n python3-adcm-client +Summary: ArenaData Cluster Manager Client +Provides: python-adcm-client +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +%description -n python3-adcm-client + + +%package help +Summary: Development documents and examples for adcm-client +Provides: python3-adcm-client-doc +%description help + + +%prep +%autosetup -n adcm-client-2022.12.7.12 + +%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-adcm-client -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Wed May 17 2023 Python_Bot <Python_Bot@openeuler.org> - 2022.12.7.12-1 +- Package Spec generated @@ -0,0 +1 @@ +877a235a32241ced8a3b582b5fb61edc adcm_client-2022.12.7.12.tar.gz |