[Python-apps-commits] r10329 - in packages/awscli/trunk/debian (4 files)

takaki at users.alioth.debian.org takaki at users.alioth.debian.org
Sun Jan 5 14:02:12 UTC 2014


    Date: Sunday, January 5, 2014 @ 14:02:11
  Author: takaki
Revision: 10329

adopt to botocore changes

Added:
  packages/awscli/trunk/debian/patches/
  packages/awscli/trunk/debian/patches/adopt_to_botocore_changes
  packages/awscli/trunk/debian/patches/series
Modified:
  packages/awscli/trunk/debian/changelog

Modified: packages/awscli/trunk/debian/changelog
===================================================================
--- packages/awscli/trunk/debian/changelog	2014-01-05 11:31:13 UTC (rev 10328)
+++ packages/awscli/trunk/debian/changelog	2014-01-05 14:02:11 UTC (rev 10329)
@@ -1,3 +1,9 @@
+awscli (1.2.9-2) UNRELEASED; urgency=medium
+
+  * debian/pathces/adopt_to_botocore_changes
+
+ -- TANIGUCHI Takaki <takaki at debian.org>  Sun, 05 Jan 2014 22:59:43 +0900
+
 awscli (1.2.9-1) unstable; urgency=low
 
   * Initial release (Closes: #733211)

Added: packages/awscli/trunk/debian/patches/adopt_to_botocore_changes
===================================================================
--- packages/awscli/trunk/debian/patches/adopt_to_botocore_changes	                        (rev 0)
+++ packages/awscli/trunk/debian/patches/adopt_to_botocore_changes	2014-01-05 14:02:11 UTC (rev 10329)
@@ -0,0 +1,55 @@
+Description: Adopt to botocore changes.
+ botocore is changed to remove duplicated code. So import path have to be changed.
+ .
+ awscli (1.2.9-1) unstable; urgency=low
+ .
+   * Initial release (Closes: #733211)
+Author: TANIGUCHI Takaki <takaki at debian.org>
+Bug-Debian: http://bugs.debian.org/733211
+
+---
+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>
+
+--- awscli-1.2.9.orig/awscli/customizations/cloudtrail.py
++++ awscli-1.2.9/awscli/customizations/cloudtrail.py
+@@ -16,7 +16,7 @@ import sys
+ 
+ from awscli.customizations.commands import BasicCommand
+ from awscli.customizations.service import Service
+-from botocore.vendored import requests
++import requests
+ 
+ 
+ LOG = logging.getLogger(__name__)
+--- awscli-1.2.9.orig/awscli/customizations/s3/tasks.py
++++ awscli-1.2.9/awscli/customizations/s3/tasks.py
+@@ -4,7 +4,7 @@ import os
+ import time
+ import threading
+ 
+-from botocore.vendored import requests
++import requests
+ 
+ from awscli.customizations.s3.utils import find_bucket_key, MD5Error, \
+     operate, ReadFileChunk, relative_path
+--- awscli-1.2.9.orig/awscli/paramfile.py
++++ awscli-1.2.9/awscli/paramfile.py
+@@ -15,7 +15,7 @@
+ import logging
+ import os
+ 
+-from botocore.vendored import requests
++import requests
+ import six
+ 
+ 

Added: packages/awscli/trunk/debian/patches/series
===================================================================
--- packages/awscli/trunk/debian/patches/series	                        (rev 0)
+++ packages/awscli/trunk/debian/patches/series	2014-01-05 14:02:11 UTC (rev 10329)
@@ -0,0 +1 @@
+adopt_to_botocore_changes




More information about the Python-apps-commits mailing list