python-singledispatch/python-singledispatch.spec
2022-03-30 09:38:04 +08:00

58 lines
2.0 KiB
RPMSpec

Name: python-singledispatch
Version: 3.4.0.3
Release: 16
Summary: Transform a method into a single-dispatch generic function
License: MIT
URL: https://pypi.org/project/singledispatch/
Source0: https://pypi.python.org/packages/source/s/singledispatch/singledispatch-%{version}.tar.gz
BuildArch: noarch
%description
PEP 443 proposed to expose a mechanism in the functools standard library module in Python 3.4
that provides a simple form of generic programming known as single-dispatch generic functions.
This library is a backport of this functionality to Python 3.3.
%package -n python3-singledispatch
Summary: Transform a method into a single-dispatch generic function
%{?python_provide:%python_provide python3-singledispatch}
BuildRequires: python3-devel python3-setuptools python3-six
Requires: python3-six
%description -n python3-singledispatch
PEP 443 proposed to expose a mechanism in the functools standard library module in Python 3.4
that provides a simple form of generic programming known as single-dispatch generic functions.
This library is a backport of this functionality to Python 3.3.
%prep
%autosetup -n singledispatch-%{version} -p1
sed -i '1d' singledispatch.py
sed -i '1d' singledispatch_helpers.py
%build
%{__python3} setup.py build
%install
%{__python3} setup.py install --skip-build --root %{buildroot}
%check
%{__python3} setup.py test
%files -n python3-singledispatch
%doc README.rst
%{python3_sitelib}/singledispatch-%{version}-py%{python3_version}.egg-info
%{python3_sitelib}/singledispatch.py*
%{python3_sitelib}/singledispatch_helpers.py*
%{python3_sitelib}/__pycache__/*
%changelog
* Wed Mar 30 2022 yaoxin <yaoxin30@huawei.com> - 3.4.0.3-16
- Resolve compilation failures.
* Wed Oct 21 2020 zhanghua <zhanghua40@huawei.com> - 3.4.0.3-15
- remove python2 subpackage, fix changelog version as 3.4.0.3
* Tue Nov 19 2019 openEuler Buildteam <buildteam@openeuler.org> - 3.4.0.3-14
- Package init