73 lines
2.2 KiB
RPMSpec
73 lines
2.2 KiB
RPMSpec
## START: Set by rpmautospec
|
|
## (rpmautospec version 0.6.5)
|
|
## RPMAUTOSPEC: autorelease, autochangelog
|
|
%define autorelease(e:s:pb:n) %{?-p:0.}%{lua:
|
|
release_number = 1;
|
|
base_release_number = tonumber(rpm.expand("%{?-b*}%{!?-b:1}"));
|
|
print(release_number + base_release_number - 1);
|
|
}%{?-e:.%{-e*}}%{?-s:.%{-s*}}%{!?-n:%{?dist}}
|
|
## END: Set by rpmautospec
|
|
|
|
%global python3_pkgversion 3.14
|
|
%global srcname idna
|
|
|
|
Name: python%{python3_pkgversion}-%{srcname}
|
|
Version: 3.11
|
|
Release: %autorelease
|
|
Summary: Internationalized Domain Names in Applications (IDNA)
|
|
|
|
License: BSD-3-Clause
|
|
URL: https://github.com/kjd/idna
|
|
Source0: https://pypi.io/packages/source/i/%{srcname}/%{srcname}-%{version}.tar.gz
|
|
BuildArch: noarch
|
|
|
|
BuildRequires: python%{python3_pkgversion}-devel
|
|
BuildRequires: python%{python3_pkgversion}-pytest
|
|
|
|
%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.
|
|
|
|
%prep
|
|
%autosetup -p1 -n %{srcname}-%{version}
|
|
# Remove bundled egg-info
|
|
rm -rf %{srcname}.egg-info
|
|
|
|
%generate_buildrequires
|
|
%pyproject_buildrequires
|
|
|
|
%build
|
|
%pyproject_wheel
|
|
|
|
%install
|
|
%pyproject_install
|
|
%pyproject_save_files %{srcname}
|
|
|
|
%check
|
|
%pytest
|
|
|
|
%files -n python%{python3_pkgversion}-%{srcname} -f %pyproject_files
|
|
%license LICENSE.md
|
|
%doc README.rst
|
|
|
|
%changelog
|
|
## START: Generated by rpmautospec
|
|
* Fri Nov 28 2025 Tomáš Hrnčiar <thrnciar@redhat.com> - 3.11-1
|
|
- Update to 3.11 - taken from Fedora 9888320
|
|
|
|
* Fri Nov 28 2025 Lukáš Zachar <lzachar@redhat.com> - 3.10-3
|
|
- Add gating.yaml
|
|
|
|
* Fri Nov 28 2025 Tomáš Hrnčiar <thrnciar@redhat.com> - 3.10-2
|
|
- Convert from Fedora for the Python 3.14 stack in RHEL
|
|
|
|
* Fri Nov 28 2025 Tomáš Hrnčiar <thrnciar@redhat.com> - 3.10-1
|
|
- RHEL: Rename SPEC to python3.14-idna.spec
|
|
## END: Generated by rpmautospec
|