--- python-boto-2.49.0.orig/boto/compat.py +++ python-boto-2.49.0/boto/compat.py @@ -46,16 +46,16 @@ # This is probably running on App Engine. expanduser = (lambda x: x) -from boto.vendored import six +import six -from boto.vendored.six import BytesIO, StringIO -from boto.vendored.six.moves import filter, http_client, map, _thread, \ +from six import BytesIO, StringIO +from six.moves import filter, http_client, map, _thread, \ urllib, zip -from boto.vendored.six.moves.queue import Queue -from boto.vendored.six.moves.urllib.parse import parse_qs, quote, unquote, \ +from six.moves.queue import Queue +from six.moves.urllib.parse import parse_qs, quote, unquote, \ urlparse, urlsplit -from boto.vendored.six.moves.urllib.parse import unquote_plus -from boto.vendored.six.moves.urllib.request import urlopen +from six.moves.urllib.parse import unquote_plus +from six.moves.urllib.request import urlopen if six.PY3: # StandardError was removed, so use the base exception type instead --- python-boto-2.49.0.orig/debian/NEWS +++ python-boto-2.49.0/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-2.49.0.orig/debian/changelog +++ python-boto-2.49.0/debian/changelog @@ -0,0 +1,334 @@ +python-boto (2.49.0-2ubuntu1) eoan; urgency=medium + + * Merge with Debian unstable. Remaining changes: + - d/tests/unit: Fix autopkgtest error in test_timeout by using a + temporary HOME directory. + - d/tests/unit: Workaround unit test by unsetting *_proxy vars + before running dep8 unit test. See: LP #1698222. + + -- Bryce Harrington Mon, 05 Aug 2019 20:53:54 -0700 + +python-boto (2.49.0-2) unstable; urgency=medium + + * Re-enable boto.vendored package (for regions sub-pacakge). + + -- Eric Evans Tue, 23 Jul 2019 09:30:32 -0500 + +python-boto (2.49.0-1) unstable; urgency=medium + + * New upstream release. + + -- Eric Evans Mon, 22 Jul 2019 14:56:38 -0500 + +python-boto (2.44.0-1.1ubuntu1) disco; urgency=medium + + * Merge from Debian unstable. Remaining chnages: + * Workaround unit test by unsetting *_proxy vars before running dep8 unit + test. See: LP #1698222. + * d/tests/unit: Fix autopkgtest error in test_timeout. + + -- Dimitri John Ledkov Wed, 05 Dec 2018 00:35:47 +0000 + +python-boto (2.44.0-1ubuntu2) artful; urgency=medium + + * Workaround unit test by unsetting *_proxy vars before running dep8 unit + test. See: LP #1698222. + + -- David Britton Fri, 16 Jun 2017 10:00:33 -0600 + +python-boto (2.44.0-1ubuntu1) zesty; urgency=medium + + * Merge from Debian unstable. Remaining changes: + * d/tests/unit: Fix autopkgtest error in test_timeout. + + -- Jon Grimm Fri, 03 Feb 2017 13:15:39 -0600 + +python-boto (2.44.0-1) unstable; urgency=medium + + * New upstream release. + + -- Eric Evans Sat, 10 Dec 2016 14:31:42 -0600 + +python-boto (2.43.0-1) unstable; urgency=medium + + * New upstream release. + + -- Eric Evans Tue, 08 Nov 2016 21:17:35 -0600 + +python-boto (2.40.0-1ubuntu1) yakkety; urgency=low + + * Merge from Debian unstable. Remaining changes: + * d/tests/unit: Fix autopkgtest error in test_timeout. + + -- James Page Fri, 24 Jun 2016 14:40:43 +0100 + +python-boto (2.40.0-1) unstable; urgency=medium + + * New upstream release. + + -- Eric Evans Sun, 22 May 2016 14:22:08 -0500 + +python-boto (2.38.0-1ubuntu1) wily; urgency=low + + * Merge from Debian unstable. Remaining changes: + * d/tests/unit: Fix autopkgtest error in test_timeout. + * d/tests/unit: run tests/test.py with each python in 'pyversions -i' + + -- James Page Thu, 09 Jul 2015 16:11:38 +0100 + +python-boto (2.38.0-1) unstable; urgency=medium + + * New upstream release. + + -- Eric Evans Sun, 14 Jun 2015 09:43:42 -0500 + +python-boto (2.34.0-2ubuntu1) vivid; urgency=low + + * Merge from Debian unstable. Remaining changes: + * d/tests: Add autopkgtests + + -- Chuck Short Sun, 23 Nov 2014 20:11:53 -0500 + +python-boto (2.34.0-2) unstable; urgency=medium + + * Upload to unstable. + + -- Eric Evans Wed, 12 Nov 2014 11:39:34 -0600 + +python-boto (2.34.0-1) experimental; urgency=medium + + * New upstream release. + + -- Eric Evans Mon, 10 Nov 2014 20:39:11 -0600 + +python-boto (2.33.0-1) unstable; urgency=medium + + * New upstream release. + + -- Eric Evans Sun, 19 Oct 2014 15:56:15 -0500 + +python-boto (2.32.1-1.1) experimental; urgency=medium + + * Non-maintainer upload. + * Uploading new upstream release to Experimental (Closes: #760490). + * Added Python 3 support. + * Vcs-Git field now canonical. + * Now using source format 3.0 (quilt). + * Added extend-diff-ignore = "^[^/]*[.]egg-info/" in debian/source/options. + * debian/copyright using the parseable format 1.0. + + -- Thomas Goirand Fri, 12 Sep 2014 08:21:48 +0000 + +python-boto (2.29.1-1ubuntu1) utopic; urgency=medium + + * Merge with debian. Remaining Ubuntu changes: + * d/tests/unit: Fix autopkgtest error in test_timeout. + * d/tests/unit: run tests/test.py with each python in 'pyversions -i' + + -- Scott Moser Fri, 25 Jul 2014 12:59:34 -0400 + +python-boto (2.29.1-1) unstable; urgency=medium + + * New upstream release (Closes: #750571). + + -- Eric Evans Sat, 28 Jun 2014 18:13:59 -0500 + +python-boto (2.27.0-1) unstable; urgency=medium + + * Missing dependency on python-requests (Closes: #740170) + * Run autopkgtests against installed python-boto package. + + -- Eric Evans Sun, 30 Mar 2014 12:36:49 -0500 + +python-boto (2.25.0-1) unstable; urgency=medium + + * New upstream release. + + -- Eric Evans Fri, 07 Feb 2014 20:32:57 -0600 + +python-boto (2.20.1-2ubuntu2) trusty; urgency=medium + + * d/tests/unit: Fix autopkgtest error in test_timeout. + * Add patch to fix autopkgtest failure in test_trim_defaults. + Taken from upstream git repository commits 3ebb667b and eb4c6e37. + + -- Corey Bryant Wed, 26 Mar 2014 13:52:31 -0400 + +python-boto (2.20.1-2ubuntu1) trusty; urgency=medium + + * Add missing python-requests dependency, spotted by autopkgtest. + * Add python-requests test dependency, as the test does not actually depend + on python-boto (this test needs to be fixed to run against the installed + package). + + -- Martin Pitt Wed, 26 Feb 2014 15:51:00 +0100 + +python-boto (2.20.1-2) experimental; urgency=low + + * Run unit tests with autopkgtest. + + -- Eric Evans Fri, 27 Dec 2013 15:09:08 -0600 + +python-boto (2.20.1-1) experimental; urgency=low + + * New upstream release (Closes: #732176). + + -- Eric Evans Mon, 16 Dec 2013 10:00:57 -0600 + +python-boto (2.10.0-1) unstable; urgency=low + + * New upstream release. + + -- Eric Evans Tue, 13 Aug 2013 13:56:47 +0200 + +python-boto (2.9.6-1) unstable; urgency=low + + * New upstream release. + + -- Eric Evans Fri, 05 Jul 2013 17:45:01 -0500 + +python-boto (2.9.2-1) unstable; urgency=low + + * New upstream release (Closes: #700743). + + -- Eric Evans Fri, 10 May 2013 23:38:14 -0500 + +python-boto (2.8.0-1) experimental; urgency=low + + * Experimental upload of new upstream release. + + -- Eric Evans Sat, 06 Apr 2013 10:12:23 -0500 + +python-boto (2.3.0-1) unstable; urgency=low + + * New upstream release (Closes: #664478) + * Update debian/watch for Boto's move to Github. Thanks Scott + Moser. (Closes: #650480) + + -- Eric Evans Sun, 15 Apr 2012 20:21:21 -0500 + +python-boto (2.0-2) unstable; urgency=low + + * Promote new upstream to unstable (Closes: #638931). + + -- Eric Evans Sun, 13 Nov 2011 11:58:40 -0800 + +python-boto (2.0-1) experimental; urgency=low + + * New upstream release. + + -- Eric Evans Sun, 16 Oct 2011 17:22:44 -0500 + +python-boto (1.9b-6) unstable; urgency=low + + * Convert packaging to dh_python2 (Closes: #631430). + + -- Eric Evans Sat, 30 Jul 2011 19:43:19 +0200 + +python-boto (1.9b-5) unstable; urgency=low + + * Updated to Debian Policy version 3.9.2. + * Patched to include Python 2.7 in httplib work-around for https + signatures. Thanks Matthias Klose. (Closes: #607120) + + -- Eric Evans Sun, 03 Jul 2011 16:04:44 -0500 + +python-boto (1.9b-4) unstable; urgency=low + + * Do not require Name param on RegisterImage (Closes: #591466). + + -- Eric Evans Tue, 03 Aug 2010 11:41:59 -0400 + +python-boto (1.9b-3) unstable; urgency=low + + * Strings exceptions are not allowed in Python 2.6 (Closes: #585284). + + -- Eric Evans Wed, 07 Jul 2010 19:36:13 +0000 + +python-boto (1.9b-2) unstable; urgency=low + + * Depend on versions of Python >= 2.5 (Closes: #563439). + + -- Eric Evans Wed, 06 Jan 2010 12:20:56 -0600 + +python-boto (1.9b-1) unstable; urgency=low + + * New upstream version. + + -- Eric Evans Thu, 24 Dec 2009 13:27:40 -0600 + +python-boto (1.8d-1) unstable; urgency=low + + * New Upstream Version (Closes: #536194). + + -- Eric Evans Wed, 08 Jul 2009 11:29:47 -0500 + +python-boto (1.8c-1) unstable; urgency=low + + * New Upstream Version (Closes: #534537). + + -- Eric Evans Sun, 28 Jun 2009 13:43:25 -0500 + +python-boto (1.7a-2) unstable; urgency=low + + * Patched test file to restore compatibility with python 2.4, + (Closes: #525365). + + -- Eric Evans Tue, 28 Apr 2009 21:11:20 -0500 + +python-boto (1.7a-1) unstable; urgency=low + + * New Upstream Version (Closes: #524931). + + -- Eric Evans Wed, 22 Apr 2009 20:50:03 -0500 + +python-boto (1.6b-1) unstable; urgency=low + + * New Upstream Version + + -- Eric Evans Tue, 30 Dec 2008 16:13:24 -0600 + +python-boto (1.4c-1) unstable; urgency=low + + * New Upstream Version + + -- Eric Evans Wed, 01 Oct 2008 20:47:21 -0500 + +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-2.49.0.orig/debian/control +++ python-boto-2.49.0/debian/control @@ -0,0 +1,74 @@ +Source: python-boto +Section: python +Priority: optional +Maintainer: Ubuntu Developers +XSBC-Original-Maintainer: Eric Evans +Build-Depends: debhelper-compat (= 12), + python-all (>= 2.6.6-3), + python-setuptools, + python3-all (>= 3.2), + python3-setuptools, + python-six, + python3-six, + dh-python +XS-Testsuite: autopkgtest +Homepage: https://github.com/boto/boto +Vcs-Browser: https://salsa.debian.org/eevans/python-boto +Vcs-Git: https://salsa.debian.org/eevans/python-boto.git +Standards-Version: 4.4.0 + +Package: python-boto +Architecture: all +Depends: python-requests, ${misc:Depends}, ${python:Depends}, python-six +Provides: ${python:Provides} +Description: Python interface to Amazon's Web Services - Python 2.x + Boto is a Python interface to the infrastructure services available from + Amazon. + . + Boto supports the following services: + * Elastic Compute Cloud (EC2) + * Elastic MapReduce + * CloudFront + * DynamoDB + * SimpleDB + * Relational Database Service (RDS) + * Identity and Access Management (IAM) + * Simple Queue Service (SQS) + * CloudWatch + * Route53 + * Elastic Load Balancing (ELB) + * Flexible Payment Service (FPS) + * Simple Storage Service (S3) + * Glacier + * Elastic Block Store (EBS) + * and many more... + . + This package provides the Python 2.x module. + +Package: python3-boto +Architecture: all +Depends: python3-requests, ${misc:Depends}, ${python3:Depends}, python3-six +Provides: ${python3:Provides} +Description: Python interface to Amazon's Web Services - Python 3.x + Boto is a Python interface to the infrastructure services available from + Amazon. + . + Boto supports the following services: + * Elastic Compute Cloud (EC2) + * Elastic MapReduce + * CloudFront + * DynamoDB + * SimpleDB + * Relational Database Service (RDS) + * Identity and Access Management (IAM) + * Simple Queue Service (SQS) + * CloudWatch + * Route53 + * Elastic Load Balancing (ELB) + * Flexible Payment Service (FPS) + * Simple Storage Service (S3) + * Glacier + * Elastic Block Store (EBS) + * and many more... + . + This package provides the Python 3.x module. --- python-boto-2.49.0.orig/debian/copyright +++ python-boto-2.49.0/debian/copyright @@ -0,0 +1,111 @@ +Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: boto +Source: https://github.com/boto/boto + +Files: * +Copyright: (c) 2006-2014, Mitch Garnaat + (c) 2012-2014, Amazon.com, Inc. or its affiliates. + (c) 2010-2014, Eucalyptus Systems, Inc. + (c) 2011, Joel Barciauskas + (c) 2009-2014, Chris Moyer http://coredumped.org + (c) 2010-2014, Jim Browne http://www.42lines.net + (c) 2012 Thomas Parslow http://almostobsolete.net/ + (c) Microsoft Corporation + (c) 2014, Skytap http://skytap.com/ + (c) 2009-2011, Reza Lotun http://reza.lotun.name + (c) 2010, Hunter Blanks http://artifex.org/~hblanks/ + (c) 2011, Nexenta Systems, Inc. + (c) 2010-2013, Google, Inc. + (c) 2011, Brian Beach + (c) 2012-2014, Andy Davidoff http://www.disruptek.com/ + (c) 2010 Jason R. Coombs http://www.jaraco.com/ + (c) 2013 Franc Carter franc.carter@gmail.com + (c) 2010 Jeremy Thurgood + (c) 2010 Spotify AB + (c) 2014 Netflix, Inc. Stefan Praszalowicz + (c) 2014 Tellybug, Matt Millar + (c) 2012 Robie Basak + (c) 2011 Blue Pines Technologies LLC, Brad Carleton + (c) 2010-2011 Yelp + (c) 2012 Miguel Olivares http://moliware.com/ + (c) 2010-2014 Benjamin Peterson + (c) 2011 Harry Marr http://hmarr.com/ + (c) 2003-2007 Robey Pointer + (c) 2013 Anthony Tonns http://www.corsis.com/ + (c) 2014 Jumping Qu http://newrice.blogspot.com/ + (c) 2011 Jann Kleen + (c) 2010 Robert Mela +License: Expat + +Files: debian/* +Copyright: (c) 2007-2014, Eric Evans +License: Expat + +Files: boto/connection.py boto/utils.py +Copyright: (c) 2006-2012 Mitch Garnaat http://garnaat.org/ + (c) 2012 Amazon.com, Inc. or its affiliates. + (c) 2010 Google + (c) 2008 rPath, Inc. + (c) 2009 The Echo Nest Corporation + (c) 2010, Eucalyptus Systems, Inc. + (c) 2011, Nexenta Systems Inc. +License: Expat-and-Amazon-License + +Files: boto/https_connection.py boto/vendored/regions/* +Copyright: (c) 2016 Amazon.com, Inc. or its affiliates +License: Apache-2.0 + +Files: boto/endpoints.py +Copyright: (c) 2007,2011 Google Inc. +License: Apache-2.0 + +License: Expat + 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. + +License: Expat-and-Amazon-License + 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. + . + 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. + . + 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. + +License: Apache-2.0 + On Debian systems the full text of the Apache-2.0 license can be found in + /usr/share/common-licenses/Apache-2.0. \ No newline at end of file --- python-boto-2.49.0.orig/debian/gbp.conf +++ python-boto-2.49.0/debian/gbp.conf @@ -0,0 +1,7 @@ +[DEFAULT] +upstream-branch = upstream +debian-branch = master + +[buildpackage] +pbuilder = True +pbuilder-options = --source-only-changes --- python-boto-2.49.0.orig/debian/rules +++ python-boto-2.49.0/debian/rules @@ -0,0 +1,66 @@ +#!/usr/bin/make -f + +PYTHONS:=$(shell pyversions -vr) +PYTHON3S:=$(shell py3versions -vr) + +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-arch build-indep +build-arch: build-stamp +build-indep: build-stamp +build-stamp: + dh_testdir + + python setup.py build + + touch build-stamp + +install: build-stamp + dh_testdir + dh_installdirs + + # Python 2.x + set -e ; for pyvers in $(PYTHONS); do \ + python$$pyvers setup.py install --root $(CURDIR)/debian/python-boto \ + --install-scripts usr/share/doc/python-boto/examples/ \ + --install-layout=deb ; \ + done + + 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 + + # Python 3.x + set -e ; for pyvers in $(PYTHON3S); do \ + python$$pyvers setup.py install --root $(CURDIR)/debian/python3-boto \ + --install-scripts usr/share/doc/python3-boto/examples/ \ + --install-layout=deb ; \ + done + + touch install-stamp + +binary-arch: +binary-indep: install + dh_installdocs + dh_installchangelogs + dh_compress + dh_fixperms + dh_python2 + dh_python3 + dh_gencontrol + dh_installdeb + dh_md5sums + dh_builddeb + +binary: binary-arch binary-indep +.PHONY: build clean binary-indep binary-arch binary + --- python-boto-2.49.0.orig/debian/salsa-ci.yml +++ python-boto-2.49.0/debian/salsa-ci.yml @@ -0,0 +1,4 @@ +--- +include: + - https://salsa.debian.org/salsa-ci-team/pipeline/raw/master/salsa-ci.yml + - https://salsa.debian.org/salsa-ci-team/pipeline/raw/master/pipeline-jobs.yml --- python-boto-2.49.0.orig/debian/source/format +++ python-boto-2.49.0/debian/source/format @@ -0,0 +1 @@ +1.0 --- python-boto-2.49.0.orig/debian/source/options +++ python-boto-2.49.0/debian/source/options @@ -0,0 +1 @@ +extend-diff-ignore = "^[^/]*[.]egg-info/" --- python-boto-2.49.0.orig/debian/tests/control +++ python-boto-2.49.0/debian/tests/control @@ -0,0 +1,3 @@ +Tests: unit +Depends: python-boto, python-nose (>= 1.3.0), python-mock (>= 1.0.1), python-httpretty (>= 0.6.3) +Restrictions: allow-stderr --- python-boto-2.49.0.orig/debian/tests/unit +++ python-boto-2.49.0/debian/tests/unit @@ -0,0 +1,26 @@ +#/bin/sh + +set -ex + +#Create temporary home directory with .ssh/known_hosts file +#so that test_timeout will be able to work. +home_orig=$HOME +home_temp=$(mktemp -d) +mkdir -p "$home_temp/.ssh" +touch "$home_temp/.ssh/known_hosts" +export HOME=$home_temp +unset http_proxy +unset https_proxy +unset no_proxy + +set -eu +cp -r tests "$ADTTMP/" +cd "$ADTTMP" + +for python in $(pyversions -i); do + $python tests/test.py unit > /dev/null +done + +#Restore original home directory and remove temp home dir +export HOME=$home_orig +rm -rf $home_temp --- python-boto-2.49.0.orig/debian/watch +++ python-boto-2.49.0/debian/watch @@ -0,0 +1,2 @@ +version=3 +https://github.com/boto/boto/tags .*/(\d[\d\.]*)\.tar\.gz \ No newline at end of file