60 lines
1.8 KiB
RPMSpec
60 lines
1.8 KiB
RPMSpec
Name: python-pytest
|
|
Version: 6.2.3
|
|
Release: 1mamba
|
|
Summary: The pytest framework makes it easy to write small tests, yet scales to support complex functional testing for applications and libraries
|
|
Group: System/Libraries
|
|
Vendor: openmamba
|
|
Distribution: openmamba
|
|
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
|
|
URL: https://docs.pytest.org/en/latest/
|
|
Source: https://pypi.debian.net/pytest/pytest-%{version}.tar.gz
|
|
License: MIT
|
|
## AUTOBUILDREQ-BEGIN
|
|
#(python3.7dist(pluggy): unidentified build requirement
|
|
BuildRequires: libpython3-devel
|
|
BuildRequires: python-attrs-py3
|
|
BuildRequires: python-importlib_metadata-py3
|
|
BuildRequires: python-iniconfig-py3
|
|
BuildRequires: python-packaging-py3
|
|
BuildRequires: python-py-py3
|
|
BuildRequires: python-setuptools-py3
|
|
BuildRequires: python-toml-py3
|
|
## AUTOBUILDREQ-END
|
|
|
|
%description
|
|
%{summary}.
|
|
|
|
%if 0%{?with_pyver}
|
|
%pyver_package
|
|
%endif
|
|
|
|
%prep
|
|
%setup -q -n pytest-%{version}
|
|
|
|
%build
|
|
CFLAGS="%{optflags}" %{__python} setup.py build
|
|
|
|
%install
|
|
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
|
%{__python} setup.py install \
|
|
-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_sitearch}/pytest-%{version}-py*.egg-info
|
|
%{python_sitearch}/pytest-%{version}-py*.egg-info/*
|
|
%doc AUTHORS LICENSE
|
|
|
|
%changelog
|
|
* Sun Apr 04 2021 Automatic Build System <autodist@mambasoft.it> 6.2.3-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Wed Mar 31 2021 Silvan Calarco <silvan.calarco@mambasoft.it> 6.2.2-1mamba
|
|
- package created using the webbuild interface
|