add spec and tar

This commit is contained in:
zhangy1317 2021-07-19 14:57:48 +08:00
parent fc1e7b357a
commit 1440a38df3
2 changed files with 76 additions and 0 deletions

BIN
pep517-0.11.0.tar.gz Normal file

Binary file not shown.

76
python-pep517.spec Normal file
View File

@ -0,0 +1,76 @@
%global _empty_manifest_terminate_build 0
Name: python-pep517
Version: 0.11.0
Release: 1
Summary: Wrappers to build Python packages using PEP 517 hooks
License: MIT License
URL: https://github.com/pypa/pep517
Source0: https://files.pythonhosted.org/packages/da/12/6d373f746ad1cec5ab9415d6a1df54ecc0a9001124bd771742755dcecded/pep517-0.11.0.tar.gz
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-0.11.0
%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
* Thu Jul 22 2021 openstack-sig <openstack@openeuler.org>
- Package Spec generated