diff options
author | CoprDistGit <infra@openeuler.org> | 2023-04-10 08:11:52 +0000 |
---|---|---|
committer | CoprDistGit <infra@openeuler.org> | 2023-04-10 08:11:52 +0000 |
commit | fd13b686b54eff27085c4fbb23718ac997803053 (patch) | |
tree | 72f2fb68a1cd864d540f9bee66a20b3707c34c90 | |
parent | 66c77dc325d4846f0c7bc9c4e0ee26f18b814e71 (diff) |
automatic import of python-distributed
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | python-distributed.spec | 90 | ||||
-rw-r--r-- | sources | 1 |
3 files changed, 92 insertions, 0 deletions
@@ -0,0 +1 @@ +/distributed-2023.3.2.1.tar.gz diff --git a/python-distributed.spec b/python-distributed.spec new file mode 100644 index 0000000..87f55b5 --- /dev/null +++ b/python-distributed.spec @@ -0,0 +1,90 @@ +%global _empty_manifest_terminate_build 0 +Name: python-distributed +Version: 2023.3.2.1 +Release: 1 +Summary: Distributed scheduler for Dask +License: BSD +URL: https://distributed.dask.org +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/14/f3/9b2eb80516522f6efd3b7023fdbf7e10462964a541ed2ac392aada13e373/distributed-2023.3.2.1.tar.gz +BuildArch: noarch + +Requires: python3-click +Requires: python3-cloudpickle +Requires: python3-dask +Requires: python3-jinja2 +Requires: python3-locket +Requires: python3-msgpack +Requires: python3-packaging +Requires: python3-psutil +Requires: python3-pyyaml +Requires: python3-sortedcontainers +Requires: python3-tblib +Requires: python3-toolz +Requires: python3-tornado +Requires: python3-urllib3 +Requires: python3-zict + +%description +|Test Status| |Longitudinal Report (full)| |Longitudinal Report (short)| |Coverage| |Doc Status| |Discourse| |Version Status| |NumFOCUS| +A library for distributed computation. See documentation_ for more details. + +%package -n python3-distributed +Summary: Distributed scheduler for Dask +Provides: python-distributed +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +%description -n python3-distributed +|Test Status| |Longitudinal Report (full)| |Longitudinal Report (short)| |Coverage| |Doc Status| |Discourse| |Version Status| |NumFOCUS| +A library for distributed computation. See documentation_ for more details. + +%package help +Summary: Development documents and examples for distributed +Provides: python3-distributed-doc +%description help +|Test Status| |Longitudinal Report (full)| |Longitudinal Report (short)| |Coverage| |Doc Status| |Discourse| |Version Status| |NumFOCUS| +A library for distributed computation. See documentation_ for more details. + +%prep +%autosetup -n distributed-2023.3.2.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-distributed -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Mon Apr 10 2023 Python_Bot <Python_Bot@openeuler.org> - 2023.3.2.1-1 +- Package Spec generated @@ -0,0 +1 @@ +7da182858caf90b3ce05c0dacfbfb0a1 distributed-2023.3.2.1.tar.gz |