15
0
Files
python-aiosmtplib/python-aiosmtplib.spec
Tomáš Chvátal fca7069362 Accepting request 765048 from home:mcalabkova:branches:devel:languages:python
- update to 1.1.2
  * Fix handling of sending legacy email API (Message) objects.
  * Fix SMTPNotSupported error with UTF8 sender/recipient names 
    on servers that don’t support SMTPUTF8.

OBS-URL: https://build.opensuse.org/request/show/765048
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-aiosmtplib?expand=0&rev=5
2020-01-16 19:30:17 +00:00

63 lines
1.9 KiB
RPMSpec

#
# spec file for package python-aiosmtplib
#
# Copyright (c) 2020 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/
#
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
%define skip_python2 1
Name: python-aiosmtplib
Version: 1.1.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 aiosmtpd}
BuildRequires: %{python_module hypothesis}
BuildRequires: %{python_module pytest-asyncio}
BuildRequires: %{python_module setuptools}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
Suggests: python-aiosmtpd
BuildArch: noarch
%python_subpackages
%description
Python asyncio SMTP client.
%prep
%setup -q -n aiosmtplib-%{version}
%build
%python_build
%install
%python_install
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%check
# test_qq_login or test_starttls_gmail are online
# https://github.com/cole/aiosmtplib/issues/79 for test_send_message_smtputf8_sender
%pytest -k 'not (test_qq_login or test_starttls_gmail or test_send_message_smtputf8_sender)'
%files %{python_files}
%doc README.rst
%license LICENSE.txt
%{python_sitelib}/*
%changelog