14
0
Files
python-pyftpdlib/python-pyftpdlib.spec
Todd R 12f728c5ad Accepting request 605511 from home:TheBlackCat:branches:devel:languages:python
- Version update to 1.5.4
  + Enhancements
    * #463: FTPServer class can now be used as a context manager.
  + Bug fixes
    * #431: Ctrl-C doesn't exit `python -m pyftpdlib` on Windows.
    * #436: ThreadedFTPServer.max_cons is evaluated threading.activeCount(). If
      the user uses threads of its own it will consume the number of max_cons.
    * #447: ThreadedFTPServer and MultiprocessFTPServer do not join() tasks which
      are no longer consuming resources.
- Disable tests since they randomly fail.
  See https://github.com/giampaolo/pyftpdlib/issues/386

OBS-URL: https://build.opensuse.org/request/show/605511
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pyftpdlib?expand=0&rev=9
2018-05-09 01:35:26 +00:00

76 lines
2.3 KiB
RPMSpec

#
# spec file for package python-pyftpdlib
#
# Copyright (c) 2018 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 http://bugs.opensuse.org/
#
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
# Tests randomly fail: https://github.com/giampaolo/pyftpdlib/issues/386
%bcond_with test
Name: python-pyftpdlib
Version: 1.5.4
Release: 0
Summary: Asynchronous FTP server library for Python
License: MIT
Group: Development/Languages/Python
URL: https://github.com/giampaolo/pyftpdlib/
Source: https://files.pythonhosted.org/packages/source/p/pyftpdlib/pyftpdlib-%{version}.tar.gz
BuildRequires: %{python_module devel}
BuildRequires: %{python_module nose}
BuildRequires: %{python_module pyOpenSSL}
BuildRequires: %{python_module psutil}
BuildRequires: %{python_module pysendfile}
BuildRequires: %{python_module setuptools}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
BuildRequires: python-ipaddress
BuildRequires: python-mock
Requires: python-pyOpenSSL
Recommends: python-pysendfile
%ifpython2
Requires: python-ipaddress
%endif
BuildArch: noarch
%python_subpackages
%description
The Python FTP server library provides a high-level interface to
write very asynchronous FTP servers with Python.
%prep
%setup -q -n pyftpdlib-%{version}
%build
%python_build
%install
%python_install
%python_expand %fdupes -s %{buildroot}%{$python_sitelib}
%if %{with test}
%check
export PYTHONPATH=$PWD
%python_exec pyftpdlib/test/runner.py
%endif
%files %{python_files}
%license LICENSE
%doc README.rst
%python3_only %{_bindir}/ftpbench
%{python_sitelib}/*
%changelog