- add more-relaxed-requirements.patch to weaken the very harsh version requirements OBS-URL: https://build.opensuse.org/request/show/514108 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-fs?expand=0&rev=4
84 lines
2.6 KiB
RPMSpec
84 lines
2.6 KiB
RPMSpec
#
|
|
# spec file for package python-fs
|
|
#
|
|
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, 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 http://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
|
%bcond_without test
|
|
Name: python-fs
|
|
Version: 2.0.4
|
|
Release: 0
|
|
Summary: Python's filesystem abstraction layer
|
|
License: BSD-3-Clause
|
|
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 devel}
|
|
BuildRequires: %{python_module setuptools}
|
|
BuildRequires: python-rpm-macros
|
|
%if %{with test}
|
|
BuildRequires: %{python_module appdirs >= 1.4}
|
|
BuildRequires: %{python_module mock}
|
|
BuildRequires: %{python_module nose}
|
|
BuildRequires: %{python_module pyftpdlib}
|
|
BuildRequires: %{python_module pytz}
|
|
BuildRequires: %{python_module setuptools}
|
|
BuildRequires: %{python_module six >= 1.10.0}
|
|
%endif
|
|
Requires: python-appdirs
|
|
Requires: python-pytz
|
|
Requires: python-setuptools
|
|
Requires: python-six
|
|
%if %python_version_nodots < 35
|
|
Recommends: python-enum34
|
|
Suggests: 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
|
|
|
|
%build
|
|
%python_build
|
|
|
|
%install
|
|
%python_install
|
|
|
|
%if %{with test}
|
|
%check
|
|
export LANG=en_US.UTF-8
|
|
%python_exec setup.py test
|
|
%endif
|
|
|
|
%files %{python_files}
|
|
%defattr(-,root,root,-)
|
|
%doc README.rst
|
|
%{python_sitelib}/*
|
|
|
|
%changelog
|