From c0c53ffe7cf21ab5455c149f3a714169e009e841a344de2fa3781fd6fe60eb49 Mon Sep 17 00:00:00 2001 From: Dirk Mueller Date: Sat, 15 Jan 2022 15:57:50 +0000 Subject: [PATCH] - 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 --- fs-2.4.13.tar.gz | 3 --- fs-2.4.14.tar.gz | 3 +++ python-fs.changes | 12 ++++++++++++ python-fs.spec | 5 +++-- 4 files changed, 18 insertions(+), 5 deletions(-) delete mode 100644 fs-2.4.13.tar.gz create mode 100644 fs-2.4.14.tar.gz diff --git a/fs-2.4.13.tar.gz b/fs-2.4.13.tar.gz deleted file mode 100644 index 24908c0..0000000 --- a/fs-2.4.13.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:caab4dc1561d63c92f36ee78976f6a4a01381830d8420ce34a78d4f1bb1dc95f -size 179654 diff --git a/fs-2.4.14.tar.gz b/fs-2.4.14.tar.gz new file mode 100644 index 0000000..07446b6 --- /dev/null +++ b/fs-2.4.14.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9555dc2bc58c58cac03478ac7e9f622d29fe2d20a4384c24c90ab50de2c7b36c +size 184588 diff --git a/python-fs.changes b/python-fs.changes index bc6aec0..bb4dd42 100644 --- a/python-fs.changes +++ b/python-fs.changes @@ -1,3 +1,15 @@ +------------------------------------------------------------------- +Sat Jan 15 15:54:03 UTC 2022 - Dirk Müller + +- 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`. + ------------------------------------------------------------------- Fri Apr 16 13:02:36 UTC 2021 - Ben Greiner diff --git a/python-fs.spec b/python-fs.spec index 27ec2f9..83d5be7 100644 --- a/python-fs.spec +++ b/python-fs.spec @@ -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}