Compare commits
9 Commits
| Author | SHA256 | Date | |
|---|---|---|---|
| 7a1011d94a | |||
| 490cb8f479 | |||
| eea53f9f16 | |||
| 7f761c71a5 | |||
| 0753440220 | |||
| 42116c2cf2 | |||
| 154ebf2da5 | |||
| 9269a5ba04 | |||
| dd532eaf00 |
BIN
pyftpdlib-1.5.10.tar.gz
LFS
Normal file
BIN
pyftpdlib-1.5.10.tar.gz
LFS
Normal file
Binary file not shown.
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:323d4c42f1406aedb4df18faf680f64f32c080ff66f6c26090ba592f5bfc4a0f
|
||||
size 204755
|
||||
@@ -1,3 +1,30 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Aug 19 14:26:32 UTC 2025 - Markéta Machová <mmachova@suse.com>
|
||||
|
||||
- Convert to libalternatives on SLE-16-based and newer systems only
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jul 10 08:53:50 UTC 2025 - Andreas Schwab <schwab@suse.de>
|
||||
|
||||
- Set CIBUILDWHEEL to avoid spurious test failures
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jul 8 13:56:26 UTC 2025 - Markéta Machová <mmachova@suse.com>
|
||||
|
||||
- Convert to libalternatives
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Aug 31 12:04:37 UTC 2024 - Dirk Müller <dmueller@suse.com>
|
||||
|
||||
- update to 1.5.10:
|
||||
* use black formatter.
|
||||
* use argparse instead of deprecated optparse.
|
||||
* use pytest instead of unittest.
|
||||
* add ability to run tests in parallel with make test-
|
||||
parallel.
|
||||
* PermissionError may occur on Windows when binding ports
|
||||
from a pre-configured PASV range.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 25 14:21:26 UTC 2024 - Dirk Müller <dmueller@suse.com>
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package python-pyftpdlib
|
||||
#
|
||||
# Copyright (c) 2024 SUSE LLC
|
||||
# Copyright (c) 2025 SUSE LLC
|
||||
# Copyright (c) 2016 LISA GmbH, Bingen, Germany.
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
@@ -17,9 +17,14 @@
|
||||
#
|
||||
|
||||
|
||||
%if 0%{?suse_version} > 1500
|
||||
%bcond_without libalternatives
|
||||
%else
|
||||
%bcond_with libalternatives
|
||||
%endif
|
||||
%{?sle15_python_module_pythons}
|
||||
Name: python-pyftpdlib
|
||||
Version: 1.5.9
|
||||
Version: 1.5.10
|
||||
Release: 0
|
||||
Summary: Asynchronous FTP server library for Python
|
||||
License: MIT
|
||||
@@ -36,10 +41,15 @@ BuildRequires: %{python_module wheel}
|
||||
BuildRequires: fdupes
|
||||
BuildRequires: python-rpm-macros
|
||||
Requires: python-pyOpenSSL
|
||||
Requires(post): update-alternatives
|
||||
Requires(postun): update-alternatives
|
||||
Recommends: python-pysendfile
|
||||
BuildArch: noarch
|
||||
%if %{with libalternatives}
|
||||
BuildRequires: alts
|
||||
Requires: alts
|
||||
%else
|
||||
Requires(post): update-alternatives
|
||||
Requires(postun): update-alternatives
|
||||
%endif
|
||||
%python_subpackages
|
||||
|
||||
%description
|
||||
@@ -61,6 +71,7 @@ cp %{SOURCE1} pyftpdlib/test
|
||||
# Note: Do not remove tests. Other packages import them
|
||||
|
||||
%check
|
||||
export CIBUILDWHEEL=1
|
||||
ignorebuild="--ignore build"
|
||||
%{python_expand # expand to python flavor, not to the binary name, then strip the trailing _
|
||||
builddir=_build.$python_
|
||||
@@ -88,6 +99,9 @@ $python -m pytest
|
||||
%postun
|
||||
%python_uninstall_alternative ftpbench
|
||||
|
||||
%pre
|
||||
%python_libalternatives_reset_alternative ftpbench
|
||||
|
||||
%files %{python_files}
|
||||
%license LICENSE
|
||||
%doc README.rst
|
||||
|
||||
Reference in New Issue
Block a user