python-pytest-html/python-pytest-html.spec

92 lines
2.7 KiB
RPMSpec
Raw Permalink Normal View History

2021-08-03 09:01:42 +00:00
%global _empty_manifest_terminate_build 0
Name: python-pytest-html
2022-12-07 15:28:12 +08:00
Version: 3.2.0
2021-08-03 09:01:42 +00:00
Release: 1
Summary: pytest plugin for generating HTML reports
License: Mozilla Public License 2.0 (MPL 2.0)
URL: https://github.com/pytest-dev/pytest-html
2022-12-07 15:28:12 +08:00
Source0: https://files.pythonhosted.org/packages/12/fb/243962e70fc04fa85b4d44b988d45f15f1bde02fd1024a911befe565c866/pytest-html-3.2.0.tar.gz
2021-08-03 09:01:42 +00:00
BuildArch: noarch
2022-12-07 15:28:12 +08:00
2021-08-03 09:01:42 +00:00
%description
pytest plugin for generating HTML reports
%package -n python3-pytest-html
Summary: pytest plugin for generating HTML reports
2022-12-07 15:28:12 +08:00
Provides: python-pytest-html = %{version}-%{release}
2021-08-03 09:01:42 +00:00
BuildRequires: python3-devel
BuildRequires: python3-setuptools
BuildRequires: python3-pbr
BuildRequires: python3-pip
BuildRequires: python3-wheel
BuildRequires: python3-setuptools_scm
2023-07-05 03:34:58 -04:00
BuildRequires: python3-hatchling
2021-08-03 09:01:42 +00:00
BuildRequires: python3-pytest
BuildRequires: python3-pytest-metadata
2023-07-05 03:34:58 -04:00
BuildRequires: python3-py
2021-08-03 09:01:42 +00:00
Requires: python3-pytest
Requires: python3-pytest-metadata
2023-07-05 03:34:58 -04:00
Requires: python3-py
2021-08-03 09:01:42 +00:00
%description -n python3-pytest-html
pytest plugin for generating HTML reports
%package help
Summary: pytest plugin for generating HTML reports
Provides: python3-pytest-html-doc
%description help
pytest plugin for generating HTML reports
%prep
%autosetup -n pytest-html-%{version}
%build
2023-07-05 03:34:58 -04:00
%pyproject_build
2021-08-03 09:01:42 +00:00
%install
2023-07-05 03:34:58 -04:00
%pyproject_install
2021-08-03 09:01:42 +00:00
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
2022-12-07 15:28:12 +08:00
find usr/lib -type f -printf "/%h/%f\n" >> filelist.lst
2021-08-03 09:01:42 +00:00
fi
if [ -d usr/lib64 ]; then
2022-12-07 15:28:12 +08:00
find usr/lib64 -type f -printf "/%h/%f\n" >> filelist.lst
2021-08-03 09:01:42 +00:00
fi
if [ -d usr/bin ]; then
2022-12-07 15:28:12 +08:00
find usr/bin -type f -printf "/%h/%f\n" >> filelist.lst
2021-08-03 09:01:42 +00:00
fi
if [ -d usr/sbin ]; then
2022-12-07 15:28:12 +08:00
find usr/sbin -type f -printf "/%h/%f\n" >> filelist.lst
2021-08-03 09:01:42 +00:00
fi
touch doclist.lst
if [ -d usr/share/man ]; then
2022-12-07 15:28:12 +08:00
find usr/share/man -type f -printf "/%h/%f.gz\n" >> doclist.lst
2021-08-03 09:01:42 +00:00
fi
popd
mv %{buildroot}/filelist.lst .
mv %{buildroot}/doclist.lst .
%check
%{__python3} setup.py test
%files -n python3-pytest-html -f filelist.lst
%dir %{python3_sitelib}/*
%files help -f doclist.lst
%{_docdir}/*
2023-07-05 03:34:58 -04:00
%{python3_sitelib}/pytest_html/*
2021-08-03 09:01:42 +00:00
%changelog
2023-07-05 03:34:58 -04:00
* Wed Jul 05 2023 zjyabsa <jyzhangcf@isoftstone.com> - 3.2.0-1
- Update package to version 3.2.0
2022-12-07 15:28:12 +08:00
* Wed Dec 07 2022 liqiuyu <liqiuyu@kylinos.cn> - 3.2.0-1
- Update package to version 3.2.0
2021-08-03 09:01:42 +00:00
* Tue Aug 03 2021 OpenStack_SIG <openstack@openeuler.org> - 3.1.1-1
- Package Spec generate