76 lines
2.4 KiB
RPMSpec
76 lines
2.4 KiB
RPMSpec
%global _empty_manifest_terminate_build 0
|
|
Name: python-types-python-dateutil
|
|
Version: 2.8.19.20240106
|
|
Release: 1
|
|
Summary: A PEP 561 type stub package for the python-dateutil package.
|
|
License: Apache-2.0
|
|
URL: https://github.com/python/typeshed
|
|
Source0: https://files.pythonhosted.org/packages/9b/47/2a9e51ae8cf48cea0089ff6d9d13fff60701f8c9bf72adaee0c4e5dc88f9/types-python-dateutil-2.8.19.20240106.tar.gz
|
|
BuildArch: noarch
|
|
%description
|
|
A PEP 561 type stub package for the python-dateutil package.
|
|
|
|
%package -n python3-types-python-dateutil
|
|
Summary: A PEP 561 type stub package for the python-dateutil package.
|
|
Provides: python-types-python-dateutil
|
|
# Base build requires
|
|
BuildRequires: python3-devel
|
|
BuildRequires: python3-setuptools
|
|
BuildRequires: python3-pbr
|
|
BuildRequires: python3-pip
|
|
BuildRequires: python3-wheel
|
|
%description -n python3-types-python-dateutil
|
|
A PEP 561 type stub package for the python-dateutil package.
|
|
|
|
%package help
|
|
Summary: Development documents and examples for types-python-dateutil.
|
|
Provides: python3-types-python-dateutil-doc
|
|
%description help
|
|
Development documents and examples for types-python-dateutil.
|
|
|
|
%prep
|
|
%autosetup -n types-python-dateutil-%{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-types-python-dateutil -f filelist.lst
|
|
|
|
%dir %{python3_sitelib}/*
|
|
|
|
%files help -f doclist.lst
|
|
%{_docdir}/*
|
|
|
|
%changelog
|
|
* Wed Jan 31 2024 Dongxing Wang <dongxing.wang_a@thundersoft.com> - 2.8.19.20240106-1
|
|
- Init package
|