15
0
Files
python-aiosmtplib/python-aiosmtplib.spec
Matej Cepl cafbb292cd Accepting request 1222673 from home:glaubitz:branches:devel:languages:python
- Update to 3.0.2
  * Bugfix: Type of "send" is partially unknown with pyright
  * Bugfix: Fix asyncio deadlock trying to reconnect after error
  * Change: Switched from Poetry to build/hatch/twine for packaging.
- Skip test_live and test_tls tests when running testsuite
- Switch package to modern Python Stack on SLE-15
  * Use Python 3.11 on SLE-15 by default
  * Drop support for older Python versions
- 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
- Limit Python files matched in %files section

OBS-URL: https://build.opensuse.org/request/show/1222673
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-aiosmtplib?expand=0&rev=25
2024-11-08 15:04:32 +00:00

67 lines
2.0 KiB
RPMSpec

#
# spec file for package python-aiosmtplib
#
# Copyright (c) 2023 SUSE LLC
#
# 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/
#
%{?sle15_python_module_pythons}
Name: python-aiosmtplib
Version: 3.0.2
Release: 0
Summary: Python asyncio SMTP client
License: MIT
Group: Development/Languages/Python
URL: https://github.com/cole/aiosmtplib
Source: https://files.pythonhosted.org/packages/source/a/aiosmtplib/aiosmtplib-%{version}.tar.gz
BuildRequires: %{python_module exceptiongroup}
BuildRequires: %{python_module hatchling}
BuildRequires: %{python_module pip}
BuildRequires: %{python_module setuptools}
BuildRequires: %{python_module trustme}
BuildRequires: %{python_module wheel}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
Suggests: python-aiosmtpd
BuildArch: noarch
# SECTION test requirements
BuildRequires: %{python_module aiosmtpd}
BuildRequires: %{python_module hypothesis}
BuildRequires: %{python_module pytest-asyncio}
# /SECTION
%python_subpackages
%description
Python asyncio SMTP client.
%prep
%autosetup -p1 -n aiosmtplib-%{version}
%build
%pyproject_wheel
%install
%pyproject_install
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%check
%pytest -rs -k "not test_live and not test_tls"
%files %{python_files}
%doc README.rst docs/*.rst
%license LICENSE.txt
%{python_sitelib}/aiosmtplib
%{python_sitelib}/aiosmtplib-%{version}.dist-info
%changelog