[Python-modules-commits] r27070 - in packages/python-botocore/trunk/debian (4 files)

takaki at users.alioth.debian.org takaki at users.alioth.debian.org
Sun Jan 5 14:00:54 UTC 2014


    Date: Sunday, January 5, 2014 @ 14:00:53
  Author: takaki
Revision: 27070

repack upstream

Added:
  packages/python-botocore/trunk/debian/patches/
  packages/python-botocore/trunk/debian/patches/remove-duplicated-code
  packages/python-botocore/trunk/debian/patches/series
Modified:
  packages/python-botocore/trunk/debian/changelog

Modified: packages/python-botocore/trunk/debian/changelog
===================================================================
--- packages/python-botocore/trunk/debian/changelog	2014-01-05 13:14:52 UTC (rev 27069)
+++ packages/python-botocore/trunk/debian/changelog	2014-01-05 14:00:53 UTC (rev 27070)
@@ -1,3 +1,9 @@
+python-botocore (0.29.0+repack-1) UNRELEASED; urgency=medium
+
+  * Remove duplicated code from upstream tarball.
+
+ -- TANIGUCHI Takaki <takaki at debian.org>  Sun, 05 Jan 2014 22:31:26 +0900
+
 python-botocore (0.29.0-1) unstable; urgency=low
 
   * Initial release (Closes: #733214)

Added: packages/python-botocore/trunk/debian/patches/remove-duplicated-code
===================================================================
--- packages/python-botocore/trunk/debian/patches/remove-duplicated-code	                        (rev 0)
+++ packages/python-botocore/trunk/debian/patches/remove-duplicated-code	2014-01-05 14:00:53 UTC (rev 27070)
@@ -0,0 +1,72 @@
+Description: Remove duplicate code
+ Upstream code contains duplicate code (requests and urllib3).
+ Remove this code from orig-tarball and modify import directives.
+ .
+ python-botocore (0.29.0+repack-1) UNRELEASED; urgency=medium
+ .
+   * Remove duplicated code from upstream tarball.
+Author: TANIGUCHI Takaki <takaki at debian.org>
+
+---
+The information above should follow the Patch Tagging Guidelines, please
+checkout http://dep.debian.net/deps/dep3/ to learn about the format. Here
+are templates for supplementary fields that you might want to add:
+
+Origin: <vendor|upstream|other>, <url of original patch>
+Bug: <url in upstream bugtracker>
+Bug-Debian: http://bugs.debian.org/<bugnumber>
+Bug-Ubuntu: https://launchpad.net/bugs/<bugnumber>
+Forwarded: <no|not-needed|url proving that it has been forwarded>
+Reviewed-By: <name and email of someone who approved the patch>
+Last-Update: <YYYY-MM-DD>
+
+--- python-botocore-0.29.0+repack.orig/botocore/awsrequest.py
++++ python-botocore-0.29.0+repack/botocore/awsrequest.py
+@@ -23,8 +23,8 @@
+ import logging
+ 
+ import six
+-from botocore.vendored.requests import models
+-from botocore.vendored.requests.sessions import REDIRECT_STATI
++from requests import models
++from requests.sessions import REDIRECT_STATI
+ 
+ from botocore.compat import HTTPHeaders, file_type
+ from botocore.exceptions import UnseekableStreamError
+--- python-botocore-0.29.0+repack.orig/botocore/credentials.py
++++ python-botocore-0.29.0+repack/botocore/credentials.py
+@@ -21,7 +21,7 @@
+ # IN THE SOFTWARE.
+ #
+ import os
+-from botocore.vendored import requests
++import requests
+ import logging
+ 
+ from six.moves import configparser
+--- python-botocore-0.29.0+repack.orig/botocore/endpoint.py
++++ python-botocore-0.29.0+repack/botocore/endpoint.py
+@@ -25,8 +25,8 @@ import logging
+ import time
+ import threading
+ 
+-from botocore.vendored.requests.sessions import Session
+-from botocore.vendored.requests.utils import get_environ_proxies
++from requests.sessions import Session
++from requests.utils import get_environ_proxies
+ import six
+ 
+ import botocore.response
+--- python-botocore-0.29.0+repack.orig/botocore/retryhandler.py
++++ python-botocore-0.29.0+repack/botocore/retryhandler.py
+@@ -25,8 +25,8 @@ import functools
+ import logging
+ from binascii import crc32
+ 
+-from botocore.vendored.requests import ConnectionError
+-from botocore.vendored.requests.packages.urllib3.exceptions import ClosedPoolError
++from requests import ConnectionError
++from urllib3.exceptions import ClosedPoolError
+ 
+ from botocore.exceptions import ChecksumError
+ 

Added: packages/python-botocore/trunk/debian/patches/series
===================================================================
--- packages/python-botocore/trunk/debian/patches/series	                        (rev 0)
+++ packages/python-botocore/trunk/debian/patches/series	2014-01-05 14:00:53 UTC (rev 27070)
@@ -0,0 +1 @@
+remove-duplicated-code




More information about the Python-modules-commits mailing list