summary refs log tree commit diff
path: root/pkgs/development/python-modules
diff options
context:
space:
mode:
authorBenjamin Staffin <ben@folsomlabs.com>2015-03-06 20:48:25 -0800
committerBenjamin Staffin <ben@folsomlabs.com>2015-03-07 14:06:08 -0800
commit02712cc3f1443e0b1d6ff6a9d18daab59f98b005 (patch)
tree128a0cf09159bf9999a517041f7dcbfb80c84ad1 /pkgs/development/python-modules
parent5113a065d7340f8c2650566bf1400e1863c539e2 (diff)
downloadnixlib-02712cc3f1443e0b1d6ff6a9d18daab59f98b005.tar
nixlib-02712cc3f1443e0b1d6ff6a9d18daab59f98b005.tar.gz
nixlib-02712cc3f1443e0b1d6ff6a9d18daab59f98b005.tar.bz2
nixlib-02712cc3f1443e0b1d6ff6a9d18daab59f98b005.tar.lz
nixlib-02712cc3f1443e0b1d6ff6a9d18daab59f98b005.tar.xz
nixlib-02712cc3f1443e0b1d6ff6a9d18daab59f98b005.tar.zst
nixlib-02712cc3f1443e0b1d6ff6a9d18daab59f98b005.zip
Drop obsolete boto-1.9 patch
This has been unreferenced since commit
d52d71a04bd99794401178acaf164fec94b8e387 from August 2014.
Diffstat (limited to 'pkgs/development/python-modules')
-rw-r--r--pkgs/development/python-modules/boto-1.9-python-2.7.patch19
1 files changed, 0 insertions, 19 deletions
diff --git a/pkgs/development/python-modules/boto-1.9-python-2.7.patch b/pkgs/development/python-modules/boto-1.9-python-2.7.patch
deleted file mode 100644
index 79ff9a7e4afa..000000000000
--- a/pkgs/development/python-modules/boto-1.9-python-2.7.patch
+++ /dev/null
@@ -1,19 +0,0 @@
-Fix Boto 1.9 on Python 2.7.
-
-https://github.com/boto/boto/commit/6760075073c34d6dddb7e13b80dfa8d09f0f4f79
-
-diff --git a/boto/connection.py b/boto/connection.py
-index c5779e2..71942f1 100644
---- a/boto/connection.py
-+++ b/boto/connection.py
-@@ -252,8 +252,9 @@ class AWSAuthConnection(object):
-             # versions, it would append ":443" to the hostname sent
-             # in the Host header and so we needed to make sure we
-             # did the same when calculating the V2 signature.  In 2.6
-+            # (and higher!)
-             # it no longer does that.  Hence, this kludge.
--            if sys.version[:3] == "2.6" and port == 443:
-+            if sys.version[:3] in ('2.6', '2.7') and port == 443:
-                 signature_host = self.host
-             else:
-                 signature_host = '%s:%d' % (self.host, port)