Compare commits
10 Commits
a4f19bc495
...
cae5a0600f
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
cae5a0600f | ||
|
|
574ae28160 | ||
|
|
e6ccabdf15 | ||
|
|
469a2281e0 | ||
|
|
e3ee223a9b | ||
|
|
0387ef53af | ||
|
|
831006959d | ||
|
|
b7d8c69fe2 | ||
|
|
350e97577a | ||
|
|
3bd2d12a54 |
Binary file not shown.
BIN
fsspec-2024.2.0.tar.gz
Normal file
BIN
fsspec-2024.2.0.tar.gz
Normal file
Binary file not shown.
@ -1,38 +1,13 @@
|
|||||||
%global _empty_manifest_terminate_build 0
|
%global _empty_manifest_terminate_build 0
|
||||||
Name: python-fsspec
|
Name: python-fsspec
|
||||||
Version: 2023.3.0
|
Version: 2024.2.0
|
||||||
Release: 1
|
Release: 1
|
||||||
Summary: File-system specification
|
Summary: File-system specification
|
||||||
License: BSD-3-Clause
|
License: BSD-3-Clause
|
||||||
URL: http://github.com/fsspec/filesystem_spec
|
URL: http://github.com/fsspec/filesystem_spec
|
||||||
Source0: https://files.pythonhosted.org/packages/65/8f/f5956204717fd12010a27d8b9deb0d32cb19049e92ac2dc8e8439d06bff1/fsspec-2023.3.0.tar.gz
|
Source0: https://files.pythonhosted.org/packages/28/d3/c2e0403c735548abf991bba3f45ba39194dff4569f76a99fbe77078ba7c5/fsspec-2024.2.0.tar.gz
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
|
|
||||||
Requires: python3-adlfs
|
|
||||||
Requires: python3-adlfs
|
|
||||||
Requires: python3-pyarrow
|
|
||||||
Requires: python3-dask
|
|
||||||
Requires: python3-distributed
|
|
||||||
Requires: python3-dropboxdrivefs
|
|
||||||
Requires: python3-requests
|
|
||||||
Requires: python3-dropbox
|
|
||||||
Requires: python3-importlib-metadata
|
|
||||||
Requires: python3-fusepy
|
|
||||||
Requires: python3-gcsfs
|
|
||||||
Requires: python3-pygit2
|
|
||||||
Requires: python3-requests
|
|
||||||
Requires: python3-gcsfs
|
|
||||||
Requires: python3-panel
|
|
||||||
Requires: python3-pyarrow
|
|
||||||
Requires: python3-requests
|
|
||||||
Requires: python3-aiohttp
|
|
||||||
Requires: python3-libarchive-c
|
|
||||||
Requires: python3-ocifs
|
|
||||||
Requires: python3-s3fs
|
|
||||||
Requires: python3-paramiko
|
|
||||||
Requires: python3-smbprotocol
|
|
||||||
Requires: python3-paramiko
|
|
||||||
|
|
||||||
%description
|
%description
|
||||||
A specification for pythonic filesystems.
|
A specification for pythonic filesystems.
|
||||||
|
|
||||||
@ -41,14 +16,12 @@ Summary: File-system specification
|
|||||||
Provides: python-fsspec = %{version}-%{release}
|
Provides: python-fsspec = %{version}-%{release}
|
||||||
BuildRequires: python3-devel
|
BuildRequires: python3-devel
|
||||||
BuildRequires: python3-setuptools
|
BuildRequires: python3-setuptools
|
||||||
|
|
||||||
%description -n python3-fsspec
|
%description -n python3-fsspec
|
||||||
A specification for pythonic filesystems.
|
A specification for pythonic filesystems.
|
||||||
|
|
||||||
%package help
|
%package help
|
||||||
Summary: Development documents and examples for fsspec
|
Summary: Development documents and examples for fsspec
|
||||||
Provides: python3-fsspec-doc
|
Provides: python3-fsspec-doc
|
||||||
|
|
||||||
%description help
|
%description help
|
||||||
A specification for pythonic filesystems.
|
A specification for pythonic filesystems.
|
||||||
|
|
||||||
@ -65,6 +38,9 @@ if [ -d doc ]; then cp -arf doc %{buildroot}/%{_pkgdocdir}; fi
|
|||||||
if [ -d docs ]; then cp -arf docs %{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 example ]; then cp -arf example %{buildroot}/%{_pkgdocdir}; fi
|
||||||
if [ -d examples ]; then cp -arf examples %{buildroot}/%{_pkgdocdir}; fi
|
if [ -d examples ]; then cp -arf examples %{buildroot}/%{_pkgdocdir}; fi
|
||||||
|
if [ -f README.rst ]; then cp -af README.rst %{buildroot}/%{_pkgdocdir}; fi
|
||||||
|
if [ -f README.md ]; then cp -af README.md %{buildroot}/%{_pkgdocdir}; fi
|
||||||
|
if [ -f README.txt ]; then cp -af README.txt %{buildroot}/%{_pkgdocdir}; fi
|
||||||
pushd %{buildroot}
|
pushd %{buildroot}
|
||||||
if [ -d usr/lib ]; then
|
if [ -d usr/lib ]; then
|
||||||
find usr/lib -type f -printf "/%h/%f\n" >> filelist.lst
|
find usr/lib -type f -printf "/%h/%f\n" >> filelist.lst
|
||||||
@ -93,6 +69,22 @@ mv %{buildroot}/doclist.lst .
|
|||||||
%{_docdir}/*
|
%{_docdir}/*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Mon Feb 26 2024 jiangxinyu <jiangxinyu@kylinos.cn> - 2024.2.0-1
|
||||||
|
- Update package to version 2024.2.0
|
||||||
|
fix: correctly handle local files with colons (:) in name
|
||||||
|
|
||||||
|
* Wed Dec 06 2023 jiangxinyu <jiangxinyu@kylinos.cn> - 2023.12.1-1
|
||||||
|
- Update package to version 2023.12.1
|
||||||
|
|
||||||
|
* Tue Jul 04 2023 chenzixuan <chenzixuan@kylinos.cn> - 2023.6.0-1
|
||||||
|
- Update package to version 2023.6.0
|
||||||
|
|
||||||
|
* Tue May 16 2023 wubijie <wubijie@kylinos.cn> - 2023.5.0-1
|
||||||
|
- Update package to version 2023.5.0
|
||||||
|
|
||||||
|
* Tue Apr 11 2023 wubijie <wubijie@kylinos.cn> - 2023.4.0-1
|
||||||
|
- Update package to version 2023.4.0
|
||||||
|
|
||||||
* Thu Mar 16 2023 wubijie <wubijie@kylinos.cn> - 2023.3.0-1
|
* Thu Mar 16 2023 wubijie <wubijie@kylinos.cn> - 2023.3.0-1
|
||||||
- Update package to version 2023.3.0
|
- Update package to version 2023.3.0
|
||||||
|
|
||||||
@ -110,4 +102,3 @@ mv %{buildroot}/doclist.lst .
|
|||||||
|
|
||||||
* Mon Dec 20 2021 Python_Bot <Python_Bot@openeuler.org> - 2021.11.1-1
|
* Mon Dec 20 2021 Python_Bot <Python_Bot@openeuler.org> - 2021.11.1-1
|
||||||
- Package Init
|
- Package Init
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user