You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
60 lines
2.0 KiB
60 lines
2.0 KiB
%global srcname idna |
|
Name: python-%{srcname} |
|
Version: 2.10 |
|
Release: 1%{?dist} |
|
Summary: Internationalized Domain Names in Applications (IDNA) |
|
License: BSD and Python and Unicode |
|
URL: https://github.com/kjd/idna |
|
Source0: https://pypi.io/packages/source/i/%{srcname}/%{srcname}-%{version}.tar.gz |
|
BuildArch: noarch |
|
BuildRequires: python3-devel |
|
BuildRequires: python3-setuptools |
|
|
|
|
|
%description |
|
A library to support the Internationalised Domain Names in Applications (IDNA) |
|
protocol as specified in RFC 5891 <http://tools.ietf.org/html/rfc5891>. This |
|
version of the protocol is often referred to as "IDNA2008" and can produce |
|
different results from the earlier standard from 2003. |
|
The library is also intended to act as a suitable drop-in replacement for the |
|
"encodings.idna" module that comes with the Python standard library but |
|
currently only supports the older 2003 specification. |
|
|
|
|
|
%package -n python3-%{srcname} |
|
Summary: Internationalized Domain Names in Applications (IDNA) |
|
%{?python_provide:%python_provide python%{python3_pkgversion}-%{srcname}} |
|
%description -n python3-%{srcname} |
|
A library to support the Internationalised Domain Names in Applications (IDNA) |
|
protocol as specified in RFC 5891 <http://tools.ietf.org/html/rfc5891>. This |
|
version of the protocol is often referred to as "IDNA2008" and can produce |
|
different results from the earlier standard from 2003. |
|
The library is also intended to act as a suitable drop-in replacement for the |
|
"encodings.idna" module that comes with the Python standard library but |
|
currently only supports the older 2003 specification. |
|
|
|
|
|
%prep |
|
%autosetup -p1 -n %{srcname}-%{version} |
|
rm -rf %{srcname}.egg-info |
|
|
|
|
|
%build |
|
%{__python3} setup.py build |
|
|
|
|
|
%install |
|
%{__python3} setup.py install --optimize 2 --root %{buildroot} |
|
|
|
%check |
|
%{__python3} setup.py test |
|
|
|
|
|
%files -n python3-%{srcname} |
|
%license LICENSE.rst |
|
%doc README.rst HISTORY.rst |
|
%{python3_sitelib}/%{srcname} |
|
%{python3_sitelib}/%{srcname}-%{version}-py%{python3_version}.egg-info |
|
|
|
|
|
%changelog
|
|
|