57 lines
1.6 KiB
RPMSpec
57 lines
1.6 KiB
RPMSpec
%{!?_licensedir: %global license %%doc}
|
|
Name: python-contextlib2
|
|
Version: 21.6.0
|
|
Release: 1
|
|
Summary: Backports and enhancements for the contextlib module
|
|
License: Python
|
|
URL: https://pypi.io/project/contextlib2
|
|
Source0: https://pypi.io/packages/source/c/contextlib2/contextlib2-%{version}.tar.gz
|
|
BuildArch: noarch
|
|
BuildRequires: python3-devel
|
|
|
|
|
|
%description
|
|
The package is a backport of the standard library's contextlib module to earlier Python versions.
|
|
It provides a ground for enhancements to the standard library version.
|
|
|
|
%package -n python3-contextlib2
|
|
Summary: Backports and enhancements for the contextlib module
|
|
|
|
%description -n python3-contextlib2
|
|
The package is a backport of the standard library's contextlib module to earlier Python versions.
|
|
It provides a ground for enhancements to the standard library version.
|
|
|
|
%prep
|
|
%autosetup -n contextlib2-%{version}
|
|
|
|
rm -rf contextlib2.egg-info
|
|
rm -rf %{py3dir}
|
|
cp -a . %{py3dir}
|
|
|
|
%build
|
|
cd %{py3dir}
|
|
%{__python3} setup.py build
|
|
cd -
|
|
|
|
%install
|
|
cd %{py3dir}
|
|
%{__python3} setup.py install -O1 --skip-build --root=%{buildroot}
|
|
|
|
%check
|
|
python3 -m unittest discover -v
|
|
|
|
%files -n python3-contextlib2
|
|
%doc README.rst VERSION.txt NEWS.rst
|
|
%license LICENSE.txt
|
|
%{python3_sitelib}/*
|
|
|
|
%changelog
|
|
* Tue Oct 18 2022 Ge Wang <wangge20@h-partners.com> - 21.6.0-1
|
|
- Update to version 21.6.0
|
|
|
|
* Wed Oct 21 2020 zhangtao <zhangtao221@huawei.com> - 0.5.5-10
|
|
- delete python2
|
|
|
|
* Wed Mar 4 2020 zhujunhao <zhujunhao5@huawei.com> - 0.5.5-9
|
|
- Package init
|