python-tzdata/python-tzdata.spec

48 lines
1.3 KiB
RPMSpec

%define pkgname %(echo %name | cut -d- -f2-)
Name: python-tzdata
Version: 2021.5
Release: 1mamba
Summary: Provider of IANA time zone data
Group: System/Libraries
Vendor: openmamba
Distribution: openmamba
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
URL: https://github.com/python/tzdata
Source: https://pypi.debian.net/tzdata/tzdata-%{version}.tar.gz
License: Apache License 2.0
## AUTOBUILDREQ-BEGIN
BuildRequires: libpython3-devel
## AUTOBUILDREQ-END
BuildRequires: python-build-py3
BuildRequires: python-python_install-py3
%description
%{summary}.
%if 0%{?with_pyver}
%pyver_package
%endif
%prep
%setup -q -n tzdata-%{version}
%build
%{__python} -m build --wheel --skip-dependency-check --no-isolation
%install
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%{__python} -m venv --system-site-packages test-env
%{__python} -m install --optimize=1 --destdir="%{buildroot}" dist/*.whl
%files %{?pyappend}
%defattr(-,root,root)
%dir %{python_sitelib}/%{pkgname}
%{python_sitelib}/%{pkgname}/*
%dir %{python_sitelib}/%{pkgname}-%{version}.dist-info
%{python_sitelib}/%{pkgname}-%{version}.dist-info/*
%doc LICENSE
%changelog
* Tue Jan 25 2022 Silvan Calarco <silvan.calarco@mambasoft.it> 2021.5-1mamba
- package created using the webbuild interface