forked from pool/python-fs
- Remove unnecessary bcond_without test - Simplifed build dependencies on scandir and typing - Fix compatibility Requires for older Python which were using incorrect comparisons with python_version_nodots, and incorrectly used Recommends - Update to v2.4.4 * OSFS fail in nfs mounts - from 2.4.3 * Fixed broken "case_insensitive" check * Fixed Windows test fails - from 2.4.2 * Fixed exception when Python runs with -OO - from 2.4.1 * Fixed hash method missing from WrapFS - from 2.4.0 * Added exclude and filter_dirs arguments to walk * Micro-optimizations to walk - from 2.3.1 * Add encoding check in OSFS.validatepath - from 2.3.0 * IllegalBackReference had mangled error message * Added FS.hash method OBS-URL: https://build.opensuse.org/request/show/681587 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-fs?expand=0&rev=14
94 lines
3.0 KiB
RPMSpec
94 lines
3.0 KiB
RPMSpec
#
|
|
# spec file for package python-fs
|
|
#
|
|
# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
|
|
# Copyright (c) 2016 LISA GmbH, Bingen, Germany.
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
|
Name: python-fs
|
|
Version: 2.4.4
|
|
Release: 0
|
|
Summary: Python's filesystem abstraction layer
|
|
License: MIT
|
|
Group: Development/Languages/Python
|
|
Url: https://github.com/PyFilesystem/pyfilesystem2
|
|
Source: https://files.pythonhosted.org/packages/source/f/fs/fs-%{version}.tar.gz
|
|
# PATCH-FIX-UPSTREAM more-relaxed-requirements.patch sebix+novell.com@sebix.at -- Weaken the version dependencies
|
|
Patch0: more-relaxed-requirements.patch
|
|
BuildRequires: %{python_module appdirs >= 1.4.3}
|
|
BuildRequires: %{python_module mock}
|
|
BuildRequires: %{python_module nose}
|
|
BuildRequires: %{python_module psutil}
|
|
BuildRequires: %{python_module pyftpdlib}
|
|
BuildRequires: %{python_module pysendfile}
|
|
BuildRequires: %{python_module pytz}
|
|
BuildRequires: %{python_module scandir >= 1.5}
|
|
BuildRequires: %{python_module setuptools}
|
|
BuildRequires: %{python_module six >= 1.10.0}
|
|
BuildRequires: %{python_module typing}
|
|
BuildRequires: fdupes
|
|
BuildRequires: python-backports.os
|
|
BuildRequires: python-rpm-macros
|
|
Requires: python-appdirs >= 1.4.3
|
|
Requires: python-psutil
|
|
Requires: python-pytz
|
|
Requires: python-setuptools
|
|
Requires: python-six >= 1.10.0
|
|
Requires: python-typing >= 3.6
|
|
Recommends: python-pyftpdlib
|
|
%ifpython2
|
|
Requires: python-backports.os
|
|
%endif
|
|
%if %{python_version_nodots} < 34
|
|
Requires: python-enum34 >= 1.1.6
|
|
Recommends: python-pysendfile
|
|
%endif
|
|
%if %{python3_version_nodots} < 35
|
|
Recommends: python-scandir >= 1.5
|
|
%endif
|
|
BuildArch: noarch
|
|
|
|
%python_subpackages
|
|
|
|
%description
|
|
PyFilesystem is an abstraction layer for filesystems. In the same way that
|
|
Python's file-like objects provide a common way of accessing files,
|
|
PyFilesystem provides a common way of accessing entire filesystems. You can
|
|
write platform-independent code to work with local files, that also works with
|
|
any of the supported filesystems (zip, ftp, S3 etc.).
|
|
|
|
%prep
|
|
%setup -q -n fs-%{version}
|
|
%patch0 -p1
|
|
|
|
%build
|
|
%python_build
|
|
|
|
%install
|
|
%python_install
|
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
|
|
|
%check
|
|
export LANG=en_US.UTF-8
|
|
%python_exec setup.py test
|
|
|
|
%files %{python_files}
|
|
%doc README.md
|
|
%license LICENSE
|
|
%{python_sitelib}/*
|
|
|
|
%changelog
|