Compare commits
12 Commits
| Author | SHA256 | Date | |
|---|---|---|---|
| bae03317a9 | |||
| a64ca58e25 | |||
| 4019da74a6 | |||
| 45ecceee48 | |||
| 81b1279b34 | |||
| ba51630a35 | |||
| 0022ad76eb | |||
| aef678e12f | |||
| 229cf02e13 | |||
| 1a9ab4af15 | |||
| 08f1129136 | |||
| f0002bf749 |
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:28bb26d4616c7c381a1543281f987051b8d2d1d5bfaf023d9e7e2c2105c51bb9
|
||||
size 52587
|
||||
3
aioftp-0.26.2.tar.gz
Normal file
3
aioftp-0.26.2.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:ecd8cc9687bbb5e1b4dddc155aa1f3ea873d6e9f9e968221378daf04c2e4f763
|
||||
size 70140
|
||||
@@ -1,3 +1,69 @@
|
||||
-------------------------------------------------------------------
|
||||
Sat Jul 12 08:30:03 UTC 2025 - Dirk Müller <dmueller@suse.com>
|
||||
|
||||
- update to 0.26.2:
|
||||
* fix type hinting
|
||||
* fix minor documentaion bugs
|
||||
* add type annotations
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jun 25 09:35:11 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||
|
||||
- Update to version 0.25.2
|
||||
* adjust codebase for python 3.14 (#190)
|
||||
* client: resolve tls issues (fixes #186) (#187)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jun 3 06:47:47 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||
|
||||
- Update to 0.25.1
|
||||
* do not start explicit tls if implicit mode used (fixes #184) (#185)
|
||||
- from version 0.25.0
|
||||
* client: add partial client support for explicit tls (#183)
|
||||
- Update BuildRequires from pyproject.toml
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 22 10:03:34 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||
|
||||
- Update to 0.24.1
|
||||
* server: use single line pasv response (fix #142)
|
||||
- from versiom 0.24.0
|
||||
* remove documentation dependencies from pyproject.toml
|
||||
(moved to docs/requirements.txt)
|
||||
* include symlink destination in path info for unix legacy mode (#169)
|
||||
* update documentation links (#180)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Oct 23 11:58:36 UTC 2024 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||
|
||||
- Update to 0.23.1
|
||||
* Update ci
|
||||
- from version 0.23.0
|
||||
* server: fix pathlib `relative_to` issue (#179)
|
||||
* minimal python version upgraded to 3.9
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Oct 7 12:07:24 UTC 2024 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||
|
||||
- Update to 0.22.3
|
||||
* minimal python version downgraded to 3.8
|
||||
- from version 0.22.2
|
||||
* ci: separate build and publish jobs
|
||||
- from version 0.22.1
|
||||
* docs: update/fix readthedocs configuration
|
||||
* ci: fix workflow file extension from `yaml` to `yml`
|
||||
- from version 0.22.0
|
||||
* client.list: fix infinite symlink loop for `.` and `..` on FTP servers
|
||||
with UNIX-like filesystem for `client.list(path, recursive=True)`
|
||||
* project file structure: refactor to use `pyproject.toml`
|
||||
* minimal python version bumped to 3.11
|
||||
* ci: update publish/deploy job (#171)
|
||||
- Switch build system from setuptools to pyproject.toml
|
||||
* Add python-pip and python-wheel to BuildRequires
|
||||
* Replace %python_build with %pyproject_wheel
|
||||
* Replace %python_install with %pyproject_install
|
||||
- Update BuildRequires from pyproject.toml
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Jan 7 20:25:23 UTC 2023 - Ben Greiner <code@bnavigator.de>
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package python-aioftp
|
||||
#
|
||||
# Copyright (c) 2023 SUSE LLC
|
||||
# Copyright (c) 2025 SUSE LLC
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@@ -16,26 +16,28 @@
|
||||
#
|
||||
|
||||
|
||||
%define skip_python2 1
|
||||
%{?sle15_python_module_pythons}
|
||||
Name: python-aioftp
|
||||
Version: 0.21.4
|
||||
Version: 0.26.2
|
||||
Release: 0
|
||||
Summary: FTP client/server for asyncio
|
||||
License: Apache-2.0
|
||||
URL: https://github.com/aio-libs/aioftp
|
||||
Source: https://files.pythonhosted.org/packages/source/a/aioftp/aioftp-%{version}.tar.gz
|
||||
BuildRequires: %{python_module pip}
|
||||
BuildRequires: %{python_module setuptools}
|
||||
BuildRequires: %{python_module wheel}
|
||||
BuildRequires: fdupes
|
||||
BuildRequires: python-rpm-macros
|
||||
Requires: python-siosocks >= 0.2.0
|
||||
BuildArch: noarch
|
||||
# SECTION test requirements
|
||||
BuildRequires: %{python_module async_timeout}
|
||||
BuildRequires: %{python_module async_timeout >= 4.0.0}
|
||||
BuildRequires: %{python_module pytest-asyncio}
|
||||
BuildRequires: %{python_module pytest-cov}
|
||||
BuildRequires: %{python_module pytest-mock}
|
||||
BuildRequires: %{python_module pytest}
|
||||
BuildRequires: %{python_module siosocks >= 0.2.0}
|
||||
BuildRequires: %{python_module trustme}
|
||||
# /SECTION
|
||||
%python_subpackages
|
||||
|
||||
%description
|
||||
@@ -45,10 +47,10 @@ aioftp is a python FTP client/server based on asyncio.
|
||||
%setup -q -n aioftp-%{version}
|
||||
|
||||
%build
|
||||
%python_build
|
||||
%pyproject_wheel
|
||||
|
||||
%install
|
||||
%python_install
|
||||
%pyproject_install
|
||||
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
||||
|
||||
%check
|
||||
|
||||
Reference in New Issue
Block a user