-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpython-scaleio.spec
170 lines (134 loc) · 4.78 KB
/
python-scaleio.spec
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
%if 0%{?fedora} > 12 || 0%{?epel} >= 7
%bcond_without python3
%else
%bcond_with python3
%endif
%if 0%{?epel} >= 7
%bcond_without python3_other
%endif
%if 0%{?rhel} <= 6
%{!?__python2: %global __python2 /usr/bin/python2}
%{!?python2_sitelib: %global python2_sitelib %(%{__python2} -c "from distutils.sysconfig import get_python_lib; print(get_python_lib())")}
%endif
%if 0%{with python3}
%{!?__python3: %global __python3 /usr/bin/python3}
%{!?python3_sitelib: %global python3_sitelib %(%{__python3} -c "from distutils.sysconfig import get_python_lib; print(get_python_lib())")}
%{!?python3_pkgversion: %global python3_pkgversion 3}
%endif # with python3
%global project_name pyscaleio
%global project_description %{expand:
Python library that provides convenient way to interact with ScaleIO/VxFlex REST API.}
Name: python-scaleio
Version: 0.1.7
Release: 1%{?dist}
Summary: ScaleIO/VxFlex API client
Group: Development/Tools
License: Apache Software License 2.0
URL: https://github.com/gmmephisto/pyscaleio
Source: https://pypi.python.org/packages/source/p/%project_name/%project_name-%version.tar.gz
BuildRequires: python2-devel
BuildRequires: python-setuptools
BuildRequires: python-six
BuildRequires: python-pbr
BuildArch: noarch
Requires: python-requests >= 2.3
Requires: python-object-validator >= 0.1.4
Requires: python-psys >= 0.3
Requires: python-inflection
Requires: python-six
%description %{project_description}
%if 0%{with python3}
%package -n python%{python3_pkgversion}-scaleio
Summary: ScaleIO API client
Requires: python%{python3_pkgversion}-requests >= 2.3
Requires: python%{python3_pkgversion}-object-validator >= 0.1.4
Requires: python%{python3_pkgversion}-psys >= 0.3
Requires: python%{python3_pkgversion}-inflection
Requires: python%{python3_pkgversion}-six
BuildRequires: python%{python3_pkgversion}-devel
BuildRequires: python%{python3_pkgversion}-setuptools
BuildRequires: python%{python3_pkgversion}-six
BuildRequires: python%{python3_pkgversion}-pbr
%description -n python%{python3_pkgversion}-scaleio %{project_description}
%endif # with python3
%if 0%{with python3_other}
%package -n python%{python3_other_pkgversion}-scaleio
Summary: ScaleIO API client
Requires: python%{python3_other_pkgversion}-requests >= 2.3
Requires: python%{python3_other_pkgversion}-object-validator >= 0.1.4
Requires: python%{python3_other_pkgversion}-psys >= 0.3
Requires: python%{python3_other_pkgversion}-inflection
Requires: python%{python3_other_pkgversion}-six
BuildRequires: python%{python3_other_pkgversion}-devel
BuildRequires: python%{python3_other_pkgversion}-setuptools
BuildRequires: python%{python3_other_pkgversion}-six
BuildRequires: python%{python3_other_pkgversion}-pbr
%description -n python%{python3_other_pkgversion}-scaleio %{project_description}
%endif # with python3_other
%prep
%setup -q -n %project_name-%version
%build
export PBR_VERSION=%version
%py2_build
%if 0%{with python3}
%py3_build
%endif # with python3
%if 0%{with python3_other}
%py3_other_build
%endif # with python3_other
%install
[ "%buildroot" = "/" ] || rm -rf "%buildroot"
export PBR_VERSION=%version
%py2_install
%if 0%{with python3}
%py3_install
%endif # with python3
%if 0%{with python3_other}
%py3_other_install
%endif # with python3_other
%files
%defattr(-,root,root,-)
%{python2_sitelib}/pyscaleio
%{python2_sitelib}/pyscaleio-%{version}-*.egg-info
%doc ChangeLog README.rst
%if %{with python3}
%files -n python%{python3_pkgversion}-scaleio
%defattr(-,root,root,-)
%{python3_sitelib}/pyscaleio
%{python3_sitelib}/pyscaleio-%{version}-*.egg-info
%doc ChangeLog README.rst
%endif # with python3
%if %{with python3_other}
%files -n python%{python3_other_pkgversion}-scaleio
%defattr(-,root,root,-)
%{python3_other_sitelib}/pyscaleio
%{python3_other_sitelib}/pyscaleio-%{version}-*.egg-info
%doc ChangeLog README.rst
%endif # with python3_other
%clean
[ "%buildroot" = "/" ] || rm -rf "%buildroot"
%changelog
* Tue Feb 19 2019 Mikhail Ushanov <[email protected]> - 0.1.7-1
- New version
- Update license information
- Add VxFlex term to project description
* Fri Feb 15 2019 Mikhail Ushanov <[email protected]> - 0.1.6-2
- Add RPM package build for python3_other in EPEL
* Tue Jan 08 2019 Mikhail Ushanov <[email protected]> - 0.1.6-1
- New version.
- Python3.6 support.
- Build python3 package for epel7
* Tue Jun 20 2017 Mikhail Ushanov <[email protected]> - 0.1.5-1
- New version.
- Python3 compatibility fixes.
* Wed Mar 29 2017 Mikhail Ushanov <[email protected]> - 0.1.4-1
- New version.
- Update requires version.
* Wed Apr 20 2016 Mikhail Ushanov <[email protected]> - 0.1.2-1
- New version.
- Update requires version.
* Tue Apr 19 2016 Mikhail Ushanov <[email protected]> - 0.1.1-1
- New version.
- Update spec.
* Tue Apr 12 2016 Mikhail Ushanov <[email protected]> - 0.0.1-1
- Initial build.