python-uritemplate/python-uritemplate.spec

68 lines
1.5 KiB
RPMSpec
Raw Normal View History

2020-11-06 10:16:32 +08:00
%global modname uritemplate
%global altname uritemplate.py
%global _docdir_fmt %{name}
#%%if 0%{?rhel} >= 8
%bcond_with pytests
#%%else
#%%bcond_without pytests
#%%endif
Name: python-%{modname}
2022-05-07 17:34:18 +08:00
Version: 3.0.1
2022-05-11 16:30:20 +08:00
Release: 2
2020-11-06 10:16:32 +08:00
Summary: Simple python library to deal with URI Templates (RFC 6570)
2022-05-11 16:30:20 +08:00
License: Apache-2.0 or BSD-3-Clause
2020-11-06 10:16:32 +08:00
URL: https://%{modname}.readthedocs.io
Source0: https://github.com/sigmavirus24/%{modname}/archive/%{version}/%{modname}-%{version}.tar.gz
BuildArch: noarch
%description
%{summary}.
%package -n python3-%{modname}
Summary: %{summary}
Conflicts: python3-uri-templates
%{?python_provide:%python_provide python3-%{modname}}
%{?python_provide:%python_provide python3-%{altname}}
BuildRequires: python3-devel
BuildRequires: python3-setuptools
BuildRequires: python3-pytest
%description -n python3-%{modname}
%{summary}.
Python 3 version.
%prep
%autosetup -n uritemplate-%{version}
%build
%py3_build
%install
%py3_install
%check
#py.test-%{python3_version} -v
PYTHONPATH=%{buildroot}%{python3_sitelib} py.test-%{python3_version} -v
%files -n python3-%{modname}
%license LICENSE
%doc HISTORY.rst README.rst
%{python3_sitelib}/%{modname}-*.egg-info/
%{python3_sitelib}/%{modname}/
%changelog
2022-05-11 16:30:20 +08:00
* Wed May 11 2022 yangping <yangping69@h-partners> - 3.0.1-2
- License compliance rectification
2022-05-07 17:34:18 +08:00
* Sat May 07 2022 xigaoxinyan <xigaoxinyan@h-partners.com> -3.0.1-1
- Update to 3.0.1
2020-11-06 10:16:32 +08:00
* Fri Oct 30 2020 jiangxinyu <jiangxinyu@kylinos.cn> - 3.0.0-10
- Init python3-uritemplate project