python-rfc3987/python-rfc3987.spec

76 lines
2.2 KiB
RPMSpec
Raw Permalink Normal View History

2023-11-08 11:39:34 +08:00
%global _empty_manifest_terminate_build 0
Name: python-rfc3987
Version: 1.3.8
Release: 1
Summary: Parsing and validation of URIs (RFC 3986) and IRIs (RFC 3987).
License: GPL-3.0-or-later
URL: https://github.com/dgerber/rfc3987
Source0: https://files.pythonhosted.org/packages/14/bb/f1395c4b62f251a1cb503ff884500ebd248eed593f41b469f89caa3547bd/rfc3987-1.3.8.tar.gz
BuildArch: noarch
%description
Parsing and validation of URIs (RFC 3986) and IRIs (RFC 3987).
%package -n python3-rfc3987
Summary: Parsing and validation of URIs (RFC 3986) and IRIs (RFC 3987).
Provides: python-rfc3987
# Base build requires
BuildRequires: python3-devel
BuildRequires: python3-setuptools
BuildRequires: python3-pbr
BuildRequires: python3-pip
BuildRequires: python3-wheel
%description -n python3-rfc3987
Parsing and validation of URIs (RFC 3986) and IRIs (RFC 3987).
%package help
Summary: Development documents and examples for rfc3987.
Provides: python3-rfc3987-doc
%description help
Development documents and examples for rfc3987.
%prep
%autosetup -n rfc3987-%{version}
%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-rfc3987 -f filelist.lst
%dir %{python3_sitelib}/*
%files help -f doclist.lst
%{_docdir}/*
%changelog
* Wed Nov 8 2023 Dongxing Wang <dxwangk@isoftstone.com> - 1.3.8-1
- Init package