add spaces around the >= for Requires

Signed-off-by: Dennis Gilmore <dennis@ausil.us>
This commit is contained in:
Dennis Gilmore 2017-04-13 15:10:25 -05:00
parent 22ae149c81
commit 59461126da

View File

@ -24,7 +24,7 @@
Name: python-oauthlib Name: python-oauthlib
Version: 2.0.1 Version: 2.0.1
Release: 1%{?dist} Release: 2%{?dist}
Summary: An implementation of the OAuth request-signing logic Summary: An implementation of the OAuth request-signing logic
Group: Development/Libraries Group: Development/Libraries
@ -70,7 +70,7 @@ Requires: python2-jwcrypto
%else %else
Requires: python2-jwt Requires: python2-jwt
%endif %endif
Requires: python2-cryptography>=0.8.1 Requires: python2-cryptography >= 0.8.1
%description -n python2-oauthlib %description -n python2-oauthlib
OAuthLib is a generic utility which implements the logic of OAuth without OAuthLib is a generic utility which implements the logic of OAuth without
@ -105,7 +105,7 @@ Requires: python3-jwcrypto
%else %else
Requires: python3-jwt Requires: python3-jwt
%endif %endif
Requires: python3-cryptography>=0.8.1 Requires: python3-cryptography >= 0.8.1
%description -n python3-oauthlib %description -n python3-oauthlib
OAuthLib is a generic utility which implements the logic of OAuth without OAuthLib is a generic utility which implements the logic of OAuth without
@ -164,6 +164,9 @@ rm -rf %{modname}.egg-info
%endif %endif
%changelog %changelog
* Fri Apr 13 2017 Dennis Gilmore <dennis@ausil.us> - 2.0.1-2
- add spaces around the >= for Requires
* Thu Mar 16 2017 John Dennis <jdennis@redhat.com> - 2.0.1-1 * Thu Mar 16 2017 John Dennis <jdennis@redhat.com> - 2.0.1-1
- Upgrade to upstream 2.0.1 - Upgrade to upstream 2.0.1
- port from jwt to jwcrypto (conditional build) - port from jwt to jwcrypto (conditional build)