forked from pool/python-aiosmtpd
* Is now compatible with uvloop * Add compatibility for Python 3.10 and 3.11 (Closes #322) * Test matrix update (Closes #306) * Drop Python 3.6, PyPy 3.6 (some) and MacOS 10 * Add Python 3.10 & 3.11, PyPy 3.7 & 3.8, Ubuntu 22.04, MacOS 11 & 12 * Expanded tox environments * Longer AUTOSTOP_DELAY especially for Windows (Closes #313) * Update signing keys * Some documentation fixes OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-aiosmtpd?expand=0&rev=17
102 lines
3.3 KiB
RPMSpec
102 lines
3.3 KiB
RPMSpec
#
|
|
# spec file for package python-aiosmtpd
|
|
#
|
|
# 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/
|
|
#
|
|
|
|
|
|
%define skip_python2 1
|
|
Name: python-aiosmtpd
|
|
Version: 1.4.3
|
|
Release: 0
|
|
Summary: SMTP server based on asyncio
|
|
License: Apache-2.0
|
|
Group: Development/Languages/Python
|
|
URL: https://aiosmtpd.readthedocs.io/
|
|
Source: https://github.com/aio-libs/aiosmtpd/archive/%{version}.tar.gz#/aiosmtpd-%{version}.tar.gz
|
|
Source1: http://www.apache.org/licenses/LICENSE-2.0.txt
|
|
Source99: python-aiosmtpd.rpmlintrc
|
|
BuildRequires: %{python_module setuptools}
|
|
BuildRequires: fdupes
|
|
BuildRequires: git-core
|
|
BuildRequires: python-rpm-macros
|
|
Requires: python-atpublic
|
|
Requires: python-attrs
|
|
%if 0%{python_version_nodots} < 38
|
|
Requires: python-typing_extensions
|
|
%endif
|
|
Requires: user(nobody)
|
|
Requires(post): update-alternatives
|
|
Requires(postun):update-alternatives
|
|
BuildArch: noarch
|
|
# SECTION test requirements
|
|
BuildRequires: %{python_module atpublic}
|
|
BuildRequires: %{python_module attrs}
|
|
BuildRequires: %{python_module pytest-mock}
|
|
BuildRequires: %{python_module pytest}
|
|
# this package is used in projects which do not support boolean python_module BuildRequires yet :(
|
|
%if 0%{?python3_version_nodots} < 37
|
|
BuildRequires: python3-typing_extensions
|
|
%endif
|
|
BuildRequires: user(nobody)
|
|
# /SECTION
|
|
%python_subpackages
|
|
|
|
%description
|
|
The Python standard library includes a basic SMTP server in the smtpd module,
|
|
based on the old asynchronous libraries asyncore and asynchat. These modules
|
|
are quite old and are definitely showing their age; asyncore and asynchat are
|
|
difficult APIs to work with, understand, extend, and fix.
|
|
|
|
With the introduction of the asyncio module in Python 3.4, a much better way of
|
|
doing asynchronous I/O is now available. It seems obvious that an asyncio-based
|
|
version of the SMTP and related protocols are needed for Python 3. This project
|
|
brings together several highly experienced Python developers collaborating on
|
|
this reimplementation.
|
|
|
|
This package provides such an implementation of both the SMTP and LMTP protocols.
|
|
|
|
%prep
|
|
%setup -q -n aiosmtpd-%{version}
|
|
cp %{SOURCE1} .
|
|
|
|
%build
|
|
%python_build
|
|
|
|
%install
|
|
%python_install
|
|
%python_clone -a %{buildroot}%{_bindir}/aiosmtpd
|
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
|
|
|
%if 0%{?sle_version} && 0%{?sle_version} >= 150400
|
|
%check
|
|
%pytest
|
|
%endif
|
|
|
|
%post
|
|
%python_install_alternative aiosmtpd
|
|
|
|
%postun
|
|
%python_uninstall_alternative aiosmtpd
|
|
|
|
%files %{python_files}
|
|
%doc README.rst
|
|
%license LICENSE-2.0.txt
|
|
%python_alternative %{_bindir}/aiosmtpd
|
|
%{python_sitelib}/aiosmtpd
|
|
%{python_sitelib}/aiosmtpd-%{version}*-info
|
|
%exclude %{python_sitelib}/aiosmtpd/docs
|
|
|
|
%changelog
|