blob: d4bdfa0631f7894e68a2ede1763905d32a451fbb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
# Created by pyp2rpm-1.1.1
%global pypi_name mox3
%{!?upstream_version: %global upstream_version %{version}%{?milestone}}
%global common_desc \
Mox3 is a mock object framework for Python 3 and 2.7. \
Mox3 is an unofficial port of the Google mox framework to Python 3. It was \
meant to be as compatible with mox as possible, but small enhancements have \
been made.
Name: python-%{pypi_name}
Version: 1.1.0
Release: 1%{?dist}
Summary: Mock object framework for Python
License: ASL 2.0
URL: http://git.openstack.org/cgit/openstack/mox3
Source0: https://tarballs.openstack.org/%{pypi_name}/%{pypi_name}-%{upstream_version}.tar.gz
BuildArch: noarch
BuildRequires: openstack-macros
%description
%{common_desc}
%package -n python3-%{pypi_name}
Summary: Mock object framework for Python
%{?python_provide:%python_provide python3-%{pypi_name}}
Requires: python3-pbr
Requires: python3-fixtures
Requires: python3-six >= 1.9.0
Requires: python3-testtools
BuildRequires: python3-devel
BuildRequires: python3-pbr
# test requires
BuildRequires: python3-fixtures
BuildRequires: python3-stestr
BuildRequires: python3-subunit
BuildRequires: python3-testtools
BuildRequires: python3-six >= 1.9.0
%description -n python3-%{pypi_name}
%{common_desc}
%prep
%autosetup -p1 -n %{pypi_name}-%{upstream_version}
# let RPM handle deps
%py_req_cleanup
%build
python3 setup.py build
%install
python3 setup.py install --skip-build --root %{buildroot}
%check
PYTHON=python3 stestr-3 run
%files -n python3-%{pypi_name}
%doc README.rst
%license COPYING.txt
%{python3_sitelib}/%{pypi_name}
%{python3_sitelib}/%{pypi_name}*.egg-info
%changelog
* Thu Mar 11 2021 RDO <dev@lists.rdoproject.org> 1.1.0-1
- Update to 1.1.0
|