SHA256
15
0
forked from pool/python-fs

- update to 2.4.14:

* Added `fs.copy.copy_file_if`, `fs.copy.copy_dir_if`, and `fs.copy.copy_fs_if`.
  * Added `fs.base.FS.getmodified`.
  * FTP servers that do not support the MLST command now try to use the MDTM
    command to retrieve the last modification timestamp of a resource.
  * Fixed performance bugs in `fs.copy.copy_dir_if_newer`. Test cases were
    adapted to catch those bugs in the future.
  * Fixed precision bug for timestamps in `fs.OSFS.setinfo`.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-fs?expand=0&rev=27
This commit is contained in:
2022-01-15 15:57:50 +00:00
committed by Git OBS Bridge
parent 9e5eda1207
commit c0c53ffe7c
4 changed files with 18 additions and 5 deletions

View File

@@ -1,7 +1,7 @@
#
# spec file for package python-fs
#
# Copyright (c) 2021 SUSE LLC
# Copyright (c) 2022 SUSE LLC
# Copyright (c) 2016 LISA GmbH, Bingen, Germany.
#
# All modifications and additions to the file contributed by third parties
@@ -20,7 +20,7 @@
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
%bcond_without python2
Name: python-fs
Version: 2.4.13
Version: 2.4.14
Release: 0
Summary: Python's filesystem abstraction layer
License: MIT
@@ -29,6 +29,7 @@ URL: https://github.com/PyFilesystem/pyfilesystem2
Source: https://files.pythonhosted.org/packages/source/f/fs/fs-%{version}.tar.gz
BuildRequires: %{python_module appdirs >= 1.4.3}
BuildRequires: %{python_module enum34 >= 1.1.6 if %python-base < 3.4}
BuildRequires: %{python_module parameterized}
BuildRequires: %{python_module psutil}
BuildRequires: %{python_module pyftpdlib}
BuildRequires: %{python_module pysendfile}