diff options
Diffstat (limited to 'net-misc/gsutil/files/gsutil-4.4-use-friendy-version-checks.patch')
-rw-r--r-- | net-misc/gsutil/files/gsutil-4.4-use-friendy-version-checks.patch | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/net-misc/gsutil/files/gsutil-4.4-use-friendy-version-checks.patch b/net-misc/gsutil/files/gsutil-4.4-use-friendy-version-checks.patch new file mode 100644 index 000000000000..0443d109b588 --- /dev/null +++ b/net-misc/gsutil/files/gsutil-4.4-use-friendy-version-checks.patch @@ -0,0 +1,22 @@ +--- a/setup.py ++++ b/setup.py +@@ -35,7 +35,7 @@ management tasks, including: + """ + + requires = [ +- 'boto==2.30.0', ++ 'boto>=2.30.0', + 'crcmod>=1.7', + 'gcs-oauth2-boto-plugin>=1.7', + 'google-api-python-client>=1.1', +@@ -43,9 +43,7 @@ requires = [ + 'pyOpenSSL>=0.13', + 'python-gflags>=2.0', + 'retry_decorator>=1.0.0', +- # Not using 1.02 because of: +- # https://code.google.com/p/socksipy-branch/issues/detail?id=3 +- 'SocksiPy-branch==1.01', ++ 'SocksiPy-branch>=1.01', + ] + + dependency_links = [ |