Import rpm: 011aaa788b2ceee083685acf232b6f9d4b1ca3b3
This commit is contained in:
commit
619a74dcee
1
.fmf/version
Normal file
1
.fmf/version
Normal file
@ -0,0 +1 @@
|
||||
1
|
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
||||
SOURCES/idna-2.5.tar.gz
|
6
gating.yaml
Normal file
6
gating.yaml
Normal file
@ -0,0 +1,6 @@
|
||||
--- !Policy
|
||||
product_versions:
|
||||
- rhel-9
|
||||
decision_context: osci_compose_gate
|
||||
rules:
|
||||
- !PassingTestCaseRule {test_case_name: osci.brew-build.tier0.functional}
|
11
plans.fmf
Normal file
11
plans.fmf
Normal file
@ -0,0 +1,11 @@
|
||||
discover:
|
||||
- name: Smoke-tests
|
||||
how: shell
|
||||
tests:
|
||||
- name: python-import-test
|
||||
test: python3 -c 'import idna'
|
||||
require:
|
||||
- python3-idna
|
||||
duration: 1m
|
||||
execute:
|
||||
how: tmt
|
111
python-idna.spec
Normal file
111
python-idna.spec
Normal file
@ -0,0 +1,111 @@
|
||||
%bcond_without python3
|
||||
%global srcname idna
|
||||
|
||||
Name: python-%{srcname}
|
||||
Version: 2.5
|
||||
Release: 7%{?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: python2-devel
|
||||
BuildRequires: python2-setuptools
|
||||
%if %{with python3}
|
||||
BuildRequires: python%{python3_pkgversion}-devel
|
||||
BuildRequires: python%{python3_pkgversion}-setuptools
|
||||
%endif # with python3
|
||||
|
||||
%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 python2-%{srcname}
|
||||
Summary: Internationalized Domain Names in Applications (IDNA)
|
||||
%{?python_provide:%python_provide python2-%{srcname}}
|
||||
|
||||
%description -n python2-%{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.
|
||||
|
||||
%if %{with python3}
|
||||
%package -n python%{python3_pkgversion}-%{srcname}
|
||||
Summary: Internationalized Domain Names in Applications (IDNA)
|
||||
%{?python_provide:%python_provide python%{python3_pkgversion}-%{srcname}}
|
||||
|
||||
%description -n python%{python3_pkgversion}-%{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.
|
||||
%endif # with python3
|
||||
|
||||
%prep
|
||||
%setup -q -n %{srcname}-%{version}
|
||||
# Remove bundled egg-info
|
||||
rm -rf %{srcname}.egg-info
|
||||
|
||||
%build
|
||||
%py2_build
|
||||
|
||||
%if %{with python3}
|
||||
%py3_build
|
||||
%endif # with python3
|
||||
|
||||
%install
|
||||
%if %{with python3}
|
||||
%py3_install
|
||||
%endif # with python3
|
||||
|
||||
%py2_install
|
||||
|
||||
%check
|
||||
%{__python2} setup.py test
|
||||
|
||||
%if %{with python3}
|
||||
%{__python3} setup.py test
|
||||
%endif # with python3
|
||||
|
||||
|
||||
%files -n python2-%{srcname}
|
||||
%license LICENSE.rst
|
||||
%doc README.rst HISTORY.rst
|
||||
%{python2_sitelib}/%{srcname}
|
||||
%{python2_sitelib}/%{srcname}-%{version}-py%{python2_version}.egg-info
|
||||
|
||||
%if %{with python3}
|
||||
%files -n python%{python3_pkgversion}-%{srcname}
|
||||
%license LICENSE.rst
|
||||
%doc README.rst HISTORY.rst
|
||||
%{python3_sitelib}/%{srcname}
|
||||
%{python3_sitelib}/%{srcname}-%{version}-py%{python3_version}.egg-info
|
||||
%endif # with python3
|
||||
|
||||
%changelog
|
||||
* Thu Apr 25 2019 Tomas Orsava <torsava@redhat.com> - 2.5-7
|
||||
- Bumping due to problems with modular RPM upgrade path
|
||||
- Resolves: rhbz#1695587
|
||||
|
||||
* Tue Jul 31 2018 Lumír Balhar <lbalhar@redhat.com> - 2.5-6
|
||||
- Switch python3 coditions to bcond
|
||||
|
||||
* Mon Jul 16 2018 Lumír Balhar <lbalhar@redhat.com> - 2.5-5
|
||||
- First version for python27 module
|
Loading…
Reference in New Issue
Block a user