%global _empty_manifest_terminate_build 0 Name: python-pep517 Version: 0.13.0 Release: 1 Summary: Wrappers to build Python packages using PEP 517 hooks License: MIT URL: https://github.com/pypa/pep517 Source0: https://files.pythonhosted.org/packages/4d/19/e11fcc88288f68ae48e3aa9cf5a6fd092a88e629cb723465666c44d487a0/pep517-0.13.0.tar.gz Patch0: 0001-add-setup.py.patch BuildArch: noarch %description Wrappers to build Python packages using PEP 517 hooks %package -n python3-pep517 Summary: Wrappers to build Python packages using PEP 517 hooks Provides: python-pep517 BuildRequires: python3-devel BuildRequires: python3-setuptools Requires: python3-toml Requires: python3-tomli Requires: python3-importlib-metadata Requires: python3-zipp %description -n python3-pep517 Wrappers to build Python packages using PEP 517 hooks %package help Summary: Development documents and examples for pep517 Provides: python3-pep517-doc %description help Wrappers to build Python packages using PEP 517 hooks %prep %autosetup -n pep517-%{version} %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-pep517 -f filelist.lst %dir %{python3_sitelib}/* %files help -f doclist.lst %{_docdir}/* %changelog * Tue Nov 08 2022 jiangxinyu - 0.13.0-1 - Upgrade package to version 0.13.0 * Mon Jul 25 2022 liyanan - 0.11.0-3 - Remove python3.10dist(toml) installation dependencies * Fri Jun 17 2022 liukuo - 0.11.0-2 - License compliance rectification * Thu Jul 22 2021 openstack-sig - 0.11.0-1 - Package Spec generated