diff options
| author | CoprDistGit <infra@openeuler.org> | 2023-04-11 17:29:30 +0000 |
|---|---|---|
| committer | CoprDistGit <infra@openeuler.org> | 2023-04-11 17:29:30 +0000 |
| commit | 33fb585c23393ed550f595803e1ade584162ff29 (patch) | |
| tree | 9f772ea1f63a761a5f55868c0b4ea8ca9205175e | |
| parent | 3cfc613bd3a54f50c3ab82c09623cd05ccb5b20f (diff) | |
automatic import of python-pytest-fixture-config
| -rw-r--r-- | .gitignore | 1 | ||||
| -rw-r--r-- | python-pytest-fixture-config.spec | 77 | ||||
| -rw-r--r-- | sources | 1 |
3 files changed, 79 insertions, 0 deletions
@@ -0,0 +1 @@ +/pytest-fixture-config-1.7.0.tar.gz diff --git a/python-pytest-fixture-config.spec b/python-pytest-fixture-config.spec new file mode 100644 index 0000000..3885f20 --- /dev/null +++ b/python-pytest-fixture-config.spec @@ -0,0 +1,77 @@ +%global _empty_manifest_terminate_build 0 +Name: python-pytest-fixture-config +Version: 1.7.0 +Release: 1 +Summary: Fixture configuration utils for py.test +License: MIT license +URL: https://github.com/manahl/pytest-plugins +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/07/19/37fe282f262b65247e310ec59223329e1ad53a71683f81a139e7d9ca7916/pytest-fixture-config-1.7.0.tar.gz +BuildArch: noarch + +Requires: python3-pytest +Requires: python3-six + +%description +Simple configuration objects for Py.test fixtures. Allows you to skip +tests when their required config variables aren't set. + +%package -n python3-pytest-fixture-config +Summary: Fixture configuration utils for py.test +Provides: python-pytest-fixture-config +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +%description -n python3-pytest-fixture-config +Simple configuration objects for Py.test fixtures. Allows you to skip +tests when their required config variables aren't set. + +%package help +Summary: Development documents and examples for pytest-fixture-config +Provides: python3-pytest-fixture-config-doc +%description help +Simple configuration objects for Py.test fixtures. Allows you to skip +tests when their required config variables aren't set. + +%prep +%autosetup -n pytest-fixture-config-1.7.0 + +%build +%py3_build + +%install +%py3_install +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 + find usr/lib -type f -printf "/%h/%f\n" >> filelist.lst +fi +if [ -d usr/lib64 ]; then + find usr/lib64 -type f -printf "/%h/%f\n" >> filelist.lst +fi +if [ -d usr/bin ]; then + find usr/bin -type f -printf "/%h/%f\n" >> filelist.lst +fi +if [ -d usr/sbin ]; then + find usr/sbin -type f -printf "/%h/%f\n" >> filelist.lst +fi +touch doclist.lst +if [ -d usr/share/man ]; then + find usr/share/man -type f -printf "/%h/%f.gz\n" >> doclist.lst +fi +popd +mv %{buildroot}/filelist.lst . +mv %{buildroot}/doclist.lst . + +%files -n python3-pytest-fixture-config -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Tue Apr 11 2023 Python_Bot <Python_Bot@openeuler.org> - 1.7.0-1 +- Package Spec generated @@ -0,0 +1 @@ +ddfc66f7246535c2c238c72f3463b138 pytest-fixture-config-1.7.0.tar.gz |
