python-distlib/python-distlib.spec
2021-11-27 09:52:34 +08:00

59 lines
1.4 KiB
RPMSpec

%bcond_with check
Name: python-distlib
Version: 0.3.1
Release: 2
Summary: A library of packaging functionality
License: Python
URL: https://readthedocs.org/projects/distlib/
Source0: %pypi_source distlib %{version} zip
Patch0000: distlib_unbundle.patch
BuildRequires: python3-devel
BuildArch: noarch
%description
A library of packaging functionality which is intended to be used as the
basis for third-party packaging tools.
%package -n python3-distlib
Summary: A library of packaging functionality
%{?python_provide:%python_provide python3-distlib}
%description -n python3-distlib
A library of packaging functionality which is intended to be used as the
basis for third-party packaging tools.
%prep
%autosetup -n distlib-%{version} -p1
rm distlib/*.exe
rm -rf distlib/_backport
rm tests/test_shutil.py*
rm tests/test_sysconfig.py*
%build
%py3_build
%if %{with check}
%check
export PYTHONHASHSEED=0
%{python3} setup.py test
%endif
%install
%py3_install
%files -n python3-distlib
%doc README.rst LICENSE.txt
%{python3_sitelib}/distlib*
%changelog
* Sat Nov 27 2021 shixuantong <shixuantong@huawei.com> - 0.3.1-2
- fix build fail for python3-3.10.0
* Fri Aug 7 2020 shixuantong <shixuantong@huawei.com> - 0.3.1-1
- update to 0.3.1
* Fri Jun 5 2020 chengzihan <chengzihan2@huawei.com> - 0.3.0-2
- Package init