--- python-boto-1.4c.orig/debian/NEWS +++ python-boto-1.4c/debian/NEWS @@ -0,0 +1,19 @@ +python-boto (1.1c-1) unstable; urgency=low + + Boto now defaults to using the virtual bucket hosting server API for + Amazon S3. A by-product of this is that bucket names must adhere to the + same rules as host names in DNS, most notably that they are treated as + case-insensitive. This means that it is impossible to access existing + buckets which have names containing upper-case characters without + resorting to the old-style calling format. + + You can enable the older calling format by passing an instance of + boto.s3.connection.OrdinaryCallingFormat when creating connection + objects using the "calling_format" keyword. For example: + + from boto.s3.connection import OrdinaryCallingFormat + from boto import connect_s3 + + con = connect_s3(key, secret, calling_format=OrdinaryCallingFormat()) + + -- Eric Evans Thu, 03 Apr 2008 11:19:38 -0500 --- python-boto-1.4c.orig/debian/control +++ python-boto-1.4c/debian/control @@ -0,0 +1,19 @@ +Source: python-boto +Section: python +Priority: optional +Maintainer: Ubuntu MOTU Developers +XSBC-Original-Maintainer: Eric Evans +Build-Depends: debhelper (>= 5), python-support (>= 0.6) +Homepage: http://code.google.com/p/boto/ +Vcs-Git: git://git.debian.org/git/users/eevans/python-boto +Vcs-Browser: http://git.debian.org/?p=users/eevans/python-boto +Standards-Version: 3.7.3 + +Package: python-boto +Architecture: all +Depends: ${python:Depends} +Provides: ${python:Provides} +Description: Python interface to Amazon's Web Services + Boto is a Python interface to the infrastructure services available from + Amazon. It includes support for S3 (Simple Storage Service), SQS (Simple + Queue Service), and EC2 (Elastic Compute Cloud). --- python-boto-1.4c.orig/debian/pyversions +++ python-boto-1.4c/debian/pyversions @@ -0,0 +1 @@ +2.4- --- python-boto-1.4c.orig/debian/copyright +++ python-boto-1.4c/debian/copyright @@ -0,0 +1,37 @@ +This package was debianized by Eric Evans on +Wed, 04 Jul 2007 18:54:44 -0500 + +It was downloaded from: http://code.google.com/p/boto/ + +Upstream Author: Mitch Garnaat + +Copyright (c) 2006,2007 Mitch Garnaat http://garnaat.org/ + +Permission is hereby granted, free of charge, to any person obtaining a +copy of this software and associated documentation files (the "Software"), +to deal in the Software without restriction, including without limitation +the rights to use, copy, modify, merge, publish, distribute, sublicense, +and/or sell copies of the Software, and to permit persons to whom the +Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL +THE AUTHOR BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN +AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +Portions of boto/connection.py and boto.utils.py were copied or derived +from sample code supplied by Amazon. The following notice applies to that +code. + + This software code is made available "AS IS" without warranties of any + kind. You may copy, display, modify and redistribute the software code + either by itself or as incorporated into your code; provided that you do + not remove any proprietary notices. Your use of this software code is at + your own risk and you waive any claim against Amazon Digital Services, + Inc. or its affiliates with respect to your use of this software code. + (c) 2006 Amazon Digital Services, Inc. or its affiliates. --- python-boto-1.4c.orig/debian/changelog +++ python-boto-1.4c/debian/changelog @@ -0,0 +1,50 @@ +python-boto (1.4c-0ubuntu2~vds8.10) intrepid; urgency=low + + * New upstream release + + -- vincenzo di somma Wed, 22 Oct 2008 14:49:42 +0200 + +python-boto (1.3a-0ubuntu1) intrepid; urgency=low + + * New upstream release. (LP: #246824) + + -- Soren Hansen Mon, 18 Aug 2008 17:08:12 +0200 + +python-boto (1.2a-1) unstable; urgency=low + + * New Upstream Version + + -- Eric Evans Sun, 20 Apr 2008 04:41:52 +0000 + +python-boto (1.1c-1) unstable; urgency=low + + * New upstream release (Closes: #461148). + * Patched boto/s3/connection.py to provide a means of restoring + the older calling convention for buckets. + + -- Eric Evans Thu, 03 Apr 2008 16:14:29 -0500 + +python-boto (1.0a-1) unstable; urgency=low + + * New upstream release. + + -- Eric Evans Thu, 10 Jan 2008 12:57:42 -0600 + +python-boto (0.9d-1) unstable; urgency=low + + * New upstream release. + + -- Eric Evans Sat, 24 Nov 2007 17:12:40 -0600 + +python-boto (0.9b-1) unstable; urgency=low + + * New upstream release. + * Move tests to /usr/share/doc/python-boto/examples, (Closes: #433373). + + -- Eric Evans Mon, 16 Jul 2007 17:17:48 -0500 + +python-boto (0.9a-1) unstable; urgency=low + + * Initial release. (Closes: #431626) + + -- Eric Evans Wed, 04 Jul 2007 17:23:42 -0500 --- python-boto-1.4c.orig/debian/compat +++ python-boto-1.4c/debian/compat @@ -0,0 +1 @@ +5 --- python-boto-1.4c.orig/debian/watch +++ python-boto-1.4c/debian/watch @@ -0,0 +1,3 @@ +version=3 +http://code.google.com/p/boto/ \ + http://boto.googlecode.com/files/boto-(.+).tar.gz --- python-boto-1.4c.orig/debian/rules +++ python-boto-1.4c/debian/rules @@ -0,0 +1,56 @@ +#!/usr/bin/make -f + +# Verbose mode +#export DH_VERBOSE=1 + +clean: + dh_testdir + dh_testroot + + rm -f build-stamp install-stamp + rm -rf build + find boto/ -name *.pyc | xargs rm -f + + dh_clean + +build: build-stamp +build-stamp: + dh_testdir + + python setup.py build + + touch build-stamp + +install: build-stamp + dh_testdir + dh_installdirs + + rm -f tests/._test_*.py + + python setup.py install --root $(CURDIR)/debian/python-boto \ + --install-scripts usr/share/doc/python-boto/examples/ + + for f in `find $(CURDIR)/debian/python-boto -name \*.py`; do \ + sed -e '\,^#!/usr/bin/env python,d' < $$f > $$f.tmp; \ + mv $$f.tmp $$f; \ + done + + touch install-stamp + + +binary-arch: +binary-indep: install + dh_installdocs README doc/*.txt + dh_installexamples cq.py s3put + dh_installchangelogs + dh_compress + dh_fixperms + dh_pysupport + dh_gencontrol + dh_installdeb + dh_md5sums + dh_builddeb + +binary: binary-arch binary-indep +.PHONY: build clean binary-indep binary-arch binary + --- python-boto-1.4c.orig/boto.egg-info/SOURCES.txt +++ python-boto-1.4c/boto.egg-info/SOURCES.txt @@ -1,6 +1,7 @@ README cq.py s3put +setup.cfg setup.py boto/__init__.py boto/connection.py @@ -124,4 +125,4 @@ boto/tests/test_sqsconnection.py doc/ec2_tut.txt doc/s3_tut.txt -doc/sqs_tut.txt +doc/sqs_tut.txt \ No newline at end of file