Change-Id: Ia5ab5b2fb0d114f6fd1d5fecbb0b6b05cf407d50
Reviewed-on: http://photon-jenkins.eng.vmware.com:8082/4419
Tested-by: gerrit-photon <photon-checkins@vmware.com>
Reviewed-by: Xiaolin Li <xiaolinl@vmware.com>
| ... | ... |
@@ -3,7 +3,7 @@ |
| 3 | 3 |
|
| 4 | 4 |
Name: docker-py |
| 5 | 5 |
Version: 2.3.0 |
| 6 |
-Release: 2%{?dist}
|
|
| 6 |
+Release: 3%{?dist}
|
|
| 7 | 7 |
Summary: Python API for docker |
| 8 | 8 |
License: ASL2.0 |
| 9 | 9 |
Group: Development/Languages/Python |
| ... | ... |
@@ -40,6 +40,13 @@ BuildRequires: python3-setuptools |
| 40 | 40 |
BuildRequires: python3-xml |
| 41 | 41 |
BuildRequires: python3-pip |
| 42 | 42 |
|
| 43 |
+Requires: python3 |
|
| 44 |
+Requires: python3-libs |
|
| 45 |
+Requires: docker-pycreds3 |
|
| 46 |
+Requires: python3-requests |
|
| 47 |
+Requires: python3-six |
|
| 48 |
+Requires: python3-websocket-client |
|
| 49 |
+ |
|
| 43 | 50 |
%description -n docker-py3 |
| 44 | 51 |
Python3 API for docker |
| 45 | 52 |
|
| ... | ... |
@@ -69,6 +76,9 @@ python2 setup.py install --prefix=%{_prefix} --root=%{buildroot}
|
| 69 | 69 |
%{python3_sitelib}/*
|
| 70 | 70 |
|
| 71 | 71 |
%changelog |
| 72 |
+* Fri Dec 01 2017 Xiaolin Li <xiaolinl@vmware.com> 2.3.0-3 |
|
| 73 |
+- Added docker-pycreds3, python3-requests, python3-six, |
|
| 74 |
+- python3-websocket-client to requires of docker-py3 |
|
| 72 | 75 |
* Wed Jun 07 2017 Xiaolin Li <xiaolinl@vmware.com> 2.3.0-2 |
| 73 | 76 |
- Add python3-setuptools and python3-xml to python3 sub package Buildrequires. |
| 74 | 77 |
* Sun Jun 04 2017 Vinay Kulkarni <kulkarniv@vmware.com> 2.3.0-1 |
| ... | ... |
@@ -2,14 +2,14 @@ |
| 2 | 2 |
%{!?python3_sitelib: %define python3_sitelib %(python3 -c "from distutils.sysconfig import get_python_lib;print(get_python_lib())")}
|
| 3 | 3 |
|
| 4 | 4 |
Name: python-websocket-client |
| 5 |
-Version: 0.7.0 |
|
| 6 |
-Release: 2%{?dist}
|
|
| 5 |
+Version: 0.44.0 |
|
| 6 |
+Release: 1%{?dist}
|
|
| 7 | 7 |
Summary: WebSocket client for python |
| 8 | 8 |
License: LGPL |
| 9 | 9 |
Group: Development/Languages/Python |
| 10 |
-Url: https://pypi.python.org/packages/8f/2d/8eb061e94e29c0b35e1fd87f1c0e779f4288d7393b180ef0e5c0ee2b155e/websocket-client-%{version}.tar.gz
|
|
| 11 |
-Source0: websocket-client-%{version}.tar.gz
|
|
| 12 |
-%define sha1 websocket-client=cb36dc1c9b0dda4d4672f0d2c812e65343f509b8 |
|
| 10 |
+Url: https://pypi.python.org/pypi/websocket-client |
|
| 11 |
+Source0: websocket_client-%{version}.tar.gz
|
|
| 12 |
+%define sha1 websocket_client=736908072e36c1f3dc5714b685e246d8090ee1df |
|
| 13 | 13 |
|
| 14 | 14 |
BuildRequires: python2 |
| 15 | 15 |
BuildRequires: python2-libs |
| ... | ... |
@@ -32,7 +32,7 @@ BuildRequires: python3-xml |
| 32 | 32 |
WebSocket client for python3 |
| 33 | 33 |
|
| 34 | 34 |
%prep |
| 35 |
-%setup -n websocket-client-%{version}
|
|
| 35 |
+%setup -n websocket_client-%{version}
|
|
| 36 | 36 |
rm -rf ../p3dir |
| 37 | 37 |
cp -a . ../p3dir |
| 38 | 38 |
|
| ... | ... |
@@ -58,6 +58,8 @@ python2 setup.py install --prefix=%{_prefix} --root=%{buildroot}
|
| 58 | 58 |
%{python3_sitelib}/*
|
| 59 | 59 |
|
| 60 | 60 |
%changelog |
| 61 |
+* Thu Nov 30 2017 Xiaolin Li <xiaolinl@vmware.com> 0.44.0-1 |
|
| 62 |
+- Update websocket_client to version 0.44.0 |
|
| 61 | 63 |
* Wed Jun 07 2017 Xiaolin Li <xiaolinl@vmware.com> 0.7.0-2 |
| 62 | 64 |
- Add python3-setuptools and python3-xml to python3 sub package Buildrequires. |
| 63 | 65 |
* Sun Jun 04 2017 Vinay Kulkarni <kulkarniv@vmware.com> 0.7.0-1 |