60 lines
1.8 KiB
RPMSpec
60 lines
1.8 KiB
RPMSpec
%define pkgname %(echo %name | cut -d- -f2-)
|
|
Name: python-pytz_deprecation_shim
|
|
Version: 0.1.0.post0
|
|
Release: 1mamba
|
|
Summary: Shims to make deprecation of pytz easier
|
|
Group: System/Libraries
|
|
Vendor: openmamba
|
|
Distribution: openmamba
|
|
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
|
|
URL: https://github.com/pganssle/pytz-deprecation-shim
|
|
Source: https://pypi.debian.net/pytz-deprecation-shim/pytz_deprecation_shim-%{version}.tar.gz
|
|
License: Apache License 2.0
|
|
## AUTOBUILDREQ-BEGIN
|
|
BuildRequires: libpython3-devel
|
|
BuildRequires: python3.7dist(backports.zoneinfo)
|
|
BuildRequires: python3.7dist(tzdata)
|
|
## AUTOBUILDREQ-END
|
|
BuildRequires: python-build-py3
|
|
BuildRequires: python-python_install-py3
|
|
|
|
%description
|
|
%{summary}.
|
|
|
|
%if 0%{?with_pyver}
|
|
%pyver_package
|
|
%endif
|
|
|
|
%prep
|
|
%setup -q -n pytz_deprecation_shim-%{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
|
|
|
|
#\
|
|
# -O1 --skip-build \
|
|
# --root="%{buildroot}" \
|
|
# --install-headers=%{python_inc} \
|
|
# --install-lib=%{python_sitearch} \
|
|
# --record=%{name}.filelist
|
|
#
|
|
#sed -i "\,\.egg-info/,d;s,.*/man/.*,&.gz," %{name}.filelist
|
|
|
|
%files %{?pyappend}
|
|
#-f %{name}.filelist
|
|
%defattr(-,root,root)
|
|
%dir %{python_sitelib}/pytz_deprecation_shim
|
|
%{python_sitelib}/pytz_deprecation_shim/*
|
|
%dir %{python_sitelib}/pytz_deprecation_shim-%{version}.dist-info
|
|
%{python_sitelib}/pytz_deprecation_shim-%{version}.dist-info/*
|
|
%doc LICENSE
|
|
|
|
%changelog
|
|
* Tue Jan 25 2022 Silvan Calarco <silvan.calarco@mambasoft.it> 0.1.0.post0-1mamba
|
|
- package created using the webbuild interface
|