python-distlib/python-distlib.spec
2022-08-04 14:37:44 +08:00

88 lines
2.5 KiB
RPMSpec

%global _empty_manifest_terminate_build 0
Name: python-distlib
Version: 0.3.5
Release: 1
Summary: A library of packaging functionality
License: Python-2.0
URL: https://github.com/pypa/distlib
Source0: https://files.pythonhosted.org/packages/31/d5/e2aa0aa3918c8d88c4c8e4ebbc50a840e101474b98cd83d3c1712ffe5bb4/distlib-0.3.5.tar.gz
Patch0: 0001-add-setup.py.patch
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
Provides: python-distlib
BuildRequires: python3-devel
BuildRequires: python3-setuptools
%description -n python3-distlib
A library of packaging functionality which is intended to be used as the
basis for third-party packaging tools.
%package help
Summary: Development documents and examples for distlib
Provides: python3-distlib-doc
%description help
A library of packaging functionality which is intended to be used as the
basis for third-party packaging tools.
%prep
%autosetup -n distlib-0.3.5
%patch0
%build
%py3_build
%install
%py3_install
install -d -m755 %{buildroot}/%{_pkgdocdir}
if [ -d doc ]; then cp -arf doc %{buildroot}/%{_pkgdocdir}; fi
if [ -d docs ]; then cp -arf docs %{buildroot}/%{_pkgdocdir}; fi
if [ -d example ]; then cp -arf example %{buildroot}/%{_pkgdocdir}; fi
if [ -d examples ]; then cp -arf examples %{buildroot}/%{_pkgdocdir}; fi
pushd %{buildroot}
if [ -d usr/lib ]; then
find usr/lib -type f -printf "/%h/%f\n" >> filelist.lst
fi
if [ -d usr/lib64 ]; then
find usr/lib64 -type f -printf "/%h/%f\n" >> filelist.lst
fi
if [ -d usr/bin ]; then
find usr/bin -type f -printf "/%h/%f\n" >> filelist.lst
fi
if [ -d usr/sbin ]; then
find usr/sbin -type f -printf "/%h/%f\n" >> filelist.lst
fi
touch doclist.lst
if [ -d usr/share/man ]; then
find usr/share/man -type f -printf "/%h/%f.gz\n" >> doclist.lst
fi
popd
mv %{buildroot}/filelist.lst .
mv %{buildroot}/doclist.lst .
%files -n python3-distlib -f filelist.lst
%dir %{python3_sitelib}/*
%files help -f doclist.lst
%{_docdir}/*
%changelog
* Thu Aug 04 2022 liqiuyu <liqiuyu@kylinos.cn> - 0.3.5-1
- update to 0.3.5
* Thu Dec 09 2021 shixuantong <shixuantong@huawei.com> - 0.3.4-1
- update version to 0.3.4
* 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