summaryrefslogtreecommitdiff
path: root/python-bonobo-docker.spec
diff options
context:
space:
mode:
authorCoprDistGit <infra@openeuler.org>2023-05-29 10:29:01 +0000
committerCoprDistGit <infra@openeuler.org>2023-05-29 10:29:01 +0000
commit0039691e0fbe5cdd99b2db9ad124873d038a4a07 (patch)
treefbcb97b21e3817884e37b0a7773b1347023cad03 /python-bonobo-docker.spec
parent1f66879d8fff0bcf655fb9f6fd8f961413ae5d96 (diff)
automatic import of python-bonobo-docker
Diffstat (limited to 'python-bonobo-docker.spec')
-rw-r--r--python-bonobo-docker.spec90
1 files changed, 90 insertions, 0 deletions
diff --git a/python-bonobo-docker.spec b/python-bonobo-docker.spec
new file mode 100644
index 0000000..3be6775
--- /dev/null
+++ b/python-bonobo-docker.spec
@@ -0,0 +1,90 @@
+%global _empty_manifest_terminate_build 0
+Name: python-bonobo-docker
+Version: 0.6.0
+Release: 1
+Summary: Docker extension for Bonobo
+License: Apache License, Version 2.0
+URL: https://www.bonobo-project.org/with/docker
+Source0: https://mirrors.nju.edu.cn/pypi/web/packages/15/31/8b091b03573ae7698aeaf12fcfb440f5d75de9477df284c8dca90c2a3d35/bonobo_docker-0.6.0.tar.gz
+BuildArch: noarch
+
+Requires: python3-bonobo
+Requires: python3-docker
+Requires: python3-requests
+Requires: python3-semantic-version
+Requires: python3-bonobo
+Requires: python3-coverage
+Requires: python3-pytest
+Requires: python3-pytest-cov
+Requires: python3-yapf
+
+%description
+UNKNOWN
+
+
+
+
+%package -n python3-bonobo-docker
+Summary: Docker extension for Bonobo
+Provides: python-bonobo-docker
+BuildRequires: python3-devel
+BuildRequires: python3-setuptools
+BuildRequires: python3-pip
+%description -n python3-bonobo-docker
+UNKNOWN
+
+
+
+
+%package help
+Summary: Development documents and examples for bonobo-docker
+Provides: python3-bonobo-docker-doc
+%description help
+UNKNOWN
+
+
+
+
+%prep
+%autosetup -n bonobo-docker-0.6.0
+
+%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-bonobo-docker -f filelist.lst
+%dir %{python3_sitelib}/*
+
+%files help -f doclist.lst
+%{_docdir}/*
+
+%changelog
+* Mon May 29 2023 Python_Bot <Python_Bot@openeuler.org> - 0.6.0-1
+- Package Spec generated