]> git.pld-linux.org Git - packages/python-process_tests.git/blame - python-process_tests.spec
rebuild with python 3.10
[packages/python-process_tests.git] / python-process_tests.spec
CommitLineData
5bd5d92d
JB
1#
2# Conditional build:
3%bcond_without python2 # CPython 2.x module
4%bcond_without python3 # CPython 3.x module
5
6Summary: Tools for testing processes
7Summary(pl.UTF-8): Narzędzia do testowania procesów
8Name: python-process_tests
3d07e098 9Version: 2.1.2
c7e345e0 10Release: 2
5bd5d92d
JB
11License: BSD
12Group: Libraries/Python
2afaf53b 13#Source0Download: https://pypi.org/simple/process-tests/
5bd5d92d 14Source0: https://files.pythonhosted.org/packages/source/p/process-tests/process-tests-%{version}.tar.gz
3d07e098 15# Source0-md5: bd65932ebc724e53dd6a951bc106b02e
5bd5d92d
JB
16URL: https://github.com/ionelmc/python-process-tests
17%if %{with python2}
3d07e098 18BuildRequires: python-modules >= 1:2.7
5bd5d92d
JB
19BuildRequires: python-setuptools
20%endif
21%if %{with python3}
3d07e098 22BuildRequires: python3-modules >= 1:3.5
5bd5d92d
JB
23BuildRequires: python3-setuptools
24%endif
25BuildRequires: rpm-pythonprov
26BuildRequires: rpmbuild(macros) >= 1.714
3d07e098 27Requires: python-modules >= 1:2.7
5bd5d92d
JB
28BuildArch: noarch
29BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
30
31%description
32Tools for testing processes.
33
34%description -l pl.UTF-8
35Narzędzia do testowania procesów.
36
37%package -n python3-process_tests
38Summary: Tools for testing processes
39Summary(pl.UTF-8): Narzędzia do testowania procesów
40Group: Libraries/Python
3d07e098 41Requires: python3-modules >= 1:3.5
5bd5d92d
JB
42
43%description -n python3-process_tests
44Tools for testing processes.
45
46%description -n python3-process_tests -l pl.UTF-8
47Narzędzia do testowania procesów.
48
49%prep
50%setup -q -n process-tests-%{version}
51
52%build
53%if %{with python2}
54%py_build
55%endif
56
57%if %{with python3}
58%py3_build
59%endif
60
61%install
62rm -rf $RPM_BUILD_ROOT
63
64%if %{with python2}
65%py_install
66
67%py_postclean
68%endif
69
70%if %{with python3}
71%py3_install
72%endif
73
74%clean
75rm -rf $RPM_BUILD_ROOT
76
77%if %{with python2}
78%files
79%defattr(644,root,root,755)
80%doc LICENSE README.rst
81%{py_sitescriptdir}/process_tests.py[co]
82%{py_sitescriptdir}/process_tests-%{version}-py*.egg-info
83%endif
84
85%if %{with python3}
86%files -n python3-process_tests
87%defattr(644,root,root,755)
88%doc LICENSE README.rst
89%{py3_sitescriptdir}/process_tests.py
90%{py3_sitescriptdir}/__pycache__/process_tests.cpython-*.py[co]
91%{py3_sitescriptdir}/process_tests-%{version}-py*.egg-info
92%endif
This page took 0.086964 seconds and 4 git commands to generate.